satTabTp {IAPWS95} | R Documentation |
Table of Saturation Temperatures, Function of Pressure
Description
The function satTabTp(p1, p2, dp)
returns a table of
Saturation Temperatures [K] for a Pressure interval, p1:p2 [MPa].
Usage
satTabTp(p1, p2, dp)
Arguments
p1 |
First Pressure value [MPa] |
p2 |
Final Pressure [MPa] |
dp |
Pressure increment [MPa] |
Details
This function calls a Fortran DLL that solves the Helmholtz Energy Equation. in accordance with the Revised Release on the IAPWS Formulation 1995 for the Thermodynamic Properties of Ordinary Water Substance for General and Scientific Use (June 2014) developed by the International Association for the Properties of Water and Steam, http://www.iapws.org/relguide/IAPWS-95.html. It is valid from the triple point to the pressure of 1000 MPa and temperature of 1273.
Value
A Table of Saturation Temperatures, function of p
Examples
p1 <- 1.0
p2 <- 10.
dp <- 0.5
Tabp <- satTabTp(p1, p2, dp)
Tabp
p1 <- 0.1
p2 <- 10.
dp <- 0.5
Tabp <- satTabTp(p1, p2, dp)
Tabp
[Package IAPWS95 version 1.2.4 Index]