Skip to content

Latest commit

 

History

History
61 lines (33 loc) · 2.83 KB

README.md

File metadata and controls

61 lines (33 loc) · 2.83 KB

SkinFriction

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.

Inputs

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.

Analyses

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:

$Re = (S_{wet}/b) \cdot V / \nu$

We can now compute the skin friction coefficient from the linear regression found in the paper:

$C_{fe} = 0.00258 + 0.00102 \cdot exp(-6.28\cdot10^{-9} \cdot Re) + 0.00295 \cdot exp(-2.01 \cdot 10^{-8} \cdot Re)$

And finally, we can calculate the zero-lift drag coefficient with the following formula:

CD0

Then, this coefficient is added to the drag coefficient CD in the already calculated aeromap.

Outputs

The output of SkinFriction outputs a CPACS files with a new or updated aeromap.

Installation or requirements

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.

Limitations

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]

More information

References

[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