SimpleFixedWingForwardFlightAerodynamicsComputeDragCoefficient Method |
Computes the drag coefficient from the provided parameters.
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 ComputeDragCoefficient(
double dragCoefficientAtMinimum,
double liftCoefficient,
double oswaldEfficiencyFactor,
double aspectRatio,
double dragIndex
)
Public Shared Function ComputeDragCoefficient (
dragCoefficientAtMinimum As Double,
liftCoefficient As Double,
oswaldEfficiencyFactor As Double,
aspectRatio As Double,
dragIndex As Double
) As Double
public:
static double ComputeDragCoefficient(
double dragCoefficientAtMinimum,
double liftCoefficient,
double oswaldEfficiencyFactor,
double aspectRatio,
double dragIndex
)
static member ComputeDragCoefficient :
dragCoefficientAtMinimum : float *
liftCoefficient : float *
oswaldEfficiencyFactor : float *
aspectRatio : float *
dragIndex : float -> float
Parameters
- dragCoefficientAtMinimum
- Type: SystemDouble
The minimum drag coefficient value. - liftCoefficient
- Type: SystemDouble
The coefficient of lift. - oswaldEfficiencyFactor
- Type: SystemDouble
The Oswald efficiency factor for the wing. - aspectRatio
- Type: SystemDouble
The aspect ratio of the wing. - dragIndex
- Type: SystemDouble
The drag index.
Return Value
Type:
DoubleThe coefficient of drag.
See Also