StandardTransitionProfileSegmentGetConstrainedInclinedSegment Method |
Get a segment without specifying the intermediate flight path angle.
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 GetConstrainedInclinedSegment(
double h0,
double hf,
double a0,
double af,
double v0,
double vf,
double g0,
double gf,
double sf,
TerrainProvider heightReference
)
Public Shared Function GetConstrainedInclinedSegment (
h0 As Double,
hf As Double,
a0 As Double,
af As Double,
v0 As Double,
vf As Double,
g0 As Double,
gf As Double,
sf As Double,
heightReference As TerrainProvider
) As StandardTransitionProfileSegment
public:
static StandardTransitionProfileSegment^ GetConstrainedInclinedSegment(
double h0,
double hf,
double a0,
double af,
double v0,
double vf,
double g0,
double gf,
double sf,
TerrainProvider^ heightReference
)
static member GetConstrainedInclinedSegment :
h0 : float *
hf : float *
a0 : float *
af : float *
v0 : float *
vf : float *
g0 : float *
gf : float *
sf : float *
heightReference : TerrainProvider -> StandardTransitionProfileSegment
Parameters
- h0
- Type: SystemDouble
The initial height, in meters. - hf
- Type: SystemDouble
The final height, in meters. - a0
- Type: SystemDouble
The initial pitch acceleration, in meters per second squared. - af
- Type: SystemDouble
The final pitch acceleration, in meters per second squared - v0
- Type: SystemDouble
The initial total speed, in meters per second. - vf
- Type: SystemDouble
The final total speed, in meters per second. - g0
- Type: SystemDouble
The initial flight path angle, in radians. - gf
- Type: SystemDouble
The final flight path angle, in radians. - sf
- Type: SystemDouble
The total arc length along the surface, in meters. - heightReference
- Type: AGI.Foundation.TerrainTerrainProvider
The reference surface above which to define the height.
Return Value
Type:
StandardTransitionProfileSegmentThe inclined segment or null if the profile is infeasible.
See Also