24#ifndef DUMUX_BINARY_COEFF_H2O_AIR_HH
25#define DUMUX_BINARY_COEFF_H2O_AIR_HH
47 template <
class Scalar>
48 static Scalar
henry(Scalar temperature)
51 Scalar r = (0.8942+1.47*exp(-0.04394*(temperature-273.15)))*1.E-10;
67 template <
class Scalar>
70 const Scalar Theta=1.8;
71 const Scalar Daw=2.13e-5;
72 const Scalar pg0=1.e5;
73 const Scalar T0=273.15;
77 Dgaw=Daw*(pg0/pressure)*pow((temperature/T0),Theta);
100 template <
class Scalar>
103 const Scalar Texp = 273.15 + 25;
104 const Scalar Dexp = 2.01e-9;
105 return Dexp * temperature/Texp;
Definition air_mesitylene.hh:31
Binary coefficients for water and air.
Definition h2o_air.hh:37
static Scalar henry(Scalar temperature)
Henry coefficient for air in liquid water.
Definition h2o_air.hh:48
static Scalar gasDiffCoeff(Scalar temperature, Scalar pressure)
Binary diffusion coefficient for molecular water and air.
Definition h2o_air.hh:68
static Scalar liquidDiffCoeff(Scalar temperature, Scalar pressure)
Diffusion coefficient for molecular nitrogen in liquid water.
Definition h2o_air.hh:101