ManeuverConvertTrueHeadingRateToTrueCourseRate Method |
Converts the rate of change of true heading to the rate of change of true course.
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 ConvertTrueHeadingRateToTrueCourseRate(
double horizontalGroundSpeed,
double sineTrueCourse,
double cosineTrueCourse,
double horizontalAirspeed,
double sineTrueHeading,
double cosineTrueHeading,
Cartesian windRate,
double horizontalGroundSpeedRate,
double trueHeadingRate
)
Public Shared Function ConvertTrueHeadingRateToTrueCourseRate (
horizontalGroundSpeed As Double,
sineTrueCourse As Double,
cosineTrueCourse As Double,
horizontalAirspeed As Double,
sineTrueHeading As Double,
cosineTrueHeading As Double,
windRate As Cartesian,
horizontalGroundSpeedRate As Double,
trueHeadingRate As Double
) As Double
public:
static double ConvertTrueHeadingRateToTrueCourseRate(
double horizontalGroundSpeed,
double sineTrueCourse,
double cosineTrueCourse,
double horizontalAirspeed,
double sineTrueHeading,
double cosineTrueHeading,
Cartesian windRate,
double horizontalGroundSpeedRate,
double trueHeadingRate
)
static member ConvertTrueHeadingRateToTrueCourseRate :
horizontalGroundSpeed : float *
sineTrueCourse : float *
cosineTrueCourse : float *
horizontalAirspeed : float *
sineTrueHeading : float *
cosineTrueHeading : float *
windRate : Cartesian *
horizontalGroundSpeedRate : float *
trueHeadingRate : 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. - horizontalAirspeed
- Type: SystemDouble
The horizontal airspeed. - 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. - horizontalGroundSpeedRate
- Type: SystemDouble
The rate of change of the horizontal component of ground speed. - trueHeadingRate
- Type: SystemDouble
The rate of change of the true heading.
Return Value
Type:
DoubleThe rate of change of the true course.
See Also