|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectorg.apache.commons.math.ode.sampling.AbstractStepInterpolator
org.apache.commons.math.ode.sampling.DummyStepInterpolator
public class DummyStepInterpolator
This class is a step interpolator that does nothing.
This class is used when the "step handler"
set up by the user does not need step interpolation. It does not
recompute the state when setInterpolatedTime
is called. This implies the interpolated state
is always the state at the end of the current step.
StepHandler
,
Serialized FormField Summary |
---|
Fields inherited from class org.apache.commons.math.ode.sampling.AbstractStepInterpolator |
---|
currentState, h, interpolatedDerivatives, interpolatedState, interpolatedTime |
Constructor Summary | |
---|---|
DummyStepInterpolator()
Simple constructor. |
|
DummyStepInterpolator(double[] y,
double[] yDot,
boolean forward)
Simple constructor. |
|
DummyStepInterpolator(DummyStepInterpolator interpolator)
Copy constructor. |
Method Summary | |
---|---|
protected void |
computeInterpolatedStateAndDerivatives(double theta,
double oneMinusThetaH)
Compute the state at the interpolated time. |
protected StepInterpolator |
doCopy()
Really copy the finalized instance. |
void |
readExternal(ObjectInput in)
Read the instance from an input channel. |
void |
writeExternal(ObjectOutput out)
Write the instance to an output channel. |
Methods inherited from class org.apache.commons.math.ode.sampling.AbstractStepInterpolator |
---|
copy, doFinalize, finalizeStep, getCurrentTime, getGlobalCurrentTime, getGlobalPreviousTime, getInterpolatedDerivatives, getInterpolatedState, getInterpolatedTime, getPreviousTime, isForward, readBaseExternal, reinitialize, setInterpolatedTime, setSoftCurrentTime, setSoftPreviousTime, shift, storeTime, writeBaseExternal |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Constructor Detail |
---|
public DummyStepInterpolator()
AbstractStepInterpolator.reinitialize
protected method
should be called before using the instance in order to initialize
the internal arrays. This constructor is used only in order to delay
the initialization in some cases. As an example, the EmbeddedRungeKuttaIntegrator
uses
the prototyping design pattern to create the step interpolators by
cloning an uninitialized model and latter initializing the copy.
public DummyStepInterpolator(double[] y, double[] yDot, boolean forward)
y
- reference to the integrator array holding the state at
the end of the stepyDot
- reference to the integrator array holding the state
derivative at some arbitrary point within the stepforward
- integration direction indicatorpublic DummyStepInterpolator(DummyStepInterpolator interpolator)
interpolator
- interpolator to copy from. The copy is a deep
copy: its arrays are separated from the original arrays of the
instanceMethod Detail |
---|
protected StepInterpolator doCopy()
doCopy
in class AbstractStepInterpolator
protected void computeInterpolatedStateAndDerivatives(double theta, double oneMinusThetaH)
computeInterpolatedStateAndDerivatives
in class AbstractStepInterpolator
theta
- normalized interpolation abscissa within the step
(theta is zero at the previous time step and one at the current time step)oneMinusThetaH
- time gap between the interpolated time and
the current timepublic void writeExternal(ObjectOutput out) throws IOException
writeExternal
in interface Externalizable
writeExternal
in class AbstractStepInterpolator
out
- output channel
IOException
- if the instance cannot be writtenpublic void readExternal(ObjectInput in) throws IOException
readExternal
in interface Externalizable
readExternal
in class AbstractStepInterpolator
in
- input channel
IOException
- if the instance cannot be read
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |