Class AbstractIntegrator
- java.lang.Object
 - 
- org.apache.commons.math.ode.AbstractIntegrator
 
 
- 
- All Implemented Interfaces:
 FirstOrderIntegrator,ODEIntegrator
- Direct Known Subclasses:
 AdaptiveStepsizeIntegrator,RungeKuttaIntegrator
public abstract class AbstractIntegrator extends java.lang.Object implements FirstOrderIntegrator
Base class managing common boilerplate for all integrators.- Since:
 - 2.0
 
 
- 
- 
Constructor Summary
Constructors Constructor Description AbstractIntegrator(java.lang.String name)Build an instance. 
- 
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidaddEventHandler(EventHandler handler, double maxCheckInterval, double convergence, int maxIterationCount)Add an event handler to the integrator.voidaddStepHandler(StepHandler handler)Add a step handler to this integrator.voidclearEventHandlers()Remove all the event handlers that have been added to the integrator.voidclearStepHandlers()Remove all the step handlers that have been added to the integrator.voidcomputeDerivatives(double t, double[] y, double[] yDot)Compute the derivatives and check the number of evaluations.doublegetCurrentSignedStepsize()Get the current signed value of the integration stepsize.doublegetCurrentStepStart()Get the current value of the step start time ti.intgetEvaluations()Get the number of evaluations of the differential equations function.java.util.Collection<EventHandler>getEventHandlers()Get all the event handlers that have been added to the integrator.intgetMaxEvaluations()Get the maximal number of functions evaluations.java.lang.StringgetName()Get the name of the method.java.util.Collection<StepHandler>getStepHandlers()Get all the step handlers that have been added to the integrator.voidsetMaxEvaluations(int maxEvaluations)Set the maximal number of differential equations function evaluations.- 
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait 
- 
Methods inherited from interface org.apache.commons.math.ode.FirstOrderIntegrator
integrate 
 - 
 
 - 
 
- 
- 
Method Detail
- 
getName
public java.lang.String getName()
Get the name of the method.- Specified by:
 getNamein interfaceODEIntegrator- Returns:
 - name of the method
 
 
- 
addStepHandler
public void addStepHandler(StepHandler handler)
Add a step handler to this integrator.The handler will be called by the integrator for each accepted step.
- Specified by:
 addStepHandlerin interfaceODEIntegrator- Parameters:
 handler- handler for the accepted steps- See Also:
 ODEIntegrator.getStepHandlers(),ODEIntegrator.clearStepHandlers()
 
- 
getStepHandlers
public java.util.Collection<StepHandler> getStepHandlers()
Get all the step handlers that have been added to the integrator.- Specified by:
 getStepHandlersin interfaceODEIntegrator- Returns:
 - an unmodifiable collection of the added events handlers
 - See Also:
 ODEIntegrator.addStepHandler(StepHandler),ODEIntegrator.clearStepHandlers()
 
- 
clearStepHandlers
public void clearStepHandlers()
Remove all the step handlers that have been added to the integrator.- Specified by:
 clearStepHandlersin interfaceODEIntegrator- See Also:
 ODEIntegrator.addStepHandler(StepHandler),ODEIntegrator.getStepHandlers()
 
- 
addEventHandler
public void addEventHandler(EventHandler handler, double maxCheckInterval, double convergence, int maxIterationCount)
Add an event handler to the integrator.- Specified by:
 addEventHandlerin interfaceODEIntegrator- Parameters:
 handler- event handlermaxCheckInterval- maximal time interval between switching function checks (this interval prevents missing sign changes in case the integration steps becomes very large)convergence- convergence threshold in the event time searchmaxIterationCount- upper limit of the iteration count in the event time search- See Also:
 ODEIntegrator.getEventHandlers(),ODEIntegrator.clearEventHandlers()
 
- 
getEventHandlers
public java.util.Collection<EventHandler> getEventHandlers()
Get all the event handlers that have been added to the integrator.- Specified by:
 getEventHandlersin interfaceODEIntegrator- Returns:
 - an unmodifiable collection of the added events handlers
 - See Also:
 ODEIntegrator.addEventHandler(EventHandler, double, double, int),ODEIntegrator.clearEventHandlers()
 
- 
clearEventHandlers
public void clearEventHandlers()
Remove all the event handlers that have been added to the integrator.- Specified by:
 clearEventHandlersin interfaceODEIntegrator- See Also:
 ODEIntegrator.addEventHandler(EventHandler, double, double, int),ODEIntegrator.getEventHandlers()
 
- 
getCurrentStepStart
public double getCurrentStepStart()
Get the current value of the step start time ti.This method can be called during integration (typically by the object implementing the
differential equationsproblem) if the value of the current step that is attempted is needed.The result is undefined if the method is called outside of calls to
integrate.- Specified by:
 getCurrentStepStartin interfaceODEIntegrator- Returns:
 - current value of the step start time ti
 
 
- 
getCurrentSignedStepsize
public double getCurrentSignedStepsize()
Get the current signed value of the integration stepsize.This method can be called during integration (typically by the object implementing the
differential equationsproblem) if the signed value of the current stepsize that is tried is needed.The result is undefined if the method is called outside of calls to
integrate.- Specified by:
 getCurrentSignedStepsizein interfaceODEIntegrator- Returns:
 - current signed value of the stepsize
 
 
- 
setMaxEvaluations
public void setMaxEvaluations(int maxEvaluations)
Set the maximal number of differential equations function evaluations.The purpose of this method is to avoid infinite loops which can occur for example when stringent error constraints are set or when lots of discrete events are triggered, thus leading to many rejected steps.
- Specified by:
 setMaxEvaluationsin interfaceODEIntegrator- Parameters:
 maxEvaluations- maximal number of function evaluations (negative values are silently converted to maximal integer value, thus representing almost unlimited evaluations)
 
- 
getMaxEvaluations
public int getMaxEvaluations()
Get the maximal number of functions evaluations.- Specified by:
 getMaxEvaluationsin interfaceODEIntegrator- Returns:
 - maximal number of functions evaluations
 
 
- 
getEvaluations
public int getEvaluations()
Get the number of evaluations of the differential equations function.The number of evaluations corresponds to the last call to the
integratemethod. It is 0 if the method has not been called yet.- Specified by:
 getEvaluationsin interfaceODEIntegrator- Returns:
 - number of evaluations of the differential equations function
 
 
- 
computeDerivatives
public void computeDerivatives(double t, double[] y, double[] yDot) throws DerivativeExceptionCompute the derivatives and check the number of evaluations.- Parameters:
 t- current value of the independent time variabley- array containing the current value of the state vectoryDot- placeholder array where to put the time derivative of the state vector- Throws:
 DerivativeException- this user-defined exception should be used if an error is is triggered by user code
 
 - 
 
 -