Serialized Form
-
Package org.hipparchus.ode
-
Class org.hipparchus.ode.ComplexODEState extends Object implements Serializable
- serialVersionUID:
- 20180902L
-
Class org.hipparchus.ode.ComplexODEStateAndDerivative extends ComplexODEState implements Serializable
- serialVersionUID:
- 20180902L
-
Class org.hipparchus.ode.DenseOutputModel extends Object implements Serializable
- serialVersionUID:
- 20160328L
-
Serialized Fields
-
finalTime
double finalTime
Final integration time. -
forward
boolean forward
Integration direction indicator. -
index
int index
Current interpolator index. -
initialTime
double initialTime
Initial integration time. -
steps
List<ODEStateInterpolator> steps
Steps table.
-
-
Class org.hipparchus.ode.EquationsMapper extends Object implements Serializable
- serialVersionUID:
- 20160327L
-
Serialized Fields
-
start
int[] start
Start indices of the components.
-
-
Class org.hipparchus.ode.FieldEquationsMapper extends Object implements Serializable
- serialVersionUID:
- 20151114L
-
Serialized Fields
-
start
int[] start
Start indices of the components.
-
-
Class org.hipparchus.ode.ODEState extends Object implements Serializable
- serialVersionUID:
- 20160408L
-
Serialized Fields
-
completeDimension
int completeDimension
Complete dimension. -
primaryState
double[] primaryState
Primary state at time. -
secondaryState
double[][] secondaryState
Secondary state at time. -
time
double time
Time.
-
-
Class org.hipparchus.ode.ODEStateAndDerivative extends ODEState implements Serializable
- serialVersionUID:
- 20160408L
-
Serialized Fields
-
primaryDerivative
double[] primaryDerivative
Derivative of the primary state at time. -
secondaryDerivative
double[][] secondaryDerivative
Derivative of the secondary state at time.
-
-
Class org.hipparchus.ode.VariationalEquation.MismatchedEquations extends MathIllegalArgumentException implements Serializable
- serialVersionUID:
- 20120902L
-
-
Package org.hipparchus.ode.sampling
-
Class org.hipparchus.ode.sampling.AbstractODEStateInterpolator extends Object implements Serializable
- serialVersionUID:
- 20160328L
-
Serialized Fields
-
forward
boolean forward
integration direction. -
globalCurrentState
ODEStateAndDerivative globalCurrentState
Global current state. -
globalPreviousState
ODEStateAndDerivative globalPreviousState
Global previous state. -
mapper
EquationsMapper mapper
Mapper for ODE equations primary and secondary components. -
softCurrentState
ODEStateAndDerivative softCurrentState
Soft current state. -
softPreviousState
ODEStateAndDerivative softPreviousState
Soft previous state.
-
-