Uses of Interface
org.apache.commons.math.ode.sampling.StepInterpolator
-
Packages that use StepInterpolator Package Description org.apache.commons.math.ode This package provides classes to solve Ordinary Differential Equations problems.org.apache.commons.math.ode.events This package provides classes to handle discrete events occurring during Ordinary Differential Equations integration.org.apache.commons.math.ode.sampling This package provides classes to handle sampling steps during Ordinary Differential Equations integration. -
-
Uses of StepInterpolator in org.apache.commons.math.ode
Methods in org.apache.commons.math.ode with parameters of type StepInterpolator Modifier and Type Method Description void
ContinuousOutputModel. handleStep(StepInterpolator interpolator, boolean isLast)
Handle the last accepted step. -
Uses of StepInterpolator in org.apache.commons.math.ode.events
Methods in org.apache.commons.math.ode.events with parameters of type StepInterpolator Modifier and Type Method Description boolean
CombinedEventsManager. evaluateStep(StepInterpolator interpolator)
Deprecated.Evaluate the impact of the proposed step on all managed event handlers.boolean
EventState. evaluateStep(StepInterpolator interpolator)
Evaluate the impact of the proposed step on the event handler.void
EventState. reinitializeBegin(StepInterpolator interpolator)
Reinitialize the beginning of the step. -
Uses of StepInterpolator in org.apache.commons.math.ode.sampling
Classes in org.apache.commons.math.ode.sampling that implement StepInterpolator Modifier and Type Class Description class
AbstractStepInterpolator
This abstract class represents an interpolator over the last step during an ODE integration.class
DummyStepInterpolator
This class is a step interpolator that does nothing.class
NordsieckStepInterpolator
This class implements an interpolator for integrators using Nordsieck representation.Methods in org.apache.commons.math.ode.sampling that return StepInterpolator Modifier and Type Method Description StepInterpolator
AbstractStepInterpolator. copy()
Copy the instance.StepInterpolator
StepInterpolator. copy()
Copy the instance.protected abstract StepInterpolator
AbstractStepInterpolator. doCopy()
Really copy the finalized instance.protected StepInterpolator
DummyStepInterpolator. doCopy()
Really copy the finalized instance.protected StepInterpolator
NordsieckStepInterpolator. doCopy()
Really copy the finalized instance.Methods in org.apache.commons.math.ode.sampling with parameters of type StepInterpolator Modifier and Type Method Description void
DummyStepHandler. handleStep(StepInterpolator interpolator, boolean isLast)
Handle the last accepted step.void
StepHandler. handleStep(StepInterpolator interpolator, boolean isLast)
Handle the last accepted stepvoid
StepNormalizer. handleStep(StepInterpolator interpolator, boolean isLast)
Handle the last accepted step
-