Click or drag to resize

BallisticPropagatorConfigureFromDeltaV Method (Cartesian, Double, Boolean)

Populates the InitialVelocity and FinalTime values for a trajectory which begins with the specified delta-V in the fixed frame. There will typically be two solutions with the same delta-V, highArc specifies whether to choose the trajectory that attains a higher or lower altitude. If the specified delta-V is too small for a valid trajectory then the minimum energy solution will be calculated InsufficientDeltaV will be returned.

Namespace:  AGI.Foundation.Propagators
Assembly:  AGI.Foundation.Models (in AGI.Foundation.Models.dll) Version: 24.1.418.0 (24.1.418.0)
Syntax
public BallisticPropagatorSolutionType ConfigureFromDeltaV(
	Cartesian targetPositionFixed,
	double deltaV,
	bool highArc
)

Parameters

targetPositionFixed
Type: AGI.Foundation.CoordinatesCartesian
The target position in the CentralBody's fixed frame.
deltaV
Type: SystemDouble
The impulsive delta-V to provide at launch, in meters per second.
highArc
Type: SystemBoolean
If the higher angle and altitude, longer time trajectory will be chosen. If the lower angle and altitude, shorter time trajectory will be chosen.

Return Value

Type: BallisticPropagatorSolutionType
An enumeration which reports whether the calculation successfully met the provided constraint, or contains an alternative solution or best guess.
See Also