system.thermo.if97.kinematicViscosity
Calculates kinematic viscosity.
Syntax
system.thermo.if97.kinematicViscosity(h, s) # Enthalpy and Entropy
system.thermo.if97.kinematicViscosity(p, h) # Pressure and Enthalpy
system.thermo.if97.kinematicViscosity(p, s) # Pressure and Entropy
system.thermo.if97.kinematicViscosity(p, t) # Pressure and Temperature
system.thermo.if97.kinematicViscosity(rho, t) # Density 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) |
Double | rho | Density (kg/m³) |
Returns
Double - Kinematic Viscosity (m²/s)
The ratio of dynamic viscosity to density.
Scope
Gateway, Designer, Client, Perspective Session
Example
Pressure and Temperature
p = 101325
t = 373.15
result = system.thermo.if97.kinematicViscosity(p=p, t=t)
print result
Result
2.04697021313e-05