|
||||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use RungeKuttaStepInterpolator | |
---|---|
org.apache.commons.math.ode | This package provides classes to solve Ordinary Differential Equations problems. |
Uses of RungeKuttaStepInterpolator in org.apache.commons.math.ode |
---|
Subclasses of RungeKuttaStepInterpolator in org.apache.commons.math.ode | |
---|---|
(package private) class |
ClassicalRungeKuttaStepInterpolator
This class implements a step interpolator for the classical fourth order Runge-Kutta integrator. |
(package private) class |
DormandPrince54StepInterpolator
This class represents an interpolator over the last step during an ODE integration for the 5(4) Dormand-Prince integrator. |
(package private) class |
DormandPrince853StepInterpolator
This class represents an interpolator over the last step during an ODE integration for the 8(5,3) Dormand-Prince integrator. |
(package private) class |
EulerStepInterpolator
This class implements a linear interpolator for step. |
(package private) class |
GillStepInterpolator
This class implements a step interpolator for the Gill fourth order Runge-Kutta integrator. |
(package private) class |
HighamHall54StepInterpolator
This class represents an interpolator over the last step during an ODE integration for the 5(4) Higham and Hall integrator. |
(package private) class |
MidpointStepInterpolator
This class implements a step interpolator for second order Runge-Kutta integrator. |
(package private) class |
ThreeEighthesStepInterpolator
This class implements a step interpolator for the 3/8 fourth order Runge-Kutta integrator. |
Fields in org.apache.commons.math.ode declared as RungeKuttaStepInterpolator | |
---|---|
private RungeKuttaStepInterpolator |
RungeKuttaIntegrator.prototype
Prototype of the step interpolator. |
private RungeKuttaStepInterpolator |
EmbeddedRungeKuttaIntegrator.prototype
Prototype of the step interpolator. |
Constructors in org.apache.commons.math.ode with parameters of type RungeKuttaStepInterpolator | |
---|---|
EmbeddedRungeKuttaIntegrator(boolean fsal,
double[] c,
double[][] a,
double[] b,
RungeKuttaStepInterpolator prototype,
double minStep,
double maxStep,
double[] vecAbsoluteTolerance,
double[] vecRelativeTolerance)
Build a Runge-Kutta integrator with the given Butcher array. |
|
EmbeddedRungeKuttaIntegrator(boolean fsal,
double[] c,
double[][] a,
double[] b,
RungeKuttaStepInterpolator prototype,
double minStep,
double maxStep,
double scalAbsoluteTolerance,
double scalRelativeTolerance)
Build a Runge-Kutta integrator with the given Butcher array. |
|
RungeKuttaIntegrator(double[] c,
double[][] a,
double[] b,
RungeKuttaStepInterpolator prototype,
double step)
Simple constructor. |
|
RungeKuttaStepInterpolator(RungeKuttaStepInterpolator interpolator)
Copy constructor. |
|
||||||||||
PREV NEXT | FRAMES NO FRAMES |