ExceptionDuringPropagationEventArgs Constructor |
Initializes a new instance.
Namespace:
AGI.Foundation.Propagators
Assembly:
AGI.Foundation.Models (in AGI.Foundation.Models.dll) Version: 25.1.421.0 (25.1.421.0)
Syntaxpublic ExceptionDuringPropagationEventArgs(
NumericalPropagationException exception,
JulianDate previousTime,
double[] previousState,
JulianDate currentDate,
double[] currentState,
PropagationEventTrigger trigger,
StepSizeInformation info
)
Public Sub New (
exception As NumericalPropagationException,
previousTime As JulianDate,
previousState As Double(),
currentDate As JulianDate,
currentState As Double(),
trigger As PropagationEventTrigger,
info As StepSizeInformation
)
public:
ExceptionDuringPropagationEventArgs(
NumericalPropagationException^ exception,
JulianDate previousTime,
array<double>^ previousState,
JulianDate currentDate,
array<double>^ currentState,
PropagationEventTrigger trigger,
StepSizeInformation info
)
new :
exception : NumericalPropagationException *
previousTime : JulianDate *
previousState : float[] *
currentDate : JulianDate *
currentState : float[] *
trigger : PropagationEventTrigger *
info : StepSizeInformation -> ExceptionDuringPropagationEventArgs
Parameters
- exception
- Type: AGI.Foundation.Propagators.NumericalPropagationException
The exception that occurred, wrapped in a NumericalPropagationException. - previousTime
- Type: AGI.Foundation.Time.JulianDate
The time at the beginning of the current step. - previousState
- Type:System.Double[]
The raw state at the beginning of the current step. - currentDate
- Type: AGI.Foundation.Time.JulianDate
The time at the end of the current step when the event is fired. - currentState
- Type:System.Double[]
The raw state at the end of the current step when the event is fired. - trigger
- Type: AGI.Foundation.Propagators.PropagationEventTrigger
Indication of which method triggered this event. - info
- Type: AGI.Foundation.NumericalMethods.StepSizeInformation
Information about the last step taken by the integrator.
See Also