Package | Description |
---|---|
agi.foundation.numericalmethods |
Contains general numerical algorithms.
|
agi.foundation.numericalmethods.advanced |
Contains additional advanced numerical algorithms and supporting types.
|
agi.foundation.propagators.advanced |
Contains types used to create more specialized propagation scenarios.
|
Modifier and Type | Method and Description |
---|---|
static DerivativeMode |
DerivativeMode.getDefault()
Get the enum constant that is considered to be the default.
|
static DerivativeMode |
DerivativeMode.getFromValue(int value)
Get the enum constant that is associated with the given numeric value.
|
static DerivativeMode |
DerivativeMode.valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DerivativeMode[] |
DerivativeMode.values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
Modifier and Type | Method and Description |
---|---|
void |
DependentVariableDifferentialEquation.addDerivatives(double x,
double[] y,
DerivativeMode mode,
double[] derivativeArray)
Compute and add the derivatives of the dependent variables to the given
derivativeArray . |
abstract void |
DependentVariableDerivatives.addDerivatives(double x,
double[] y,
DerivativeMode mode,
double[] derivativeArray)
Compute and add the derivatives of the dependent variables to the given
derivativeArray . |
Modifier and Type | Method and Description |
---|---|
DerivativeMode |
PropagationEvaluationInformation.getDerivativeMode()
Gets the current mode in which the derivatives are to be evaluated.
|
Modifier and Type | Method and Description |
---|---|
abstract void |
PropagationStateElementEvaluator.addDerivatives(JulianDate date,
DerivativeMode mode,
PropagationStateArray derivativeArray)
Based on the given
DerivativeMode , compute the requested kind of derivative and
add (don't set) it to the given array. |
Constructor and Description |
---|
PropagationEvaluationInformation(DerivativeMode mode,
JulianDate epoch,
double epochSeconds,
double[] state,
double[] derivatives)
Initializes a new instance.
|