3.2-git
DUNE for Multi-{Phase, Component, Scale, Physics, ...} flow and transport in porous media
air_mesitylene.hh
Go to the documentation of this file.
1// -*- mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*-
2// vi: set et ts=4 sw=4 sts=4:
3/*****************************************************************************
4 * See the file COPYING for full copying permissions. *
5 * *
6 * This program is free software: you can redistribute it and/or modify *
7 * it under the terms of the GNU General Public License as published by *
8 * the Free Software Foundation, either version 3 of the License, or *
9 * (at your option) any later version. *
10 * *
11 * This program is distributed in the hope that it will be useful, *
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of *
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
14 * GNU General Public License for more details. *
15 * *
16 * You should have received a copy of the GNU General Public License *
17 * along with this program. If not, see <http://www.gnu.org/licenses/>. *
18 *****************************************************************************/
24#ifndef DUMUX_BINARY_COEFF_AIR_MESITYLENE_HH
25#define DUMUX_BINARY_COEFF_AIR_MESITYLENE_HH
26
29
30namespace Dumux {
31namespace BinaryCoeff {
32
38{
39public:
44 template <class Scalar>
45 static Scalar henry(Scalar temperature)
46 { DUNE_THROW(Dune::NotImplemented,
47 "Henry coefficient of air in mesitylene");
48 }
49
58 template <class Scalar>
59 static Scalar gasDiffCoeff(Scalar temperature, Scalar pressure)
60 {
63
64 using std::min;
65 using std::max;
66 temperature = max(temperature, 1e-9); // regularization
67 temperature = min(temperature, 500.0); // regularization
68 pressure = max(pressure, 0.0); // regularization
69 pressure = min(pressure, 1e8); // regularization
70
71 using std::pow;
72 using std::sqrt;
73 using std::exp;
74 const Scalar M_m = 1e3*Mesitylene::molarMass(); // [g/mol] molecular weight of mesitylene
75 const Scalar M_a = 1e3*Air::molarMass(); // [g/mol] molecular weight of air
76 const Scalar Tb_m = 437.9; // [K] boiling temperature of mesitylene
77 const Scalar sigma_a = 3.711; // charact. length of air
78 const Scalar T_scal_a = 78.6; // [K] (molec. energy of attraction/Boltzmann constant)
79 const Scalar V_B_m = 162.6; // [cm^3/mol] LeBas molal volume of mesitylene
80
81 using std::cbrt;
82 const Scalar sigma_m = 1.18*cbrt(V_B_m); // charact. length of mesitylene
83 const Scalar sigma_am = 0.5*(sigma_a + sigma_m);
84 const Scalar T_scal_m = 1.15*Tb_m;
85 const Scalar T_scal_am = sqrt(T_scal_a*T_scal_m);
86
87 Scalar T_star = temperature/T_scal_am;
88 T_star = max(T_star, 1e-5); // regularization
89
90 const Scalar Omega = 1.06036/pow(T_star, 0.1561) + 0.193/exp(T_star*0.47635)
91 + 1.03587/exp(T_star*1.52996) + 1.76474/exp(T_star*3.89411);
92 const Scalar B_ = 0.00217 - 0.0005*sqrt(1.0/M_a + 1.0/M_m);
93 const Scalar Mr = (M_a + M_m)/(M_a*M_m);
94 const Scalar D_am = (B_*sqrt(temperature*temperature*temperature*Mr))
95 /(1e-5*pressure*pow(sigma_am, 2) * Omega); // [cm^2/s]
96
97 return 1e-4*D_am; // [m^2/s]
98 }
99
107 template <class Scalar>
108 static Scalar liquidDiffCoeff(Scalar temperature, Scalar pressure)
109 {
110 return 1e-9;
111 }
112};
113
114} // end namespace BinaryCoeff
115} // end namespace Dumux
116
117#endif
A simple class for the air fluid properties.
Properties of mesitylene.
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 mesitylene.
Definition: air_mesitylene.hh:38
static Scalar liquidDiffCoeff(Scalar temperature, Scalar pressure)
Diffusion coefficient for air and mesitylene in liquid water.
Definition: air_mesitylene.hh:108
static Scalar gasDiffCoeff(Scalar temperature, Scalar pressure)
Binary diffusion coefficient for air and mesitylene. I used the method according to Wilke and Lee se...
Definition: air_mesitylene.hh:59
static Scalar henry(Scalar temperature)
Henry coefficient for mesitylene in air.
Definition: air_mesitylene.hh:45
A class for the air fluid properties.
Definition: air.hh:46
mesitylene
Definition: mesitylene.hh:48