|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
java.lang.Objectorg.apache.commons.math.ode.AbstractIntegrator
public abstract class AbstractIntegrator
Base class managing common boilerplate for all integrators.
| Field Summary | |
|---|---|
protected CombinedEventsManager |
eventsHandlersManager
Events handlers manager. |
protected Collection<StepHandler> |
stepHandlers
Step handler. |
protected double |
stepSize
Current stepsize. |
protected double |
stepStart
Current step start time. |
| Constructor Summary | |
|---|---|
AbstractIntegrator(String name)
Build an instance. |
|
| Method Summary | |
|---|---|
protected CombinedEventsManager |
addEndTimeChecker(double startTime,
double endTime,
CombinedEventsManager manager)
Add an event handler for end time checking. |
void |
addEventHandler(EventHandler function,
double maxCheckInterval,
double convergence,
int maxIterationCount)
Add an event handler to the integrator. |
void |
addStepHandler(StepHandler handler)
Add a step handler to this integrator. |
void |
clearEventHandlers()
Remove all the event handlers that have been added to the integrator. |
void |
clearStepHandlers()
Remove all the step handlers that have been added to the integrator. |
double |
getCurrentSignedStepsize()
Get the current signed value of the integration stepsize. |
double |
getCurrentStepStart()
Get the current value of the step start time ti. |
Collection<EventHandler> |
getEventHandlers()
Get all the event handlers that have been added to the integrator. |
String |
getName()
Get the name of the method. |
Collection<StepHandler> |
getStepHandlers()
Get all the step handlers that have been added to the integrator. |
protected boolean |
requiresDenseOutput()
Check if one of the step handlers requires dense output. |
protected void |
sanityChecks(FirstOrderDifferentialEquations equations,
double t0,
double[] y0,
double t,
double[] y)
Perform some sanity checks on the integration parameters. |
| Methods inherited from class java.lang.Object |
|---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
| Methods inherited from interface org.apache.commons.math.ode.FirstOrderIntegrator |
|---|
integrate |
| Field Detail |
|---|
protected Collection<StepHandler> stepHandlers
protected double stepStart
protected double stepSize
protected CombinedEventsManager eventsHandlersManager
| Constructor Detail |
|---|
public AbstractIntegrator(String name)
name - name of the method| Method Detail |
|---|
public String getName()
getName in interface ODEIntegratorpublic void addStepHandler(StepHandler handler)
The handler will be called by the integrator for each accepted step.
addStepHandler in interface ODEIntegratorhandler - handler for the accepted stepsODEIntegrator.getStepHandlers(),
ODEIntegrator.clearStepHandlers()public Collection<StepHandler> getStepHandlers()
getStepHandlers in interface ODEIntegratorODEIntegrator.addStepHandler(StepHandler),
ODEIntegrator.clearStepHandlers()public void clearStepHandlers()
clearStepHandlers in interface ODEIntegratorODEIntegrator.addStepHandler(StepHandler),
ODEIntegrator.getStepHandlers()
public void addEventHandler(EventHandler function,
double maxCheckInterval,
double convergence,
int maxIterationCount)
addEventHandler in interface ODEIntegratorfunction - 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 searchODEIntegrator.getEventHandlers(),
ODEIntegrator.clearEventHandlers()public Collection<EventHandler> getEventHandlers()
getEventHandlers in interface ODEIntegratorODEIntegrator.addEventHandler(EventHandler, double, double, int),
ODEIntegrator.clearEventHandlers()public void clearEventHandlers()
clearEventHandlers in interface ODEIntegratorODEIntegrator.addEventHandler(EventHandler, double, double, int),
ODEIntegrator.getEventHandlers()protected boolean requiresDenseOutput()
public double getCurrentStepStart()
This method can be called during integration (typically by
the object implementing the differential equations problem) 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
getCurrentStepStart in interface ODEIntegratorpublic double getCurrentSignedStepsize()
This method can be called during integration (typically by
the object implementing the differential equations problem) 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
getCurrentSignedStepsize in interface ODEIntegrator
protected void sanityChecks(FirstOrderDifferentialEquations equations,
double t0,
double[] y0,
double t,
double[] y)
throws IntegratorException
equations - differential equations sett0 - start timey0 - state vector at t0t - target time for the integrationy - placeholder where to put the state vector
IntegratorException - if some inconsistency is detected
protected CombinedEventsManager addEndTimeChecker(double startTime,
double endTime,
CombinedEventsManager manager)
This method can be used to simplify handling of integration end time. It leverages the nominal stop condition with the exceptional stop conditions.
startTime - integration start timeendTime - desired end timemanager - manager containing the user-defined handlers
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||