Categories: Aerodynamics, Drag, Empirical
State: ✔️
SkinFriction
module adds skin friction drag to an Aeromap calculated without it. The aerodynamic coefficients calculated with pyTornado or Euler methods (SU2) do not depend on atmospheric parameters and do not include the skin friction drag. It means that for different altitudes as input you will get the same aerodynamic coefficients. Furthermore, the drag calculated with these methods is generally underestimated. You can use this module to estimate the skin friction drag from empirical formula and add it to the selected aeroMap.
SkinFriction
only takes as input a CPACS file. It needs the wetted surface area of the aircraft, to get it you must have run SU2Run
before this module, the result will be saved in the CPACS file.
The formula used to estimate the skin friction drag is from the paper by Gerard W. H. van Es [1]
With the Wetted aera Swet the span b, the aircraft velocity V and kinematic viscosity ν we can calculate the Reynolds number Re:
We can now compute the skin friction coefficient from the linear regression found in the paper:
And finally, we can calculate the zero-lift drag coefficient with the following formula:
Then, this coefficient is added to the drag coefficient CD in the already calculated aeromap.
The output of SkinFriction
outputs a CPACS files with a new or updated aeromap.
SkinFriction
is a native CEASIOMpy module, hence it is available and installed by default. To run it, you just have to be sure that you are in the CEASIOMpy Conda environment.
SkinFriction
module only uses empirical formula to approximate the skin friction drag, it does not take into account the exact form of the aircraft or the surface roughness.
The equation used above should be valid in the following ranges of values:
- Re (based on Swet): 35-390·106 [-]
- Swet: 120-3400 [m2]
- Sref: 20-580 [m2]
- b: 10–68 [m]
[1] Gerard W. H. van Es, Rapid Estimation of the Zero-Lift Drag Coefficient of Transport Aircraft, Journal of Aircraft, Volume 39, Number 4, https://arc.aiaa.org/doi/10.2514/2.2997