Uses of Class
org.hipparchus.ode.nonstiff.interpolators.RungeKuttaStateInterpolator
-
Packages that use RungeKuttaStateInterpolator Package Description org.hipparchus.ode.nonstiff This package provides classes to solve non-stiff Ordinary Differential Equations problems.org.hipparchus.ode.nonstiff.interpolators This package provides classes implementing interpolators for dense outputs of ODE integrators. -
-
Uses of RungeKuttaStateInterpolator in org.hipparchus.ode.nonstiff
Methods in org.hipparchus.ode.nonstiff that return RungeKuttaStateInterpolator Modifier and Type Method Description protected abstract RungeKuttaStateInterpolator
EmbeddedRungeKuttaIntegrator. createInterpolator(boolean forward, double[][] yDotK, ODEStateAndDerivative globalPreviousState, ODEStateAndDerivative globalCurrentState, EquationsMapper mapper)
Create an interpolator.protected abstract RungeKuttaStateInterpolator
FixedStepRungeKuttaIntegrator. createInterpolator(boolean forward, double[][] yDotK, ODEStateAndDerivative globalPreviousState, ODEStateAndDerivative globalCurrentState, EquationsMapper mapper)
Create an interpolator. -
Uses of RungeKuttaStateInterpolator in org.hipparchus.ode.nonstiff.interpolators
Subclasses of RungeKuttaStateInterpolator in org.hipparchus.ode.nonstiff.interpolators Modifier and Type Class Description class
ClassicalRungeKuttaStateInterpolator
This class implements a step interpolator for the classical fourth order Runge-Kutta integrator.class
DormandPrince54StateInterpolator
This class represents an interpolator over the last step during an ODE integration for the 5(4) Dormand-Prince integrator.class
DormandPrince853StateInterpolator
This class represents an interpolator over the last step during an ODE integration for the 8(5,3) Dormand-Prince integrator.class
EulerStateInterpolator
This class implements a linear interpolator for step.class
GillStateInterpolator
This class implements a step interpolator for the Gill fourth order Runge-Kutta integrator.class
HighamHall54StateInterpolator
This class represents an interpolator over the last step during an ODE integration for the 5(4) Higham and Hall integrator.class
LutherStateInterpolator
This class represents an interpolator over the last step during an ODE integration for the 6th order Luther integrator.class
MidpointStateInterpolator
This class implements a step interpolator for second order Runge-Kutta integrator.class
ThreeEighthesStateInterpolator
This class implements a step interpolator for the 3/8 fourth order Runge-Kutta integrator.Methods in org.hipparchus.ode.nonstiff.interpolators that return RungeKuttaStateInterpolator Modifier and Type Method Description protected abstract RungeKuttaStateInterpolator
RungeKuttaStateInterpolator. create(boolean newForward, double[][] newYDotK, ODEStateAndDerivative newGlobalPreviousState, ODEStateAndDerivative newGlobalCurrentState, ODEStateAndDerivative newSoftPreviousState, ODEStateAndDerivative newSoftCurrentState, EquationsMapper newMapper)
Create a new instance.protected RungeKuttaStateInterpolator
RungeKuttaStateInterpolator. create(boolean newForward, ODEStateAndDerivative newGlobalPreviousState, ODEStateAndDerivative newGlobalCurrentState, ODEStateAndDerivative newSoftPreviousState, ODEStateAndDerivative newSoftCurrentState, EquationsMapper newMapper)
Create a new instance.
-