Uses of Interface
org.apache.commons.math3.ode.sampling.FieldStepInterpolator
Packages that use FieldStepInterpolator
Package
Description
This package provides classes to solve Ordinary Differential Equations problems.
This package provides classes to handle discrete events occurring during
Ordinary Differential Equations integration.
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 FieldStepInterpolator in org.apache.commons.math3.ode
Fields in org.apache.commons.math3.ode with type parameters of type FieldStepInterpolatorModifier and TypeFieldDescriptionprivate List
<FieldStepInterpolator<T>> ContinuousOutputFieldModel.steps
Steps table.Methods in org.apache.commons.math3.ode with parameters of type FieldStepInterpolatorModifier and TypeMethodDescriptionvoid
ContinuousOutputFieldModel.handleStep
(FieldStepInterpolator<T> interpolator, boolean isLast) Handle the last accepted step.void
MultistepFieldIntegrator.FieldNordsieckInitializer.handleStep
(FieldStepInterpolator<T> interpolator, boolean isLast) Handle the last accepted stepprivate int
ContinuousOutputFieldModel.locatePoint
(T time, FieldStepInterpolator<T> interval) Compare a step interval and a double. -
Uses of FieldStepInterpolator in org.apache.commons.math3.ode.events
Methods in org.apache.commons.math3.ode.events with parameters of type FieldStepInterpolatorModifier and TypeMethodDescriptionboolean
FieldEventState.evaluateStep
(FieldStepInterpolator<T> interpolator) Evaluate the impact of the proposed step on the event handler.void
FieldEventState.reinitializeBegin
(FieldStepInterpolator<T> interpolator) Reinitialize the beginning of the step. -
Uses of FieldStepInterpolator in org.apache.commons.math3.ode.nonstiff
Classes in org.apache.commons.math3.ode.nonstiff that implement FieldStepInterpolatorModifier 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 FieldStepInterpolator in org.apache.commons.math3.ode.sampling
Classes in org.apache.commons.math3.ode.sampling that implement FieldStepInterpolatorModifier and TypeClassDescriptionclass
AbstractFieldStepInterpolator<T extends RealFieldElement<T>>
This abstract class represents an interpolator over the last step during an ODE integration.Methods in org.apache.commons.math3.ode.sampling with parameters of type FieldStepInterpolatorModifier and TypeMethodDescriptionvoid
FieldStepHandler.handleStep
(FieldStepInterpolator<T> interpolator, boolean isLast) Handle the last accepted stepvoid
FieldStepNormalizer.handleStep
(FieldStepInterpolator<T> interpolator, boolean isLast) Handle the last accepted stepprivate boolean
FieldStepNormalizer.isNextInStep
(T nextTime, FieldStepInterpolator<T> interpolator) Returns a value indicating whether the next normalized time is in the current step.