28#ifndef OPM_BINARY_COEFF_H2O_CO2_HPP
29#define OPM_BINARY_COEFF_H2O_CO2_HPP
38namespace 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;
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 };
90 template <
class Scalar,
class Evaluation = Scalar>
92 {
throw std::runtime_error(
"Not implemented: Binary liquid diffusion coefficients of CO2 and CH4"); }
Estimate binary diffusion coefficents in gases according to the method by Fuller.
Evaluation fullerMethod(const Scalar *M, const Scalar *SigmaNu, const Evaluation &temperature, const Evaluation &pressure)
Estimate binary diffusion coefficents in gases according to the method by Fuller.
Definition FullerMethod.hpp:56
Material properties of pure water .
The IAPWS formulation of Henry coefficients in water.
A simplistic class representing the fluid properties.
Binary coefficients for water and CO2.
Definition H2O_CO2.hpp:45
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 Evaluation henry(const Evaluation &temperature)
Henry coefficent for molecular CO2 in liquid water.
Definition H2O_CO2.hpp:58
static Evaluation liquidDiffCoeff(const Evaluation &, const Evaluation &)
Diffusion coefficent [m^2/s] for molecular CO2 in liquid water.
Definition H2O_CO2.hpp:91
A class for the CO2 fluid properties.
Definition CO2.hpp:54
static Scalar molarMass()
The mass in [kg] of one mole of CO2.
Definition CO2.hpp:71
Material properties of pure water .
Definition H2O.hpp:65
static const Scalar molarMass()
The molar mass in of water.
Definition H2O.hpp:83
A simplistic class representing the fluid properties.
Definition SimpleCO2.hpp:50
This class implements a small container which holds the transmissibility mulitpliers for all the face...
Definition Exceptions.hpp:30
Evaluation henryIAPWS(Scalar E, Scalar F, Scalar G, Scalar H, const Evaluation &temperature)
The Henry constants in liquid water using the IAPWS 2004 formulation.
Definition HenryIapws.hpp:45