Uses of Interface
org.hipparchus.ode.sampling.ODEStateInterpolator
-
Packages that use ODEStateInterpolator 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 ODEStateInterpolator in org.hipparchus.ode
Methods in org.hipparchus.ode with parameters of type ODEStateInterpolator Modifier and Type Method Description void
DenseOutputModel. handleStep(ODEStateInterpolator interpolator)
Handle the last accepted step. -
Uses of ODEStateInterpolator in org.hipparchus.ode.events
Methods in org.hipparchus.ode.events with parameters of type ODEStateInterpolator Modifier and Type Method Description boolean
DetectorBasedEventState. evaluateStep(ODEStateInterpolator interpolator)
Evaluate the impact of the proposed step on the handler.boolean
EventState. evaluateStep(ODEStateInterpolator interpolator)
Evaluate the impact of the proposed step on the handler.boolean
StepEndEventState. evaluateStep(ODEStateInterpolator interpolator)
Evaluate the impact of the proposed step on the handler.void
DetectorBasedEventState. reinitializeBegin(ODEStateInterpolator interpolator)
Reinitialize the beginning of the step.boolean
DetectorBasedEventState. tryAdvance(ODEStateAndDerivative state, ODEStateInterpolator interpolator)
Try to accept the current history up to the given time. -
Uses of ODEStateInterpolator in org.hipparchus.ode.nonstiff.interpolators
Classes in org.hipparchus.ode.nonstiff.interpolators that implement ODEStateInterpolator Modifier and Type Class Description class
AdamsStateInterpolator
This class implements an interpolator for integrators using Nordsieck representation.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
GraggBulirschStoerStateInterpolator
This class implements an interpolator for the Gragg-Bulirsch-Stoer 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
RungeKuttaStateInterpolator
This class represents an interpolator over the last step during an ODE integration for Runge-Kutta and embedded Runge-Kutta integrators.class
ThreeEighthesStateInterpolator
This class implements a step interpolator for the 3/8 fourth order Runge-Kutta integrator. -
Uses of ODEStateInterpolator in org.hipparchus.ode.sampling
Classes in org.hipparchus.ode.sampling that implement ODEStateInterpolator Modifier and Type Class Description class
AbstractODEStateInterpolator
This abstract class represents an interpolator over the last step during an ODE integration.Methods in org.hipparchus.ode.sampling that return ODEStateInterpolator Modifier and Type Method Description ODEStateInterpolator
ODEStateInterpolator. restrictStep(ODEStateAndDerivative previousState, ODEStateAndDerivative currentState)
Create a new restricted version of the instance.Methods in org.hipparchus.ode.sampling with parameters of type ODEStateInterpolator Modifier and Type Method Description void
ODEStepHandler. handleStep(ODEStateInterpolator interpolator)
Handle the last accepted step.void
StepNormalizer. handleStep(ODEStateInterpolator interpolator)
Handle the last accepted step.
-