Click or drag to resize

StandardTransitionProfileSegmentGetSegmentAtAngle Method

Creates an inclined profile segment with an incline at a given flight path angle. The total distance is unspecified.

Namespace:  AGI.Foundation.RouteDesign.Advanced
Assembly:  AGI.Foundation.RouteDesign (in AGI.Foundation.RouteDesign.dll) Version: 24.1.418.0 (24.1.418.0)
Syntax
public static StandardTransitionProfileSegment GetSegmentAtAngle(
	double startHeight,
	double stopHeight,
	double initialAngle,
	double finalAngle,
	double inclineAngle,
	double initialHorizontalSpeed,
	double finalHorizontalSpeed,
	TerrainProvider heightReference,
	ProfileDynamics dynamics
)

Parameters

startHeight
Type: SystemDouble
The initial height, in meters.
stopHeight
Type: SystemDouble
The final height, in meters.
initialAngle
Type: SystemDouble
The initial flight path angle, in radians.
finalAngle
Type: SystemDouble
The final flight path angle, in radians.
inclineAngle
Type: SystemDouble
The flight path angle along the incline, in radians.
initialHorizontalSpeed
Type: SystemDouble
The initial horizontal velocity, in meters per second.
finalHorizontalSpeed
Type: SystemDouble
The final horizontal velocity, in meters per second.
heightReference
Type: AGI.Foundation.TerrainTerrainProvider
The reference surface above which to define the height.
dynamics
Type: AGI.Foundation.RouteDesignProfileDynamics
The dynamical properties along the profile, including the vertical acceleration values and the thrust acceleration and deceleration.

Return Value

Type: StandardTransitionProfileSegment
If the segment is infeasible, this returns null. Otherwise, it returns the incline at the specified flight path angle.
See Also