24#ifndef DUMUX_BINARY_COEFF_H2O_XYLENE_HH
25#define DUMUX_BINARY_COEFF_H2O_XYLENE_HH
29#include <dune/common/math.hh>
51 template <
class Scalar>
55 constexpr Scalar sanderH = 1.5e-1;
57 Scalar dumuxH = sanderH / 101.325;
68 template <
class Scalar>
82 constexpr Scalar M_x = 1e3*Xylene::molarMass();
83 constexpr Scalar M_w = 1e3*H2O::molarMass();
84 constexpr Scalar Tb_x = 412.9;
85 constexpr Scalar Tb_w = 373.15;
86 constexpr Scalar V_B_w = 18.0;
87 const Scalar sigma_w = 1.18*pow(V_B_w, 0.333);
88 constexpr Scalar T_scal_w = 1.15*Tb_w;
89 constexpr Scalar V_B_x = 140.4;
90 const Scalar sigma_x = 1.18*pow(V_B_x, 0.333);
91 const Scalar sigma_wx = 0.5*(sigma_w + sigma_x);
92 constexpr Scalar T_scal_x = 1.15*Tb_x;
93 const Scalar T_scal_wx = sqrt(T_scal_w*T_scal_x);
97 T_star = max(T_star, 1e-5);
99 const Scalar Omega = 1.06036/pow(T_star, 0.1561) + 0.193/exp(T_star*0.47635)
100 + 1.03587/exp(T_star*1.52996) + 1.76474/exp(T_star*3.89411);
101 const Scalar B_ = 0.00217 - 0.0005*sqrt(1.0/M_w + 1.0/M_x);
102 const Scalar Mr = (M_w + M_x)/(M_w*M_x);
103 const Scalar D_wx = (B_*pow(
temperature,1.6)*sqrt(Mr))
104 /(1e-5*
pressure*power(sigma_wx, 2)*Omega);
116 template <
class Scalar>
Material properties of pure water .
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
Definition: air_mesitylene.hh:31
Binary coefficients for water and xylene.
Definition: h2o_xylene.hh:41
static Scalar liquidDiffCoeff(Scalar temperature, Scalar pressure)
Diffusion coefficient for xylene in liquid water.
Definition: h2o_xylene.hh:117
static Scalar henry(Scalar temperature)
Henry coefficient for xylene in liquid water.
Definition: h2o_xylene.hh:52
static Scalar gasDiffCoeff(Scalar temperature, Scalar pressure)
Binary diffusion coefficient for molecular water and xylene.
Definition: h2o_xylene.hh:69
Material properties of pure water .
Definition: h2o.hh:60
Properties of xylene.
Definition: xylene.hh:49