Package | Description |
---|---|
org.apache.commons.math3.ode |
This package provides classes to solve Ordinary Differential Equations problems.
|
org.apache.commons.math3.ode.nonstiff |
This package provides classes to solve non-stiff Ordinary Differential Equations problems.
|
org.apache.commons.math3.ode.sampling |
This package provides classes to handle sampling steps during
Ordinary Differential Equations integration.
|
Modifier and Type | Method and Description |
---|---|
protected double |
AbstractIntegrator.acceptStep(AbstractStepInterpolator interpolator,
double[] y,
double[] yDot,
double tEnd)
Accept a step, triggering events and step handlers.
|
Modifier and Type | Class and Description |
---|---|
(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 |
GraggBulirschStoerStepInterpolator
This class implements an interpolator for the Gragg-Bulirsch-Stoer
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 |
LutherStepInterpolator
This class represents an interpolator over the last step during an
ODE integration for the 6th order Luther integrator.
|
(package private) class |
MidpointStepInterpolator
This class implements a step interpolator for second order
Runge-Kutta integrator.
|
(package private) class |
RungeKuttaStepInterpolator
This class represents an interpolator over the last step during an
ODE integration for Runge-Kutta and embedded Runge-Kutta integrators.
|
(package private) class |
ThreeEighthesStepInterpolator
This class implements a step interpolator for the 3/8 fourth
order Runge-Kutta integrator.
|
Modifier and Type | Class and Description |
---|---|
class |
NordsieckStepInterpolator
This class implements an interpolator for integrators using Nordsieck representation.
|
Constructor and Description |
---|
AbstractStepInterpolator(AbstractStepInterpolator interpolator)
Copy constructor.
|