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.stepsSteps table.Methods in org.apache.commons.math3.ode with parameters of type FieldStepInterpolatorModifier and TypeMethodDescriptionvoidContinuousOutputFieldModel.handleStep(FieldStepInterpolator<T> interpolator, boolean isLast) Handle the last accepted step.voidMultistepFieldIntegrator.FieldNordsieckInitializer.handleStep(FieldStepInterpolator<T> interpolator, boolean isLast) Handle the last accepted stepprivate intContinuousOutputFieldModel.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 TypeMethodDescriptionbooleanFieldEventState.evaluateStep(FieldStepInterpolator<T> interpolator) Evaluate the impact of the proposed step on the event handler.voidFieldEventState.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) classAdamsFieldStepInterpolator<T extends RealFieldElement<T>>This class implements an interpolator for Adams integrators using Nordsieck representation.(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) classRungeKuttaFieldStepInterpolator<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) classThreeEighthesFieldStepInterpolator<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 TypeClassDescriptionclassAbstractFieldStepInterpolator<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 TypeMethodDescriptionvoidFieldStepHandler.handleStep(FieldStepInterpolator<T> interpolator, boolean isLast) Handle the last accepted stepvoidFieldStepNormalizer.handleStep(FieldStepInterpolator<T> interpolator, boolean isLast) Handle the last accepted stepprivate booleanFieldStepNormalizer.isNextInStep(T nextTime, FieldStepInterpolator<T> interpolator) Returns a value indicating whether the next normalized time is in the current step.