Click or drag to resize

StandardTransitionProfileSegment.GetSegmentWithoutFinalConditions Method (Double, Double, Double, Double, Double, Double, Double, TerrainProvider, ProfileDynamics)

Creates an inclined profile segment with an incline at a given flight path angle. The final height and final speed are unspecified. The intermediate incline angle is determined such that the intermediate rate of change of height is at or below the specified heightRate.

Namespace:  AGI.Foundation.RouteDesign.Advanced
Assembly:  AGI.Foundation.RouteDesign (in AGI.Foundation.RouteDesign.dll) Version: 24.3.420.0 (24.3.420.0)
Syntax
public static StandardTransitionProfileSegment GetSegmentWithoutFinalConditions(
	double startHeight,
	double initialAngle,
	double finalAngle,
	double heightRate,
	double initialHorizontalSpeed,
	double targetFinalHorizontalSpeed,
	double surfaceDistance,
	TerrainProvider heightReference,
	ProfileDynamics dynamics
)

Parameters

startHeight
Type: System.Double
The initial height, in meters.
initialAngle
Type: System.Double
The initial flight path angle, in radians.
finalAngle
Type: System.Double
The final flight path angle, in radians.
heightRate
Type: System.Double
The intermediate rate of change of the height, in meters per second.
initialHorizontalSpeed
Type: System.Double
The initial horizontal velocity, in meters per second.
targetFinalHorizontalSpeed
Type: System.Double
The target final horizontal velocity, in meters per second. This determines whether to accelerate or decelerate during the segment.
surfaceDistance
Type: System.Double
The total horizontal distance along the surface, in meters.
heightReference
Type: AGI.Foundation.Terrain.TerrainProvider
The reference surface above which to define the height.
dynamics
Type: AGI.Foundation.RouteDesign.ProfileDynamics
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 with the specified characteristics.
See Also