tempernorm#
- ens_calculator.tempernorm(source_parts: List[ENS_PART] | List[int] | List[str] | ENS_PART | int | str, density: ENS_VAR | str | int | float, total_energy: ENS_VAR | str | int, velocity: ENS_VAR | str | int, ratio: ENS_VAR | str | int | float, free_density: ENS_VAR | str | int | float, free_speed_of_sound: ENS_VAR | str | int | float, gas: ENS_VAR | str | int | float, output_varname: str | None = None) ENS_VAR #
Computes a scalar variable defined as the normalized temperature = temperature/freestream temperature. Function of density, total energy, velocity, ratio of specific heats, gas constant and freestream values
- Args:
- source_parts:
Any part(s) or a part number.
- density:
A density variable or a value.
- total_energy:
A total energy variable.
- velocity:
A velocity variable.
- ratio:
A ‘ratio of specific heats’ variable or a value.
- free_density:
A ‘freestream density’ variable or a value(>=1.0).
- free_speed_of_sound:
A ‘freestream speed of sound’ variable or a value(>=1.0).
- gas:
A gas constant variable or value(>0.0).
- output_varname:
The name of the newly created variable
- Returns:
New ENS_VAR instance or None
- Note:
See TemperNorm() for function details.