Click or drag to resize

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.1.418.0 (24.1.418.0)
Syntax
public static double ConvertTrueHeadingRateToTrueCourseRate(
	double horizontalGroundSpeed,
	double sineTrueCourse,
	double cosineTrueCourse,
	double horizontalAirspeed,
	double sineTrueHeading,
	double cosineTrueHeading,
	Cartesian windRate,
	double horizontalGroundSpeedRate,
	double trueHeadingRate
)

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: Double
The rate of change of the true course.
See Also