Uses of Class
org.apache.commons.math3.ode.nonstiff.RungeKuttaFieldStepInterpolator
-
Packages that use RungeKuttaFieldStepInterpolator Package Description org.apache.commons.math3.ode.nonstiff This package provides classes to solve non-stiff Ordinary Differential Equations problems. -
-
Uses of RungeKuttaFieldStepInterpolator in org.apache.commons.math3.ode.nonstiff
Subclasses of RungeKuttaFieldStepInterpolator in org.apache.commons.math3.ode.nonstiff Modifier and Type Class Description (package private) classClassicalRungeKuttaFieldStepInterpolator<T extends RealFieldElement<T>>This class implements a step interpolator for the classical fourth order Runge-Kutta integrator.(package private) classDormandPrince54FieldStepInterpolator<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) classDormandPrince853FieldStepInterpolator<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) classEulerFieldStepInterpolator<T extends RealFieldElement<T>>This class implements a linear interpolator for step.(package private) classGillFieldStepInterpolator<T extends RealFieldElement<T>>This class implements a step interpolator for the Gill fourth order Runge-Kutta integrator.(package private) classHighamHall54FieldStepInterpolator<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) classLutherFieldStepInterpolator<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) classMidpointFieldStepInterpolator<T extends RealFieldElement<T>>This class implements a step interpolator for second order Runge-Kutta integrator.(package private) classThreeEighthesFieldStepInterpolator<T extends RealFieldElement<T>>This class implements a step interpolator for the 3/8 fourth order Runge-Kutta integrator.Methods in org.apache.commons.math3.ode.nonstiff that return RungeKuttaFieldStepInterpolator Modifier and Type Method Description protected RungeKuttaFieldStepInterpolator<T>RungeKuttaFieldStepInterpolator. create(boolean newForward, FieldODEStateAndDerivative<T> newGlobalPreviousState, FieldODEStateAndDerivative<T> newGlobalCurrentState, FieldODEStateAndDerivative<T> newSoftPreviousState, FieldODEStateAndDerivative<T> newSoftCurrentState, FieldEquationsMapper<T> newMapper)Create a new instance.protected abstract RungeKuttaFieldStepInterpolator<T>RungeKuttaFieldStepInterpolator. 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.protected abstract RungeKuttaFieldStepInterpolator<T>EmbeddedRungeKuttaFieldIntegrator. createInterpolator(boolean forward, T[][] yDotK, FieldODEStateAndDerivative<T> globalPreviousState, FieldODEStateAndDerivative<T> globalCurrentState, FieldEquationsMapper<T> mapper)Create an interpolator.protected abstract RungeKuttaFieldStepInterpolator<T>RungeKuttaFieldIntegrator. createInterpolator(boolean forward, T[][] yDotK, FieldODEStateAndDerivative<T> globalPreviousState, FieldODEStateAndDerivative<T> globalCurrentState, FieldEquationsMapper<T> mapper)Create an interpolator.
-