Uses of Interface
org.hipparchus.ode.sampling.FieldODEStateInterpolator
-
Packages that use FieldODEStateInterpolator Package Description org.hipparchus.ode This package provides classes to solve Ordinary Differential Equations problems.org.hipparchus.ode.events Eventsorg.hipparchus.ode.nonstiff.interpolators This package provides classes implementing interpolators for dense outputs of ODE integrators.org.hipparchus.ode.sampling This package provides classes to handle sampling steps during Ordinary Differential Equations integration. -
-
Uses of FieldODEStateInterpolator in org.hipparchus.ode
Methods in org.hipparchus.ode with parameters of type FieldODEStateInterpolator Modifier and Type Method Description void
FieldDenseOutputModel. handleStep(FieldODEStateInterpolator<T> interpolator)
Handle the last accepted step. -
Uses of FieldODEStateInterpolator in org.hipparchus.ode.events
Methods in org.hipparchus.ode.events with parameters of type FieldODEStateInterpolator Modifier and Type Method Description boolean
FieldDetectorBasedEventState. evaluateStep(FieldODEStateInterpolator<T> interpolator)
Evaluate the impact of the proposed step on the event handler.boolean
FieldEventState. evaluateStep(FieldODEStateInterpolator<T> interpolator)
Evaluate the impact of the proposed step on the event handler.boolean
FieldStepEndEventState. evaluateStep(FieldODEStateInterpolator<T> interpolator)
Evaluate the impact of the proposed step on the event handler.void
FieldDetectorBasedEventState. reinitializeBegin(FieldODEStateInterpolator<T> interpolator)
Reinitialize the beginning of the step.boolean
FieldDetectorBasedEventState. tryAdvance(FieldODEStateAndDerivative<T> state, FieldODEStateInterpolator<T> interpolator)
Try to accept the current history up to the given time. -
Uses of FieldODEStateInterpolator in org.hipparchus.ode.nonstiff.interpolators
Classes in org.hipparchus.ode.nonstiff.interpolators that implement FieldODEStateInterpolator Modifier and Type Class Description class
AdamsFieldStateInterpolator<T extends CalculusFieldElement<T>>
This class implements an interpolator for Adams integrators using Nordsieck representation.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
RungeKuttaFieldStateInterpolator<T extends CalculusFieldElement<T>>
This class represents an interpolator over the last step during an ODE integration for Runge-Kutta and embedded Runge-Kutta integrators.class
ThreeEighthesFieldStateInterpolator<T extends CalculusFieldElement<T>>
This class implements a step interpolator for the 3/8 fourth order Runge-Kutta integrator. -
Uses of FieldODEStateInterpolator in org.hipparchus.ode.sampling
Classes in org.hipparchus.ode.sampling that implement FieldODEStateInterpolator Modifier and Type Class Description class
AbstractFieldODEStateInterpolator<T extends CalculusFieldElement<T>>
This abstract class represents an interpolator over the last step during an ODE integration.Methods in org.hipparchus.ode.sampling that return FieldODEStateInterpolator Modifier and Type Method Description FieldODEStateInterpolator<T>
FieldODEStateInterpolator. restrictStep(FieldODEStateAndDerivative<T> previousState, FieldODEStateAndDerivative<T> currentState)
Create a new restricted version of the instance.Methods in org.hipparchus.ode.sampling with parameters of type FieldODEStateInterpolator Modifier and Type Method Description void
FieldODEStepHandler. handleStep(FieldODEStateInterpolator<T> interpolator)
Handle the last accepted step.void
FieldStepNormalizer. handleStep(FieldODEStateInterpolator<T> interpolator)
Handle the last accepted step.
-