Skip to main content
Version: 8.1

system.thermo.if97.specificEnthalpy

Calculates specific enthalpy.

Syntax

system.thermo.if97.specificEnthalpy(p, s) # Pressure and Entropy
system.thermo.if97.specificEnthalpy(p, t) # Pressure and Temperature
system.thermo.if97.specificEnthalpy(p, x) # Pressure and Vapor Fraction (Quality)
system.thermo.if97.specificEnthalpy(t, x) # Temperature and Vapor Fraction (Quality)
info

This function must be called with named parameters.

Parameters

TypeParameterDescription
DoublepAbsolute Pressure (Pa)
DoublesSpecific Entropy (J/(kg·K))
DoubletTemperature (K)
DoublexVapor Fraction (Quality) (0 to 1)

Returns

Double - Specific Enthalpy (J/kg)

The total energy per unit mass of a substance, including both internal energy and flow work.

Scope

Gateway, Designer, Client, Perspective Session

Example

Pressure and Temperature

p = 101325
t = 373.15
result = system.thermo.if97.specificEnthalpy(p=p, t=t)
print result
Result
2675584.85341