24#ifndef DUMUX_BINARY_COEFF_H2O_N2_HH
25#define DUMUX_BINARY_COEFF_H2O_N2_HH
47 template <
class Scalar>
48 static Scalar
henry(Scalar temperature)
50 const Scalar E = 2388.8777;
51 const Scalar F = -14.9593;
52 const Scalar G = 42.0179;
53 const Scalar H = -29.4396;
65 template <
class Scalar>
72 const Scalar SigmaNu[2] = { 13.1 , 18.5 };
74 const Scalar M[2] = { H2O::molarMass()*Scalar(1e3), N2::molarMass()*Scalar(1e3) };
96 template <
class Scalar>
99 const Scalar Texp = 273.15 + 25;
100 const Scalar Dexp = 2.01e-9;
102 return Dexp * temperature/Texp;
Various relations for molecular diffusion coefficients.
The IAPWS formulation of Henry coefficients in water.
Material properties of pure water .
Properties of pure molecular nitrogen .
Scalar fullerMethod(const Scalar *M, const Scalar *SigmaNu, const Scalar temperature, const Scalar pressure)
Estimate binary diffusion coefficients in gases according to the method by Fuller.
Definition fullermethod.hh:48
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:52
Definition air_mesitylene.hh:31
Binary coefficients for water and nitrogen.
Definition h2o_n2.hh:41
static Scalar liquidDiffCoeff(Scalar temperature, Scalar pressure)
Diffusion coefficient for molecular nitrogen in liquid water.
Definition h2o_n2.hh:97
static Scalar henry(Scalar temperature)
Henry coefficient for molecular nitrogen in liquid water.
Definition h2o_n2.hh:48
static Scalar gasDiffCoeff(Scalar temperature, Scalar pressure)
Binary diffusion coefficient for molecular water and nitrogen.
Definition h2o_n2.hh:66
Material properties of pure water .
Definition h2o.hh:61
Properties of pure molecular nitrogen .
Definition n2.hh:47