Uses of Class
org.hipparchus.ode.nonstiff.interpolators.RungeKuttaFieldStateInterpolator
Packages that use RungeKuttaFieldStateInterpolator
Package
Description
 This package provides classes to solve non-stiff Ordinary Differential Equations problems.
 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 RungeKuttaFieldStateInterpolatorModifier and TypeMethodDescriptionprotected 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
Modifier and TypeClassDescriptionclassThis class implements a step interpolator for the classical fourth order Runge-Kutta integrator.classDormandPrince54FieldStateInterpolator<T extends CalculusFieldElement<T>>This class represents an interpolator over the last step during an ODE integration for the 5(4) Dormand-Prince integrator.classDormandPrince853FieldStateInterpolator<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.classEulerFieldStateInterpolator<T extends CalculusFieldElement<T>>This class implements a linear interpolator for step.classGillFieldStateInterpolator<T extends CalculusFieldElement<T>>This class implements a step interpolator for the Gill fourth order Runge-Kutta integrator.classHighamHall54FieldStateInterpolator<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.classLutherFieldStateInterpolator<T extends CalculusFieldElement<T>>This class represents an interpolator over the last step during an ODE integration for the 6th order Luther integrator.classMidpointFieldStateInterpolator<T extends CalculusFieldElement<T>>This class implements a step interpolator for second order Runge-Kutta integrator.classThreeEighthesFieldStateInterpolator<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 RungeKuttaFieldStateInterpolatorModifier and TypeMethodDescriptionprotected 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.