Learn R Programming

IAPWS95 (version 1.2.4)

satTabTp: 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)

Value

A Table of Saturation Temperatures, function of p

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.

Examples

Run this code
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

Run the code above in your browser using DataLab