ManeuverConvertMovingAtmosphereRatesToStaticAtmosphereRates Method |
Converts the rates with respect to the moving atmosphere to rates with respect to the static atmosphere.
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 AzimuthHorizontalVertical ConvertMovingAtmosphereRatesToStaticAtmosphereRates(
double verticalGroundSpeed,
double horizontalGroundSpeed,
double sineTrueCourse,
double cosineTrueCourse,
double verticalAirspeed,
double horizontalAirspeed,
double sineTrueHeading,
double cosineTrueHeading,
Cartesian windRate,
AzimuthHorizontalVertical derivatives
)
Public Shared Function ConvertMovingAtmosphereRatesToStaticAtmosphereRates (
verticalGroundSpeed As Double,
horizontalGroundSpeed As Double,
sineTrueCourse As Double,
cosineTrueCourse As Double,
verticalAirspeed As Double,
horizontalAirspeed As Double,
sineTrueHeading As Double,
cosineTrueHeading As Double,
windRate As Cartesian,
derivatives As AzimuthHorizontalVertical
) As AzimuthHorizontalVertical
public:
static AzimuthHorizontalVertical ConvertMovingAtmosphereRatesToStaticAtmosphereRates(
double verticalGroundSpeed,
double horizontalGroundSpeed,
double sineTrueCourse,
double cosineTrueCourse,
double verticalAirspeed,
double horizontalAirspeed,
double sineTrueHeading,
double cosineTrueHeading,
Cartesian windRate,
AzimuthHorizontalVertical derivatives
)
static member ConvertMovingAtmosphereRatesToStaticAtmosphereRates :
verticalGroundSpeed : float *
horizontalGroundSpeed : float *
sineTrueCourse : float *
cosineTrueCourse : float *
verticalAirspeed : float *
horizontalAirspeed : float *
sineTrueHeading : float *
cosineTrueHeading : float *
windRate : Cartesian *
derivatives : AzimuthHorizontalVertical -> AzimuthHorizontalVertical
Parameters
- verticalGroundSpeed
- Type: SystemDouble
The vertical component of the ground speed. - horizontalGroundSpeed
- Type: SystemDouble
The horizontal component of the ground speed. - sineTrueCourse
- Type: SystemDouble
The sine of the true course. - cosineTrueCourse
- Type: SystemDouble
The cosine of the true course. - verticalAirspeed
- Type: SystemDouble
The vertical component of the airspeed. - horizontalAirspeed
- Type: SystemDouble
The horizontal component of the 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. - derivatives
- Type: AGI.Foundation.CoordinatesAzimuthHorizontalVertical
The rates of change with respect to the moving atmosphere.
Return Value
Type:
AzimuthHorizontalVerticalThe rates with respect to the static atmosphere.
See Also