ManeuverConvertHorizontalAirspeedRateToHorizontalGroundSpeedRate Method |
Converts the rate of change of horizontal airspeed to rate of change of horizontal ground speed.
Namespace:
AGI.Foundation.AircraftPropagation
Assembly:
AGI.Foundation.AircraftPropagation (in AGI.Foundation.AircraftPropagation.dll) Version: 24.2.419.0 (24.2.419.0)
Syntax public static double ConvertHorizontalAirspeedRateToHorizontalGroundSpeedRate(
double horizontalGroundSpeed,
double sineTrueCourse,
double cosineTrueCourse,
double sineTrueHeading,
double cosineTrueHeading,
Cartesian windRate,
double horizontalAirspeedRate,
double trueCourseRate
)
Public Shared Function ConvertHorizontalAirspeedRateToHorizontalGroundSpeedRate (
horizontalGroundSpeed As Double,
sineTrueCourse As Double,
cosineTrueCourse As Double,
sineTrueHeading As Double,
cosineTrueHeading As Double,
windRate As Cartesian,
horizontalAirspeedRate As Double,
trueCourseRate As Double
) As Double
public:
static double ConvertHorizontalAirspeedRateToHorizontalGroundSpeedRate(
double horizontalGroundSpeed,
double sineTrueCourse,
double cosineTrueCourse,
double sineTrueHeading,
double cosineTrueHeading,
Cartesian windRate,
double horizontalAirspeedRate,
double trueCourseRate
)
static member ConvertHorizontalAirspeedRateToHorizontalGroundSpeedRate :
horizontalGroundSpeed : float *
sineTrueCourse : float *
cosineTrueCourse : float *
sineTrueHeading : float *
cosineTrueHeading : float *
windRate : Cartesian *
horizontalAirspeedRate : float *
trueCourseRate : float -> float
Parameters
- horizontalGroundSpeed
- Type: SystemDouble
The horizontal ground speed. - sineTrueCourse
- Type: SystemDouble
The sine of the true course. - cosineTrueCourse
- Type: SystemDouble
The cosine of the true course. - sineTrueHeading
- Type: SystemDouble
The sine of the true heading. - cosineTrueHeading
- Type: SystemDouble
The cosine of the true heading. - windRate
- Type: AGI.Foundation.CoordinatesCartesian
The rate of change of the wind in East-North-Up components. - horizontalAirspeedRate
- Type: SystemDouble
The rate of change of horizontal airspeed. - trueCourseRate
- Type: SystemDouble
The rate of change of the true course.
Return Value
Type:
DoubleThe rate of change of horizontal ground speed.
See Also