Click or drag to resize

BallisticPropagatorConfigureFromDeltaV Method (Cartographic, Double, Boolean)

Populates the InitialVelocity and FinalTime values for a trajectory which begins with the specified velocity 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(
	Cartographic targetPosition,
	double deltaV,
	bool highArc
)

Parameters

targetPosition
Type: AGI.Foundation.CoordinatesCartographic
The target position, as a Cartographic 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