Click or drag to resize

StandardTransitionProfileSegment.GetStraightSegmentWithPrescribedAcceleration Method

Creates a straight line from the initial height to the final height without any pitching maneuvers but also applies the acceleration to determine the final speed.

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 GetStraightSegmentWithPrescribedAcceleration(
	double startHeight,
	double stopHeight,
	double initialHorizontalSpeed,
	double acceleration,
	double surfaceDistance,
	TerrainProvider heightReference
)

Parameters

startHeight
Type: System.Double
The initial height, in meters.
stopHeight
Type: System.Double
The final height, in meters.
initialHorizontalSpeed
Type: System.Double
The initial horizontal velocity, in meters per second.
acceleration
Type: System.Double
The acceleration along the flight path angle, in meters per second squared.
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.

Return Value

Type: StandardTransitionProfileSegment
If the segment is infeasible, this returns null. Otherwise, it returns the incline matching the given conditions.
See Also