24#ifndef DUMUX_BINARY_COEFF_AIR_XYLENE_HH
25#define DUMUX_BINARY_COEFF_AIR_XYLENE_HH
31namespace BinaryCoeff {
44 template <
class Scalar>
46 { DUNE_THROW(Dune::NotImplemented,
47 "Henry coefficient of air in xylene");
58 template <
class Scalar>
74 const Scalar M_x = 1e3*Xylene::molarMass();
75 const Scalar M_a = 1e3*Air::molarMass();
76 const Scalar Tb_x = 412.0;
77 const Scalar sigma_a = 3.711;
78 const Scalar T_scal_a = 78.6;
79 const Scalar V_B_x = 140.4;
80 const Scalar sigma_x = 1.18*pow(V_B_x, 0.333);
81 const Scalar sigma_ax = 0.5*(sigma_a + sigma_x);
82 const Scalar T_scal_x = 1.15*Tb_x;
83 const Scalar T_scal_ax = sqrt(T_scal_a*T_scal_x);
86 T_star = max(T_star, 1e-5);
88 const Scalar Omega = 1.06036/pow(T_star, 0.1561) + 0.193/exp(T_star*0.47635)
89 + 1.03587/exp(T_star*1.52996) + 1.76474/exp(T_star*3.89411);
90 const Scalar B_ = 0.00217 - 0.0005*sqrt(1.0/M_a + 1.0/M_x);
91 const Scalar Mr = (M_a + M_x)/(M_a*M_x);
92 const Scalar D_ax = (B_*pow(
temperature,1.5)*sqrt(Mr))
93 /(1e-5*
pressure*pow(sigma_ax, 2.0)*Omega);
105 template <
class Scalar>
A simple class for the air fluid properties.
make the local view function available whenever we use the grid geometry
Definition: adapt.hh:29
std::string temperature() noexcept
I/O name of temperature for equilibrium models.
Definition: name.hh:51
std::string pressure(int phaseIdx) noexcept
I/O name of pressure for multiphase systems.
Definition: name.hh:34
Binary coefficients for air and xylene.
Definition: air_xylene.hh:38
static Scalar henry(Scalar temperature)
Henry coefficient for mesitylene in air.
Definition: air_xylene.hh:45
static Scalar gasDiffCoeff(Scalar temperature, Scalar pressure)
Binary diffusion coefficient for air and xylene. method according to Wilke and Lee see W....
Definition: air_xylene.hh:59
static Scalar liquidDiffCoeff(Scalar temperature, Scalar pressure)
Diffusion coefficient for air and xylene in liquid water.
Definition: air_xylene.hh:106
A class for the air fluid properties.
Definition: air.hh:46
Properties of xylene.
Definition: xylene.hh:49