iapws95_state | R Documentation |
Identify the physical state of water according to the IAPWS formulation 1995.
iapws95_state(p, t, rho)
p |
a numeric vector giving the pressure values in MPa. |
t |
a numeric vector giving the temperature values in K. |
rho |
a numeric vector giving the density values in kg/m^3. |
A valid pair of p
, rho
, t
is needed:
either (p, t)
or (rho, t)
.
A character vector giving the physical state.
One of "solid"
, "liquid"
, "gas"
,
"supercritical"
, "saturated"
or "undef"
.
Jonathan Debove
iapws95_state(p = c(.1, .1, 23), t = c(293.15, 373.15, 650)) iapws95_state(rho = c(1000, .1, 500, 500), t = c(293.15, 373.15, 650, 373.15))
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.