StandardTransitionProfileSegmentGetSegmentAtAngleWithoutInitialHeight Method  | 
 
            Creates an inclined profile segment with an incline at a given flight path angle.
            The initial height is unspecified.
            
 
    Namespace: 
   AGI.Foundation.RouteDesign.Advanced
    Assembly:
   AGI.Foundation.RouteDesign (in AGI.Foundation.RouteDesign.dll) Version: 25.1.421.0 (25.1.421.0)
Syntaxpublic static StandardTransitionProfileSegment GetSegmentAtAngleWithoutInitialHeight(
	double finalHeight,
	double initialAngle,
	double finalAngle,
	double inclineAngle,
	double initialHorizontalSpeed,
	double finalHorizontalSpeed,
	double surfaceDistance,
	TerrainProvider heightReference,
	ProfileDynamics dynamics
)
Public Shared Function GetSegmentAtAngleWithoutInitialHeight ( 
	finalHeight As Double,
	initialAngle As Double,
	finalAngle As Double,
	inclineAngle As Double,
	initialHorizontalSpeed As Double,
	finalHorizontalSpeed As Double,
	surfaceDistance As Double,
	heightReference As TerrainProvider,
	dynamics As ProfileDynamics
) As StandardTransitionProfileSegment
public:
static StandardTransitionProfileSegment^ GetSegmentAtAngleWithoutInitialHeight(
	double finalHeight, 
	double initialAngle, 
	double finalAngle, 
	double inclineAngle, 
	double initialHorizontalSpeed, 
	double finalHorizontalSpeed, 
	double surfaceDistance, 
	TerrainProvider^ heightReference, 
	ProfileDynamics^ dynamics
)
static member GetSegmentAtAngleWithoutInitialHeight : 
        finalHeight : float * 
        initialAngle : float * 
        finalAngle : float * 
        inclineAngle : float * 
        initialHorizontalSpeed : float * 
        finalHorizontalSpeed : float * 
        surfaceDistance : float * 
        heightReference : TerrainProvider * 
        dynamics : ProfileDynamics -> StandardTransitionProfileSegment 
Parameters
- finalHeight
 - 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. - surfaceDistance
 - Type: SystemDouble
The total horizontal distance along the surface, in meters. - 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 
.  
            Otherwise, it returns the incline at the specified flight path angle.
            
Exceptions
See Also