24#ifndef DUMUX_BINARY_COEFF_H2O_XYLENE_HH
25#define DUMUX_BINARY_COEFF_H2O_XYLENE_HH
31namespace BinaryCoeff {
48 template <
class Scalar>
52 Scalar sanderH = 1.5e-1;
54 Scalar dumuxH = sanderH / 101.325;
65 template <
class Scalar>
81 const Scalar M_x = 1e3*Xylene::molarMass();
82 const Scalar M_w = 1e3*H2O::molarMass();
83 const Scalar Tb_x = 412.9;
84 const Scalar Tb_w = 373.15;
85 const Scalar V_B_w = 18.0;
86 const Scalar sigma_w = 1.18*pow(V_B_w, 0.333);
87 const Scalar T_scal_w = 1.15*Tb_w;
88 const Scalar V_B_x = 140.4;
89 const Scalar sigma_x = 1.18*pow(V_B_x, 0.333);
90 const Scalar sigma_wx = 0.5*(sigma_w + sigma_x);
91 const Scalar T_scal_x = 1.15*Tb_x;
92 const Scalar T_scal_wx = sqrt(T_scal_w*T_scal_x);
95 T_star = max(T_star, 1e-5);
97 const Scalar Omega = 1.06036/pow(T_star, 0.1561) + 0.193/exp(T_star*0.47635)
98 + 1.03587/exp(T_star*1.52996) + 1.76474/exp(T_star*3.89411);
99 const Scalar B_ = 0.00217 - 0.0005*sqrt(1.0/M_w + 1.0/M_x);
100 const Scalar Mr = (M_w + M_x)/(M_w*M_x);
101 const Scalar D_wx = (B_*pow(
temperature,1.6)*sqrt(Mr))
102 /(1e-5*
pressure*pow(sigma_wx, 2.0)*Omega);
114 template <
class Scalar>
Material properties of pure water .
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 water and xylene.
Definition: h2o_xylene.hh:38
static Scalar liquidDiffCoeff(Scalar temperature, Scalar pressure)
Diffusion coefficient for xylene in liquid water.
Definition: h2o_xylene.hh:115
static Scalar henry(Scalar temperature)
Henry coefficient for xylene in liquid water.
Definition: h2o_xylene.hh:49
static Scalar gasDiffCoeff(Scalar temperature, Scalar pressure)
Binary diffusion coefficient for molecular water and xylene.
Definition: h2o_xylene.hh:66
Material properties of pure water .
Definition: h2o.hh:61
Properties of xylene.
Definition: xylene.hh:49