Uses of Interface
org.apache.commons.math3.ode.sampling.StepInterpolator
-
Packages that use StepInterpolator Package Description org.apache.commons.math3.ode This package provides classes to solve Ordinary Differential Equations problems.org.apache.commons.math3.ode.events This package provides classes to handle discrete events occurring during Ordinary Differential Equations integration.org.apache.commons.math3.ode.nonstiff This package provides classes to solve non-stiff Ordinary Differential Equations problems.org.apache.commons.math3.ode.sampling This package provides classes to handle sampling steps during Ordinary Differential Equations integration. -
-
Uses of StepInterpolator in org.apache.commons.math3.ode
Fields in org.apache.commons.math3.ode with type parameters of type StepInterpolator Modifier and Type Field Description private java.util.List<StepInterpolator>ContinuousOutputModel. stepsSteps table.Methods in org.apache.commons.math3.ode with parameters of type StepInterpolator Modifier and Type Method Description voidContinuousOutputModel. handleStep(StepInterpolator interpolator, boolean isLast)Handle the last accepted step.voidMultistepIntegrator.NordsieckInitializer. handleStep(StepInterpolator interpolator, boolean isLast)Handle the last accepted stepprivate intContinuousOutputModel. locatePoint(double time, StepInterpolator interval)Compare a step interval and a double. -
Uses of StepInterpolator in org.apache.commons.math3.ode.events
Methods in org.apache.commons.math3.ode.events with parameters of type StepInterpolator Modifier and Type Method Description booleanEventState. evaluateStep(StepInterpolator interpolator)Evaluate the impact of the proposed step on the event handler.private double[]EventState. getCompleteState(StepInterpolator interpolator)Get the complete state (primary and secondary).voidEventState. reinitializeBegin(StepInterpolator interpolator)Reinitialize the beginning of the step. -
Uses of StepInterpolator in org.apache.commons.math3.ode.nonstiff
Classes in org.apache.commons.math3.ode.nonstiff that implement StepInterpolator Modifier and Type Class Description (package private) classClassicalRungeKuttaStepInterpolatorThis class implements a step interpolator for the classical fourth order Runge-Kutta integrator.(package private) classDormandPrince54StepInterpolatorThis class represents an interpolator over the last step during an ODE integration for the 5(4) Dormand-Prince integrator.(package private) classDormandPrince853StepInterpolatorThis class represents an interpolator over the last step during an ODE integration for the 8(5,3) Dormand-Prince integrator.(package private) classEulerStepInterpolatorThis class implements a linear interpolator for step.(package private) classGillStepInterpolatorThis class implements a step interpolator for the Gill fourth order Runge-Kutta integrator.(package private) classGraggBulirschStoerStepInterpolatorThis class implements an interpolator for the Gragg-Bulirsch-Stoer integrator.(package private) classHighamHall54StepInterpolatorThis class represents an interpolator over the last step during an ODE integration for the 5(4) Higham and Hall integrator.(package private) classLutherStepInterpolatorThis class represents an interpolator over the last step during an ODE integration for the 6th order Luther integrator.(package private) classMidpointStepInterpolatorThis class implements a step interpolator for second order Runge-Kutta integrator.(package private) classRungeKuttaStepInterpolatorThis class represents an interpolator over the last step during an ODE integration for Runge-Kutta and embedded Runge-Kutta integrators.(package private) classThreeEighthesStepInterpolatorThis class implements a step interpolator for the 3/8 fourth order Runge-Kutta integrator.Methods in org.apache.commons.math3.ode.nonstiff that return StepInterpolator Modifier and Type Method Description protected StepInterpolatorClassicalRungeKuttaStepInterpolator. doCopy()Really copy the finalized instance.protected StepInterpolatorDormandPrince54StepInterpolator. doCopy()Really copy the finalized instance.protected StepInterpolatorDormandPrince853StepInterpolator. doCopy()Really copy the finalized instance.protected StepInterpolatorEulerStepInterpolator. doCopy()Really copy the finalized instance.protected StepInterpolatorGillStepInterpolator. doCopy()Really copy the finalized instance.protected StepInterpolatorGraggBulirschStoerStepInterpolator. doCopy()Really copy the finalized instance.protected StepInterpolatorHighamHall54StepInterpolator. doCopy()Really copy the finalized instance.protected StepInterpolatorLutherStepInterpolator. doCopy()Really copy the finalized instance.protected StepInterpolatorMidpointStepInterpolator. doCopy()Really copy the finalized instance.protected StepInterpolatorThreeEighthesStepInterpolator. doCopy()Really copy the finalized instance. -
Uses of StepInterpolator in org.apache.commons.math3.ode.sampling
Classes in org.apache.commons.math3.ode.sampling that implement StepInterpolator Modifier and Type Class Description classAbstractStepInterpolatorThis abstract class represents an interpolator over the last step during an ODE integration.classNordsieckStepInterpolatorThis class implements an interpolator for integrators using Nordsieck representation.Methods in org.apache.commons.math3.ode.sampling that return StepInterpolator Modifier and Type Method Description StepInterpolatorAbstractStepInterpolator. copy()Copy the instance.StepInterpolatorStepInterpolator. copy()Copy the instance.protected abstract StepInterpolatorAbstractStepInterpolator. doCopy()Really copy the finalized instance.protected StepInterpolatorNordsieckStepInterpolator. doCopy()Really copy the finalized instance.Methods in org.apache.commons.math3.ode.sampling with parameters of type StepInterpolator Modifier and Type Method Description voidDummyStepHandler. handleStep(StepInterpolator interpolator, boolean isLast)Handle the last accepted step.voidStepHandler. handleStep(StepInterpolator interpolator, boolean isLast)Handle the last accepted stepvoidStepNormalizer. handleStep(StepInterpolator interpolator, boolean isLast)Handle the last accepted stepprivate booleanStepNormalizer. isNextInStep(double nextTime, StepInterpolator interpolator)Returns a value indicating whether the next normalized time is in the current step.private voidStepNormalizer. storeStep(StepInterpolator interpolator, double t)Stores the interpolated information for the given time in the current state.
-