Uses of Class
org.hipparchus.ode.nonstiff.interpolators.RungeKuttaFieldStateInterpolator
-
Packages that use RungeKuttaFieldStateInterpolator 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 RungeKuttaFieldStateInterpolator in org.hipparchus.ode.nonstiff
Methods in org.hipparchus.ode.nonstiff that return RungeKuttaFieldStateInterpolator Modifier and Type Method Description protected abstract RungeKuttaFieldStateInterpolator<T>
EmbeddedRungeKuttaFieldIntegrator. createInterpolator(boolean forward, T[][] yDotK, FieldODEStateAndDerivative<T> globalPreviousState, FieldODEStateAndDerivative<T> globalCurrentState, FieldEquationsMapper<T> mapper)
Create an interpolator.protected abstract RungeKuttaFieldStateInterpolator<T>
FixedStepRungeKuttaFieldIntegrator. createInterpolator(boolean forward, T[][] yDotK, FieldODEStateAndDerivative<T> globalPreviousState, FieldODEStateAndDerivative<T> globalCurrentState, FieldEquationsMapper<T> mapper)
Create an interpolator. -
Uses of RungeKuttaFieldStateInterpolator in org.hipparchus.ode.nonstiff.interpolators
Subclasses of RungeKuttaFieldStateInterpolator in org.hipparchus.ode.nonstiff.interpolators Modifier and Type Class Description class
ClassicalRungeKuttaFieldStateInterpolator<T extends CalculusFieldElement<T>>
This class implements a step interpolator for the classical fourth order Runge-Kutta integrator.class
DormandPrince54FieldStateInterpolator<T extends CalculusFieldElement<T>>
This class represents an interpolator over the last step during an ODE integration for the 5(4) Dormand-Prince integrator.class
DormandPrince853FieldStateInterpolator<T extends CalculusFieldElement<T>>
This class represents an interpolator over the last step during an ODE integration for the 8(5,3) Dormand-Prince integrator.class
EulerFieldStateInterpolator<T extends CalculusFieldElement<T>>
This class implements a linear interpolator for step.class
GillFieldStateInterpolator<T extends CalculusFieldElement<T>>
This class implements a step interpolator for the Gill fourth order Runge-Kutta integrator.class
HighamHall54FieldStateInterpolator<T extends CalculusFieldElement<T>>
This class represents an interpolator over the last step during an ODE integration for the 5(4) Higham and Hall integrator.class
LutherFieldStateInterpolator<T extends CalculusFieldElement<T>>
This class represents an interpolator over the last step during an ODE integration for the 6th order Luther integrator.class
MidpointFieldStateInterpolator<T extends CalculusFieldElement<T>>
This class implements a step interpolator for second order Runge-Kutta integrator.class
ThreeEighthesFieldStateInterpolator<T extends CalculusFieldElement<T>>
This class implements a step interpolator for the 3/8 fourth order Runge-Kutta integrator.Methods in org.hipparchus.ode.nonstiff.interpolators that return RungeKuttaFieldStateInterpolator Modifier and Type Method Description protected RungeKuttaFieldStateInterpolator<T>
RungeKuttaFieldStateInterpolator. create(boolean newForward, FieldODEStateAndDerivative<T> newGlobalPreviousState, FieldODEStateAndDerivative<T> newGlobalCurrentState, FieldODEStateAndDerivative<T> newSoftPreviousState, FieldODEStateAndDerivative<T> newSoftCurrentState, FieldEquationsMapper<T> newMapper)
Create a new instance.protected abstract RungeKuttaFieldStateInterpolator<T>
RungeKuttaFieldStateInterpolator. 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.
-