SimpleFixedWingForwardFlightAerodynamics.ComputeDragCoefficient Method |
Computes the drag coefficient from the provided parameters.
Namespace:
AGI.Foundation.AircraftPropagation
Assembly:
AGI.Foundation.AircraftPropagation (in AGI.Foundation.AircraftPropagation.dll) Version: 25.1.421.0 (25.1.421.0)
Syntaxpublic 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: System.Double
The minimum drag coefficient value. - liftCoefficient
- Type: System.Double
The coefficient of lift. - oswaldEfficiencyFactor
- Type: System.Double
The Oswald efficiency factor for the wing. - aspectRatio
- Type: System.Double
The aspect ratio of the wing. - dragIndex
- Type: System.Double
The drag index.
Return Value
Type:
DoubleThe coefficient of drag.
See Also