Click or drag to resize

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.1.418.0 (24.1.418.0)
Syntax
public static double ConvertHorizontalAirspeedRateToHorizontalGroundSpeedRate(
	double horizontalGroundSpeed,
	double sineTrueCourse,
	double cosineTrueCourse,
	double sineTrueHeading,
	double cosineTrueHeading,
	Cartesian windRate,
	double horizontalAirspeedRate,
	double trueCourseRate
)

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: Double
The rate of change of horizontal ground speed.
See Also