AtmosphericDragForceCalculateForce Method |
Namespace:
AGI.Foundation.Celestial
Assembly:
AGI.Foundation.OrbitPropagation (in AGI.Foundation.OrbitPropagation.dll) Version: 24.2.419.0 (24.2.419.0)
Syntax public static Cartesian CalculateForce(
Cartesian velocity,
double density,
double dragCoefficient,
double area
)
Public Shared Function CalculateForce (
velocity As Cartesian,
density As Double,
dragCoefficient As Double,
area As Double
) As Cartesian
public:
static Cartesian CalculateForce(
Cartesian velocity,
double density,
double dragCoefficient,
double area
)
static member CalculateForce :
velocity : Cartesian *
density : float *
dragCoefficient : float *
area : float -> Cartesian
Parameters
- velocity
- Type: AGI.Foundation.CoordinatesCartesian
The platform's velocity in the fixed frame. - density
- Type: SystemDouble
The atmospheric density at the platform's position. - dragCoefficient
- Type: SystemDouble
The platform's drag coefficient. - area
- Type: SystemDouble
The platform's cross-sectional area.
Return Value
Type:
CartesianThe drag force on the platform, in the fixed frame.
See Also