TakeoffProcedure Constructor (Cartographic, Double, Double, ProfileDynamics, Double, Double, Double, Double, Double) |
Create a takeoff procedure based on the given parameters with respect to the surface of the
Earth. If
MeanSeaLevel
is available on the definition of Earth in the
CalculationContext,
the specified heights will be with respect to sea level.
Namespace:
AGI.Foundation.RouteDesign
Assembly:
AGI.Foundation.RouteDesign (in AGI.Foundation.RouteDesign.dll) Version: 24.2.419.0 (24.2.419.0)
Syntax public TakeoffProcedure(
Cartographic runwayStartPosition,
double runwayHeading,
double rollDistance,
ProfileDynamics takeoffDynamics,
double startHeightAboveRunway,
double stopHeightAboveRunway,
double startSpeed,
double takeoffSpeed,
double turningRadius
)
Public Sub New (
runwayStartPosition As Cartographic,
runwayHeading As Double,
rollDistance As Double,
takeoffDynamics As ProfileDynamics,
startHeightAboveRunway As Double,
stopHeightAboveRunway As Double,
startSpeed As Double,
takeoffSpeed As Double,
turningRadius As Double
)
public:
TakeoffProcedure(
Cartographic runwayStartPosition,
double runwayHeading,
double rollDistance,
ProfileDynamics^ takeoffDynamics,
double startHeightAboveRunway,
double stopHeightAboveRunway,
double startSpeed,
double takeoffSpeed,
double turningRadius
)
new :
runwayStartPosition : Cartographic *
runwayHeading : float *
rollDistance : float *
takeoffDynamics : ProfileDynamics *
startHeightAboveRunway : float *
stopHeightAboveRunway : float *
startSpeed : float *
takeoffSpeed : float *
turningRadius : float -> TakeoffProcedure
Parameters
- runwayStartPosition
- Type: AGI.Foundation.CoordinatesCartographic
The start position of the runway, including the height of the runway above the
terrain surface. - runwayHeading
- Type: SystemDouble
The heading of the runway with respect to north, in radians. - rollDistance
- Type: SystemDouble
The distance along the runway that the platform needs to reach the final speed, in meters. - takeoffDynamics
- Type: AGI.Foundation.RouteDesignProfileDynamics
The platform dynamics specifying the push over and pitch up accelerations as well as the
climb angle based on the vertical ascent and horizontal takeoff speed. - startHeightAboveRunway
- Type: SystemDouble
The height above the runway at which to takeoff, in meters. - stopHeightAboveRunway
- Type: SystemDouble
The height above the runway at which to level off, in meters. - startSpeed
- Type: SystemDouble
The initial speed at which the platform moves along the runway before accelerating to
the takeoffSpeed, in meters per second. - takeoffSpeed
- Type: SystemDouble
The speed at the end of the rollDistance at which the platform takes off,
in meters per second. - turningRadius
- Type: SystemDouble
The horizontal radius at which to turn toward the next procedure, in meters.
See Also