ProfileDynamics Constructor (Double, Double, Double, Double, Double, Double) |
Create a new instance based on the given properties.
Namespace:
AGI.Foundation.RouteDesign
Assembly:
AGI.Foundation.RouteDesign (in AGI.Foundation.RouteDesign.dll) Version: 24.2.419.0 (24.2.419.0)
Syntax public ProfileDynamics(
double ascentSpeed,
double pitchUpAcceleration,
double descentSpeed,
double pushOverAcceleration,
double thrustAcceleration,
double thrustDeceleration
)
Public Sub New (
ascentSpeed As Double,
pitchUpAcceleration As Double,
descentSpeed As Double,
pushOverAcceleration As Double,
thrustAcceleration As Double,
thrustDeceleration As Double
)
public:
ProfileDynamics(
double ascentSpeed,
double pitchUpAcceleration,
double descentSpeed,
double pushOverAcceleration,
double thrustAcceleration,
double thrustDeceleration
)
new :
ascentSpeed : float *
pitchUpAcceleration : float *
descentSpeed : float *
pushOverAcceleration : float *
thrustAcceleration : float *
thrustDeceleration : float -> ProfileDynamics
Parameters
- ascentSpeed
- Type: SystemDouble
The maximum vertical rate of ascent (positive), in meters per second. - pitchUpAcceleration
- Type: SystemDouble
The value for the vertical acceleration used to begin an ascent maneuver
(positive), in meters per second squared. - descentSpeed
- Type: SystemDouble
The maximum vertical rate of descent (positive), in meters per second. - pushOverAcceleration
- Type: SystemDouble
The value for the vertical acceleration used to begin a descent maneuver
(positive), in meters per second squared. - thrustAcceleration
- Type: SystemDouble
The maximum value of acceleration achievable parallel to the velocity vector
of the position (positive), in meters per second squared. - thrustDeceleration
- Type: SystemDouble
The maximum value of deceleration achievable anti-parallel to the velocity
vector of the position (positive), in meters per second squared.
See Also