system.thermo.if97.saturationTemperature
Calculates saturation temperature.
Syntax
system.thermo.if97.saturationTemperature(p) # Pressure
system.thermo.if97.saturationTemperature(h, s) # Enthalpy and Entropy
info
This function must be called with named parameters.
Parameters
Type | Parameter | Description |
---|---|---|
Double | p | Absolute Pressure (Pa) |
Double | h | Specific Enthalpy (J/kg) |
Double | s | Specific Entropy (J/(kg·K)) |
Returns
Double - Saturation Temperature (K)
The temperature at which a substance transitions between liquid and vapor phases at the given pressure or conditions.
Scope
Gateway, Designer, Client, Perspective Session
Example
Pressure
p = 101325
result = system.thermo.if97.saturationTemperature(p=p)
print result
Result
373.1243