PrescribedAccelerationTransitionProfile Constructor (Double, Double, Double, ProfileSpeed, Double, Double, Double, Double, TerrainProvider) |
Create a new instance based on the given parameters to completely define the incline.
By default, the height and speed parameters will be overridden by surrounding profiles unless the
appropriate 'allow' properties are set to fix their values.
Namespace:
AGI.Foundation.RouteDesign
Assembly:
AGI.Foundation.RouteDesign (in AGI.Foundation.RouteDesign.dll) Version: 24.2.419.0 (24.2.419.0)
Syntax public PrescribedAccelerationTransitionProfile(
double thrustAcceleration,
double pitchUpAcceleration,
double pushOverAcceleration,
ProfileSpeed initialSpeed,
double initialHeight,
double initialHeightRate,
double finalHeight,
double finalHeightRate,
TerrainProvider heightReference
)
Public Sub New (
thrustAcceleration As Double,
pitchUpAcceleration As Double,
pushOverAcceleration As Double,
initialSpeed As ProfileSpeed,
initialHeight As Double,
initialHeightRate As Double,
finalHeight As Double,
finalHeightRate As Double,
heightReference As TerrainProvider
)
public:
PrescribedAccelerationTransitionProfile(
double thrustAcceleration,
double pitchUpAcceleration,
double pushOverAcceleration,
ProfileSpeed^ initialSpeed,
double initialHeight,
double initialHeightRate,
double finalHeight,
double finalHeightRate,
TerrainProvider^ heightReference
)
new :
thrustAcceleration : float *
pitchUpAcceleration : float *
pushOverAcceleration : float *
initialSpeed : ProfileSpeed *
initialHeight : float *
initialHeightRate : float *
finalHeight : float *
finalHeightRate : float *
heightReference : TerrainProvider -> PrescribedAccelerationTransitionProfile
Parameters
- thrustAcceleration
- Type: SystemDouble
The prescribed acceleration along the inclined flight path, in meters per second squared. - pitchUpAcceleration
- Type: SystemDouble
The acceleration used to pitch up when climbing, in meters per seconds squared. - pushOverAcceleration
- Type: SystemDouble
The acceleration used to pitch down when leveling out, in meters per seconds squared. - initialSpeed
- Type: AGI.Foundation.RouteDesignProfileSpeed
The initial speed at the start of the profile before any acceleration, in meters. - initialHeight
- Type: SystemDouble
The fixed initial height of the incline with respect to the surface, in meters. - initialHeightRate
- Type: SystemDouble
The initial rate of climb (or descent), in meters per second. - finalHeight
- Type: SystemDouble
The fixed final height of the incline with respect to the surface, in meters. - finalHeightRate
- Type: SystemDouble
The final rate of climb (or descent), in meters per second. - heightReference
- Type: AGI.Foundation.TerrainTerrainProvider
The reference surface above which to define the incline.
See Also