system.thermo.if97.isobaricHeatCapacity
Calculates specific isobaric heat capacity.
Syntax
system.thermo.if97.isobaricHeatCapacity(h, s) # Enthalpy and Entropy
system.thermo.if97.isobaricHeatCapacity(p, h) # Pressure and Enthalpy
system.thermo.if97.isobaricHeatCapacity(p, s) # Pressure and Entropy
system.thermo.if97.isobaricHeatCapacity(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 - Specific Isobaric Heat Capacity (J/(kg·K))
The amount of heat required to raise the temperature of a unit mass of a substance by one degree at constant pressure.
Scope
Gateway, Designer, Client, Perspective Session
Example
Pressure and Temperature
p = 101325
t = 373.15
result = system.thermo.if97.isobaricHeatCapacity(p=p, t=t)
print result
Result
2077.2686738