true_airspeed.py
- class openconcept.atmospherics.true_airspeed.TrueAirspeedComp(**kwargs)
Bases:
ExplicitComponent
Computes true airspeed from equivalent airspeed and density
- Inputs:
fltcond|rho (float) – Density (vector, kg/m3)
fltcond|Ueas (float) – Equivalent airspeed (vector, m/s)
- Outputs:
fltcond|Utrue (float) – True airspeed (vector, m/s)
- Options:
num_nodes (int) – Number of analysis points to run (sets vec length) (default 1)
- class openconcept.atmospherics.true_airspeed.EquivalentAirspeedComp(**kwargs)
Bases:
ExplicitComponent
Computes equivalent airspeed from true airspeed and density
- Inputs:
fltcond|rho (float) – Density (vector, kg/m3)
fltcond|Utrue (float) – True airspeed (vector, m/s)
- Outputs:
fltcond|Ueas (float) – Equivalent airspeed (vector, m/s)
- Options:
num_nodes (int) – Number of analysis points to run (sets vec length) (default 1)