28 #ifndef OPM_BINARY_COEFF_H2O_CO2_HPP
29 #define OPM_BINARY_COEFF_H2O_CO2_HPP
38 namespace BinaryCoeff {
57 template <
class Scalar,
class Evaluation = Scalar>
58 static Evaluation
henry(
const Evaluation& temperature)
60 const Scalar E = 1672.9376;
61 const Scalar F = 28.1751;
62 const Scalar G = -112.4619;
63 const Scalar H = 85.3807;
65 return henryIAPWS(E, F, G, H, temperature);
73 template <
class Scalar,
class Evaluation = Scalar>
74 static Evaluation
gasDiffCoeff(
const Evaluation& temperature,
const Evaluation& pressure)
80 const Scalar SigmaNu[2] = { 13.1 , 26.9 };
84 return fullerMethod(M, SigmaNu, temperature, pressure);
90 template <
class Scalar,
class Evaluation = Scalar>
92 { OPM_THROW(std::runtime_error,
"Not implemented: Binary liquid diffusion coefficients of CO2 and CH4"); }
Material properties of pure water .
Definition: H2O.hpp:61
static Evaluation henry(const Evaluation &temperature)
Henry coefficent for molecular CO2 in liquid water.
Definition: H2O_CO2.hpp:58
A simplistic class representing the fluid properties.
static Evaluation liquidDiffCoeff(const Evaluation &, const Evaluation &)
Diffusion coefficent [m^2/s] for molecular CO2 in liquid water.
Definition: H2O_CO2.hpp:91
Material properties of pure water .
A class for the CO2 fluid properties.
Definition: CO2.hpp:54
The IAPWS formulation of Henry coefficients in water.
static Scalar molarMass()
The mass in [kg] of one mole of CO2.
Definition: CO2.hpp:69
static Evaluation gasDiffCoeff(const Evaluation &temperature, const Evaluation &pressure)
Binary diffusion coefficent [m^2/s] for molecular water and CO2.
Definition: H2O_CO2.hpp:74
static const Scalar molarMass()
The molar mass in of water.
Definition: H2O.hpp:80
Binary coefficients for water and CO2.
Definition: H2O_CO2.hpp:44
A simplistic class representing the fluid properties.
Definition: SimpleCO2.hpp:50