27#ifndef OPM_BINARY_COEFF_H2O_N2_HPP
28#define OPM_BINARY_COEFF_H2O_N2_HPP
37namespace BinaryCoeff {
51 template <
class Evaluation>
52 static Evaluation
henry(
const Evaluation& temperature)
54 const double E = 2388.8777;
55 const double F = -14.9593;
56 const double G = 42.0179;
57 const double H = -29.4396;
69 template <
class Evaluation>
70 static Evaluation
gasDiffCoeff(
const Evaluation& temperature,
const Evaluation& pressure)
76 const double SigmaNu[2] = { 13.1 , 18.5 };
101 template <
class Evaluation>
104 const double Texp = 273.15 + 25;
105 const double Dexp = 2.01e-9;
107 return Dexp * temperature/Texp;
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.
Properties of pure molecular nitrogen .
Binary coefficients for water and nitrogen.
Definition H2O_N2.hpp:44
static Evaluation liquidDiffCoeff(const Evaluation &temperature, const Evaluation &)
Diffusion coefficent for molecular nitrogen in liquid water.
Definition H2O_N2.hpp:102
static Evaluation gasDiffCoeff(const Evaluation &temperature, const Evaluation &pressure)
Binary diffusion coefficent for molecular water and nitrogen.
Definition H2O_N2.hpp:70
static Evaluation henry(const Evaluation &temperature)
Henry coefficent for molecular nitrogen in liquid water.
Definition H2O_N2.hpp:52
Material properties of pure water .
Definition H2O.hpp:65
static const Scalar molarMass()
The molar mass in of water.
Definition H2O.hpp:83
Properties of pure molecular nitrogen .
Definition N2.hpp:50
static Scalar molarMass()
The molar mass in of molecular nitrogen.
Definition N2.hpp:63
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