12#ifndef DUMUX_HENRY_IAPWS_HH
13#define DUMUX_HENRY_IAPWS_HH
39template <
class Scalar>
56 static const Scalar c[6] = {
57 1.99274064, 1.09965342, -0.510839303,
58 -1.75493479,-45.5170352, -6.7469445e5
60 static const Scalar d[6] = {
62 16/3.0, 43/3.0, 110/3.0
64 static const Scalar q = -0.023767;
68 for (
int i = 0; i < 6; ++i) {
69 f += c[i]*pow(tau, d[i]);
81 return exp(exponent)*H2O::vaporPressure(
temperature);
Material properties of pure water .
Definition: h2o.hh:49
Scalar henryIAPWS(Scalar E, Scalar F, Scalar G, Scalar H, Scalar temperature)
The Henry constants in liquid water using the IAPWS 2004 formulation.
Definition: henryiapws.hh:40
Material properties of pure water .
std::string temperature() noexcept
I/O name of temperature for equilibrium models.
Definition: name.hh:39