StandardTransitionProfileSegmentGetStraightSegment Method (Double, Double, Double, Double, Double, Double, TerrainProvider) |
Creates a straight line from the initial height to the final height without any pitching maneuvers,
with the additional constraint that the thrust acceleration along the slope can't exceed a specified value.
Namespace:
AGI.Foundation.RouteDesign.Advanced
Assembly:
AGI.Foundation.RouteDesign (in AGI.Foundation.RouteDesign.dll) Version: 24.2.419.0 (24.2.419.0)
Syntax public static StandardTransitionProfileSegment GetStraightSegment(
double startHeight,
double stopHeight,
double initialHorizontalSpeed,
double targetFinalHorizontalSpeed,
double maxThrustAcceleration,
double surfaceDistance,
TerrainProvider heightReference
)
Public Shared Function GetStraightSegment (
startHeight As Double,
stopHeight As Double,
initialHorizontalSpeed As Double,
targetFinalHorizontalSpeed As Double,
maxThrustAcceleration As Double,
surfaceDistance As Double,
heightReference As TerrainProvider
) As StandardTransitionProfileSegment
public:
static StandardTransitionProfileSegment^ GetStraightSegment(
double startHeight,
double stopHeight,
double initialHorizontalSpeed,
double targetFinalHorizontalSpeed,
double maxThrustAcceleration,
double surfaceDistance,
TerrainProvider^ heightReference
)
static member GetStraightSegment :
startHeight : float *
stopHeight : float *
initialHorizontalSpeed : float *
targetFinalHorizontalSpeed : float *
maxThrustAcceleration : float *
surfaceDistance : float *
heightReference : TerrainProvider -> StandardTransitionProfileSegment
Parameters
- startHeight
- Type: SystemDouble
The initial height, in meters. - stopHeight
- Type: SystemDouble
The final height, in meters. - initialHorizontalSpeed
- Type: SystemDouble
The initial horizontal speed, in meters per second. - targetFinalHorizontalSpeed
- Type: SystemDouble
The final horizontal speed, in meters per second. - maxThrustAcceleration
- Type: SystemDouble
The maximum thrust acceleration along the slope, in meters per second squared. - surfaceDistance
- Type: SystemDouble
The total distance along the surface, in meters. - heightReference
- Type: AGI.Foundation.TerrainTerrainProvider
The reference surface above which to define the height.
Return Value
Type:
StandardTransitionProfileSegmentThe requested straight inclined segment.
See Also