public abstract class RungeKuttaIntegrator extends java.lang.Object implements FirstOrderIntegrator
These methods are explicit Runge-Kutta methods, their Butcher arrays are as follows :
0 |
c2 | a21
c3 | a31 a32
... | ...
cs | as1 as2 ... ass-1
|--------------------------
| b1 b2 ... bs-1 bs
Some methods are qualified as fsal (first same as last) methods. This means the last evaluation of the derivatives in one step is the same as the first in the next step. Then, this evaluation can be reused from one step to the next one and the cost of such a method is really s-1 evaluations despite the method still has s stages. This behaviour is true only for successful steps, if the step is rejected after the error estimation phase, no evaluation is saved. For an fsal method, we have cs = 1 and asi = bi for all i.
EulerIntegrator,
ClassicalRungeKuttaIntegrator,
GillIntegrator,
MidpointIntegrator| Modifier and Type | Field and Description |
|---|---|
protected SwitchingFunctionsHandler |
switchesHandler
Switching functions handler.
|
| Modifier | Constructor and Description |
|---|---|
protected |
RungeKuttaIntegrator(boolean fsal,
double[] c,
double[][] a,
double[] b,
org.spaceroots.mantissa.ode.RungeKuttaStepInterpolator prototype,
double step)
Simple constructor.
|
| Modifier and Type | Method and Description |
|---|---|
void |
addSwitchingFunction(SwitchingFunction function,
double maxCheckInterval,
double convergence)
Add a switching function to the integrator.
|
double |
getCurrentStepsize()
Get the current value of the integration stepsize.
|
double |
getCurrentStepStart()
Get the current value of the step start time ti.
|
abstract java.lang.String |
getName()
Get the name of the method.
|
StepHandler |
getStepHandler()
Get the step handler for this integrator.
|
void |
integrate(FirstOrderDifferentialEquations equations,
double t0,
double[] y0,
double t,
double[] y)
Integrate the differential equations up to the given time.
|
void |
setStepHandler(StepHandler handler)
Set the step handler for this integrator.
|
protected SwitchingFunctionsHandler switchesHandler
protected RungeKuttaIntegrator(boolean fsal,
double[] c,
double[][] a,
double[] b,
org.spaceroots.mantissa.ode.RungeKuttaStepInterpolator prototype,
double step)
fsal - indicate that the method is an fsalc - time steps from Butcher array (without the first zero)a - internal weights from Butcher array (without the first empty row)b - external weights for the high order method from Butcher arrayprototype - prototype of the step interpolator to usestep - integration steppublic abstract java.lang.String getName()
getName in interface FirstOrderIntegratorpublic void setStepHandler(StepHandler handler)
setStepHandler in interface FirstOrderIntegratorhandler - handler for the accepted stepspublic StepHandler getStepHandler()
getStepHandler in interface FirstOrderIntegratorpublic void addSwitchingFunction(SwitchingFunction function, double maxCheckInterval, double convergence)
addSwitchingFunction in interface FirstOrderIntegratorfunction - switching functionmaxCheckInterval - 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 searchpublic void integrate(FirstOrderDifferentialEquations equations, double t0, double[] y0, double t, double[] y) throws DerivativeException, IntegratorException
FirstOrderIntegratorThis method solves an Initial Value Problem (IVP).
Since this method stores some internal state variables made
available in its public interface during integration (FirstOrderIntegrator.getCurrentStepsize()), it is not thread-safe.
integrate in interface FirstOrderIntegratorequations - differential equations to integratet0 - initial timey0 - initial value of the state vector at t0t - target time for the integration
(can be set to a value smaller than t0 for backward integration)y - placeholder where to put the state vector at each successful
step (and hence at the end of integration), can be the same object as y0DerivativeException - this exception is propagated to the caller if
the underlying user function triggers oneIntegratorException - if the integrator cannot perform integrationpublic double getCurrentStepStart()
FirstOrderIntegratorThis 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 FirstOrderIntegrator.integrate(org.spaceroots.mantissa.ode.FirstOrderDifferentialEquations, double, double[], double, double[])
getCurrentStepStart in interface FirstOrderIntegratorpublic double getCurrentStepsize()
FirstOrderIntegratorThis method can be called during integration (typically by
the object implementing the differential equations problem) if the value of the current stepsize
that is tried is needed.
The result is undefined if the method is called outside of
calls to FirstOrderIntegrator.integrate(org.spaceroots.mantissa.ode.FirstOrderDifferentialEquations, double, double[], double, double[])
getCurrentStepsize in interface FirstOrderIntegratorCopyright © 2001-2007 Luc Maisonobe. All Rights Reserved.