Uses of Class
org.apache.commons.math3.ode.nonstiff.RungeKuttaFieldStepInterpolator
Packages that use RungeKuttaFieldStepInterpolator
Package
Description
This package provides classes to solve non-stiff Ordinary Differential Equations problems.
-
Uses of RungeKuttaFieldStepInterpolator in org.apache.commons.math3.ode.nonstiff
Subclasses of RungeKuttaFieldStepInterpolator in org.apache.commons.math3.ode.nonstiffModifier and TypeClassDescription(package private) class
ClassicalRungeKuttaFieldStepInterpolator<T extends RealFieldElement<T>>
This class implements a step interpolator for the classical fourth order Runge-Kutta integrator.(package private) class
DormandPrince54FieldStepInterpolator<T extends RealFieldElement<T>>
This class represents an interpolator over the last step during an ODE integration for the 5(4) Dormand-Prince integrator.(package private) class
DormandPrince853FieldStepInterpolator<T extends RealFieldElement<T>>
This class represents an interpolator over the last step during an ODE integration for the 8(5,3) Dormand-Prince integrator.(package private) class
EulerFieldStepInterpolator<T extends RealFieldElement<T>>
This class implements a linear interpolator for step.(package private) class
GillFieldStepInterpolator<T extends RealFieldElement<T>>
This class implements a step interpolator for the Gill fourth order Runge-Kutta integrator.(package private) class
HighamHall54FieldStepInterpolator<T extends RealFieldElement<T>>
This class represents an interpolator over the last step during an ODE integration for the 5(4) Higham and Hall integrator.(package private) class
LutherFieldStepInterpolator<T extends RealFieldElement<T>>
This class represents an interpolator over the last step during an ODE integration for the 6th order Luther integrator.(package private) class
MidpointFieldStepInterpolator<T extends RealFieldElement<T>>
This class implements a step interpolator for second order Runge-Kutta integrator.(package private) class
ThreeEighthesFieldStepInterpolator<T extends RealFieldElement<T>>
This class implements a step interpolator for the 3/8 fourth order Runge-Kutta integrator.Methods in org.apache.commons.math3.ode.nonstiff that return RungeKuttaFieldStepInterpolatorModifier and TypeMethodDescriptionprotected RungeKuttaFieldStepInterpolator
<T> RungeKuttaFieldStepInterpolator.create
(boolean newForward, FieldODEStateAndDerivative<T> newGlobalPreviousState, FieldODEStateAndDerivative<T> newGlobalCurrentState, FieldODEStateAndDerivative<T> newSoftPreviousState, FieldODEStateAndDerivative<T> newSoftCurrentState, FieldEquationsMapper<T> newMapper) Create a new instance.protected abstract RungeKuttaFieldStepInterpolator
<T> RungeKuttaFieldStepInterpolator.create
(Field<T> newField, boolean newForward, T[][] newYDotK, FieldODEStateAndDerivative<T> newGlobalPreviousState, FieldODEStateAndDerivative<T> newGlobalCurrentState, FieldODEStateAndDerivative<T> newSoftPreviousState, FieldODEStateAndDerivative<T> newSoftCurrentState, FieldEquationsMapper<T> newMapper) Create a new instance.protected abstract RungeKuttaFieldStepInterpolator
<T> EmbeddedRungeKuttaFieldIntegrator.createInterpolator
(boolean forward, T[][] yDotK, FieldODEStateAndDerivative<T> globalPreviousState, FieldODEStateAndDerivative<T> globalCurrentState, FieldEquationsMapper<T> mapper) Create an interpolator.protected abstract RungeKuttaFieldStepInterpolator
<T> RungeKuttaFieldIntegrator.createInterpolator
(boolean forward, T[][] yDotK, FieldODEStateAndDerivative<T> globalPreviousState, FieldODEStateAndDerivative<T> globalCurrentState, FieldEquationsMapper<T> mapper) Create an interpolator.