Skip to main content
Version: 8.1

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

TypeParameterDescription
DoublepAbsolute Pressure (Pa)
DoublehSpecific Enthalpy (J/kg)
DoublesSpecific 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