Uses of Class
org.apache.commons.math3.ode.sampling.AbstractFieldStepInterpolator
Packages that use AbstractFieldStepInterpolator
Package
Description
This package provides classes to solve Ordinary Differential Equations problems.
This package provides classes to solve non-stiff Ordinary Differential Equations problems.
This package provides classes to handle sampling steps during
Ordinary Differential Equations integration.
-
Uses of AbstractFieldStepInterpolator in org.apache.commons.math3.ode
Methods in org.apache.commons.math3.ode with parameters of type AbstractFieldStepInterpolatorModifier and TypeMethodDescriptionprotected FieldODEStateAndDerivative
<T> AbstractFieldIntegrator.acceptStep
(AbstractFieldStepInterpolator<T> interpolator, T tEnd) Accept a step, triggering events and step handlers. -
Uses of AbstractFieldStepInterpolator in org.apache.commons.math3.ode.nonstiff
Subclasses of AbstractFieldStepInterpolator in org.apache.commons.math3.ode.nonstiffModifier and TypeClassDescription(package private) class
AdamsFieldStepInterpolator<T extends RealFieldElement<T>>
This class implements an interpolator for Adams integrators using Nordsieck representation.(package private) class
ClassicalRungeKuttaFieldStepInterpolator<T extends RealFieldElement<T>>
This class implements a step interpolator for the classical fourth order Runge-Kutta integrator.(package private) class
DormandPrince54FieldStepInterpolator<T extends RealFieldElement<T>>
This class represents an interpolator over the last step during an ODE integration for the 5(4) Dormand-Prince integrator.(package private) class
DormandPrince853FieldStepInterpolator<T extends RealFieldElement<T>>
This class represents an interpolator over the last step during an ODE integration for the 8(5,3) Dormand-Prince integrator.(package private) class
EulerFieldStepInterpolator<T extends RealFieldElement<T>>
This class implements a linear interpolator for step.(package private) class
GillFieldStepInterpolator<T extends RealFieldElement<T>>
This class implements a step interpolator for the Gill fourth order Runge-Kutta integrator.(package private) class
HighamHall54FieldStepInterpolator<T extends RealFieldElement<T>>
This class represents an interpolator over the last step during an ODE integration for the 5(4) Higham and Hall integrator.(package private) class
LutherFieldStepInterpolator<T extends RealFieldElement<T>>
This class represents an interpolator over the last step during an ODE integration for the 6th order Luther integrator.(package private) class
MidpointFieldStepInterpolator<T extends RealFieldElement<T>>
This class implements a step interpolator for second order Runge-Kutta integrator.(package private) class
RungeKuttaFieldStepInterpolator<T extends RealFieldElement<T>>
This class represents an interpolator over the last step during an ODE integration for Runge-Kutta and embedded Runge-Kutta integrators.(package private) class
ThreeEighthesFieldStepInterpolator<T extends RealFieldElement<T>>
This class implements a step interpolator for the 3/8 fourth order Runge-Kutta integrator. -
Uses of AbstractFieldStepInterpolator in org.apache.commons.math3.ode.sampling
Methods in org.apache.commons.math3.ode.sampling that return AbstractFieldStepInterpolatorModifier and TypeMethodDescriptionprotected abstract AbstractFieldStepInterpolator
<T> AbstractFieldStepInterpolator.create
(boolean newForward, FieldODEStateAndDerivative<T> newGlobalPreviousState, FieldODEStateAndDerivative<T> newGlobalCurrentState, FieldODEStateAndDerivative<T> newSoftPreviousState, FieldODEStateAndDerivative<T> newSoftCurrentState, FieldEquationsMapper<T> newMapper) Create a new instance.AbstractFieldStepInterpolator.restrictStep
(FieldODEStateAndDerivative<T> previousState, FieldODEStateAndDerivative<T> currentState) Create a new restricted version of the instance.