Uses of Class
org.hipparchus.ode.sampling.AbstractODEStateInterpolator
-
Packages that use AbstractODEStateInterpolator Package Description org.hipparchus.ode This package provides classes to solve Ordinary Differential Equations problems.org.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 AbstractODEStateInterpolator in org.hipparchus.ode
Methods in org.hipparchus.ode with parameters of type AbstractODEStateInterpolator Modifier and Type Method Description protected ODEStateAndDerivativeAbstractIntegrator. acceptStep(AbstractODEStateInterpolator interpolator, double tEnd)Accept a step, triggering events and step handlers. -
Uses of AbstractODEStateInterpolator in org.hipparchus.ode.nonstiff.interpolators
Subclasses of AbstractODEStateInterpolator in org.hipparchus.ode.nonstiff.interpolators Modifier and Type Class Description classAdamsStateInterpolatorThis class implements an interpolator for integrators using Nordsieck representation.classClassicalRungeKuttaStateInterpolatorThis class implements a step interpolator for the classical fourth order Runge-Kutta integrator.classDormandPrince54StateInterpolatorThis class represents an interpolator over the last step during an ODE integration for the 5(4) Dormand-Prince integrator.classDormandPrince853StateInterpolatorThis class represents an interpolator over the last step during an ODE integration for the 8(5,3) Dormand-Prince integrator.classEulerStateInterpolatorThis class implements a linear interpolator for step.classGillStateInterpolatorThis class implements a step interpolator for the Gill fourth order Runge-Kutta integrator.classGraggBulirschStoerStateInterpolatorThis class implements an interpolator for the Gragg-Bulirsch-Stoer integrator.classHighamHall54StateInterpolatorThis class represents an interpolator over the last step during an ODE integration for the 5(4) Higham and Hall integrator.classLutherStateInterpolatorThis class represents an interpolator over the last step during an ODE integration for the 6th order Luther integrator.classMidpointStateInterpolatorThis class implements a step interpolator for second order Runge-Kutta integrator.classRungeKuttaStateInterpolatorThis class represents an interpolator over the last step during an ODE integration for Runge-Kutta and embedded Runge-Kutta integrators.classThreeEighthesStateInterpolatorThis class implements a step interpolator for the 3/8 fourth order Runge-Kutta integrator. -
Uses of AbstractODEStateInterpolator in org.hipparchus.ode.sampling
Methods in org.hipparchus.ode.sampling that return AbstractODEStateInterpolator Modifier and Type Method Description protected abstract AbstractODEStateInterpolatorAbstractODEStateInterpolator. create(boolean newForward, ODEStateAndDerivative newGlobalPreviousState, ODEStateAndDerivative newGlobalCurrentState, ODEStateAndDerivative newSoftPreviousState, ODEStateAndDerivative newSoftCurrentState, EquationsMapper newMapper)Create a new instance.AbstractODEStateInterpolatorAbstractODEStateInterpolator. restrictStep(ODEStateAndDerivative previousState, ODEStateAndDerivative currentState)Create a new restricted version of the instance.
-