system.thermo.if97.prandtl
Calculates Prandtl number.
Syntax
system.thermo.if97.prandtl(h, s) # Enthalpy and Entropy
system.thermo.if97.prandtl(p, h) # Pressure and Enthalpy
system.thermo.if97.prandtl(p, s) # Pressure and Entropy
system.thermo.if97.prandtl(p, t) # Pressure and Temperature
info
This function must be called with named parameters.
Parameters
| Type | Parameter | Description |
|---|---|---|
| Double | h | Specific Enthalpy (J/kg) |
| Double | p | Absolute Pressure (Pa) |
| Double | s | Specific Entropy (J/(kg·K)) |
| Double | t | Temperature (K) |
Returns
Double - Prandtl Number
The ratio of momentum diffusivity to thermal diffusivity.
Scope
Gateway, Designer, Client, Perspective Session
Example
Pressure and Temperature
p = 101325
t = 373.15
result = system.thermo.if97.prandtl(p=p, t=t)
print result
Result
1.02487092858