|
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||
java.lang.Objectorg.jscience.mathematics.analysis.ode.RungeKuttaIntegrator
public abstract class RungeKuttaIntegrator
This class implements the common part of all fixed step Runge-Kutta integrators for Ordinary Differential Equations.
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| Field Summary | |
|---|---|
protected SwitchingFunctionsHandler |
switchesHandler
Switching functions handler. |
| Constructor Summary | |
|---|---|
protected |
RungeKuttaIntegrator(boolean fsal,
double[] c,
double[][] a,
double[] b,
org.jscience.mathematics.analysis.ode.RungeKuttaStepInterpolator prototype,
double step)
Simple constructor. |
| Method Summary | |
|---|---|
void |
addSwitchingFunction(SwitchingFunction function,
double maxCheckInterval,
double convergence)
Add a switching function to the integrator. |
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. |
| Methods inherited from class java.lang.Object |
|---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
| Field Detail |
|---|
protected SwitchingFunctionsHandler switchesHandler
| Constructor Detail |
|---|
protected RungeKuttaIntegrator(boolean fsal,
double[] c,
double[][] a,
double[] b,
org.jscience.mathematics.analysis.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 step| Method Detail |
|---|
public abstract java.lang.String getName()
getName in interface FirstOrderIntegratorgetName in interface Namedpublic void setStepHandler(StepHandler handler)
setStepHandler in interface FirstOrderIntegratorhandler - handler for the accepted stepspublic StepHandler getStepHandler()
getStepHandler in interface FirstOrderIntegrator
public 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 search
public void integrate(FirstOrderDifferentialEquations equations,
double t0,
double[] y0,
double t,
double[] y)
throws DerivativeException,
IntegrationException
FirstOrderIntegrator
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
thant 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 y0
DerivativeException - this exception is propagated to the caller
if the underlying user function triggers one
IntegrationException - if the integrator cannot perform
integration
|
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||