Click or drag to resize

InvalidFuelStateBehavior Enumeration

An enum that will let a maneuver segment know what to do if an maneuver can not be completed due to lack of fuel.

Namespace:  AGI.Foundation.SegmentPropagation
Assembly:  AGI.Foundation.SegmentPropagation (in AGI.Foundation.SegmentPropagation.dll) Version: 24.1.418.0 (24.1.418.0)
Syntax
public enum InvalidFuelStateBehavior
Members
  Member nameDescription
DoFullDeltaV Do the entire delta-V regardless of how much fuel is available. No warning will be given except for the RanOutOfFuel for this segment will be set to .
DoAsMuchAsPossible Do as much of the delta-V as possible given how much fuel is available. The RanOutOfFuel for this segment will be set to .
ThrowException Throw an exception if there is not enough fuel to perform the maneuver.
StopPropagating This will do as much of the maneuver as possible, and stop propagation. The RanOutOfFuel for this segment will be set to .
See Also