NumericalPropagator.Reset Method (JulianDate,Double[]) |
Resets the propagation to a new set of initial conditions at the epoch time.
Namespace:
AGI.Foundation.Propagators
Assembly:
AGI.Foundation.Models (in AGI.Foundation.Models.dll) Version: 25.1.421.0 (25.1.421.0)
Syntaxpublic void Reset(
JulianDate newEpoch,
double[] newInitialState
)
Public Sub Reset (
newEpoch As JulianDate,
newInitialState As Double()
)
public:
void Reset(
JulianDate newEpoch,
array<double>^ newInitialState
)
member Reset :
newEpoch : JulianDate *
newInitialState : float[] -> unit
Parameters
- newEpoch
- Type: AGI.Foundation.Time.JulianDate
The new epoch corresponding to the initial state. - newInitialState
- Type:System.Double[]
The new initial state corresponding to the propagation epoch.
Use the AdjustState<T> (String,Double[], Motion<T> ) method on the
Converter property to easily create a new initial state vector.
See Also