Click or drag to resize

ExceptionDuringPropagationEventArgs Constructor

Initializes a new instance.

Namespace:  AGI.Foundation.Propagators
Assembly:  AGI.Foundation.Models (in AGI.Foundation.Models.dll) Version: 24.1.418.0 (24.1.418.0)
Syntax
public ExceptionDuringPropagationEventArgs(
	NumericalPropagationException exception,
	JulianDate previousTime,
	double[] previousState,
	JulianDate currentDate,
	double[] currentState,
	PropagationEventTrigger trigger,
	StepSizeInformation info
)

Parameters

exception
Type: AGI.Foundation.PropagatorsNumericalPropagationException
The exception that occurred, wrapped in a NumericalPropagationException.
previousTime
Type: AGI.Foundation.TimeJulianDate
The time at the beginning of the current step.
previousState
Type: SystemDouble
The raw state at the beginning of the current step.
currentDate
Type: AGI.Foundation.TimeJulianDate
The time at the end of the current step when the event is fired.
currentState
Type: SystemDouble
The raw state at the end of the current step when the event is fired.
trigger
Type: AGI.Foundation.PropagatorsPropagationEventTrigger
Indication of which method triggered this event.
info
Type: AGI.Foundation.NumericalMethodsStepSizeInformation
Information about the last step taken by the integrator.
See Also