24#ifndef DUMUX_BINARY_COEFF_H2O_MESITYLENE_HH
25#define DUMUX_BINARY_COEFF_H2O_MESITYLENE_HH
29#include <dune/common/math.hh>
49 template <
class Scalar>
53 constexpr Scalar sanderH = 1.7e-1;
55 Scalar dumuxH = sanderH / 101.325;
65 template <
class Scalar>
79 constexpr Scalar M_m = 1e3*Mesitylene::molarMass();
80 constexpr Scalar M_w = 1e3*H2O::molarMass();
81 constexpr Scalar Tb_m = 437.9;
82 constexpr Scalar Tb_w = 373.15;
83 constexpr Scalar V_B_w = 18.0;
86 const Scalar sigma_w = 1.18*cbrt(V_B_w);
87 constexpr Scalar T_scal_w = 1.15*Tb_w;
88 constexpr Scalar V_B_m = 162.6;
89 const Scalar sigma_m = 1.18*cbrt(V_B_m);
90 const Scalar sigma_wm = 0.5*(sigma_w + sigma_m);
91 constexpr Scalar T_scal_m = 1.15*Tb_m;
92 const Scalar T_scal_wm = sqrt(T_scal_w*T_scal_m);
96 T_star = max(T_star, 1e-5);
98 const Scalar Omega = 1.06036/pow(T_star,0.1561) + 0.193/exp(T_star*0.47635)
99 + 1.03587/exp(T_star*1.52996) + 1.76474/exp(T_star*3.89411);
100 const Scalar B_ = 0.00217 - 0.0005*sqrt(1.0/M_w + 1.0/M_m);
101 const Scalar Mr = (M_w + M_m)/(M_w*M_m);
102 const Scalar D_wm = (B_*pow(
temperature, 1.6)*sqrt(Mr))
103 /(1e-5*
pressure*power(sigma_wm, 2)*Omega);
115 template <
class Scalar>
Properties of mesitylene.
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 mesitylene.
Definition: h2o_mesitylene.hh:41
static Scalar liquidDiffCoeff(Scalar temperature, Scalar pressure)
Diffusion coefficient for mesitylene in liquid water.
Definition: h2o_mesitylene.hh:116
static Scalar henry(Scalar temperature)
Henry coefficient for mesitylene in liquid water.
Definition: h2o_mesitylene.hh:50
static Scalar gasDiffCoeff(Scalar temperature, Scalar pressure)
Binary diffusion coefficient for molecular water and mesitylene.
Definition: h2o_mesitylene.hh:66
Material properties of pure water .
Definition: h2o.hh:60
mesitylene
Definition: mesitylene.hh:48