version 3.11-dev
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages Concepts
o2.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// SPDX-FileCopyrightText: Copyright © DuMux Project contributors, see AUTHORS.md in root folder
5// SPDX-License-Identifier: GPL-3.0-or-later
6//
12#ifndef DUMUX_O2_HH
13#define DUMUX_O2_HH
14
16
17#include <cmath>
18
22
23namespace Dumux::Components {
24
31template <class Scalar>
32class O2
33: public Components::Base<Scalar, O2<Scalar> >
34, public Components::Gas<Scalar, O2<Scalar> >
35{
37 using ShomateMethod = Dumux::ShomateMethod<Scalar, 3>; // three regions
38
39public:
41
45 static std::string name()
46 { return "O2"; }
47
51 static constexpr Scalar molarMass()
52 { return 32e-3; }
53
57 static constexpr Scalar criticalTemperature()
58 { return 154.581; /* [K] */ }
59
63 static constexpr Scalar criticalPressure()
64 { return 5.0804e6; /* [N/m^2] */ }
65
69 static constexpr Scalar tripleTemperature()
70 { return 54.359; /* [K] */ }
71
75 static constexpr Scalar triplePressure()
76 { return 148.0; /* [N/m^2] */ }
77
89 {
90 if (T > criticalTemperature())
91 return criticalPressure();
92 if (T < tripleTemperature())
93 return 0; // O2 is solid: We don't take sublimation into account
94
95 // vapor pressure between tripe and critical points. See the
96 // paper of Prydz for a discussion
97 Scalar X =
98 (1 - tripleTemperature()/T) /
100 const Scalar A = 7.568956;
101 const Scalar B = 5.004836;
102 const Scalar C = -2.137460;
103 const Scalar D = 3.454481;
104 const Scalar epsilon = 1.514;
105
106 using std::exp;
107 using std::pow;
108 return triplePressure()*exp(X*(A + X*(B + C*X) + D*pow(1 - X, epsilon)));
109 }
110
114 static constexpr bool gasIsCompressible()
115 { return true; }
116
126 {
127 // Assume an ideal gas
129 }
130
139
143 static constexpr bool gasIsIdeal()
144 { return true; }
145
153 {
154 // Assume an ideal gas
156 }
157
167 {
168 const auto h = shomateMethod.enthalpy(temperature); // KJ/mol
169 return h * 1e3 / molarMass(); // J/kg
170 }
171
183 {
184 const auto cp = shomateMethod.heatCapacity(T); // J/(mol K)
185 return cp / molarMass(); // J/(kg K)
186 }
187
199 {
200 const Scalar Tc = criticalTemperature();
201 const Scalar Vc = 73.4; // critical specific volume [cm^3/mol]
202 const Scalar omega = 0.025; // accentric factor
203 const Scalar M = molarMass() * 1e3; // molar mas [g/mol]
204 const Scalar dipole = 0.0; // dipole moment [debye]
205
206 using std::sqrt;
207 Scalar mu_r4 = 131.3 * dipole / sqrt(Vc * Tc);
208 mu_r4 *= mu_r4;
209 mu_r4 *= mu_r4;
210
211 Scalar Fc = 1 - 0.2756*omega + 0.059035*mu_r4;
212 Scalar Tstar = 1.2593 * temperature/Tc;
213
214 using std::pow;
215 using std::exp;
216 Scalar Omega_v =
217 1.16145*pow(Tstar, -0.14874) +
218 0.52487*exp(- 0.77320*Tstar) +
219 2.16178*exp(- 2.43787*Tstar);
220 Scalar mu = 40.785*Fc*sqrt(M*temperature)/(pow(Vc, 2./3)*Omega_v);
221
222 // conversion from micro poise to Pa s
223 return mu/1e6 / 10;
224 }
225
238 {
239 return 8.044e-5 * (temperature - 273.15) + 0.024486;
240 }
241};
242
248template <class Scalar>
249const typename O2<Scalar>::ShomateMethod O2<Scalar>::shomateMethod{
250 /*temperature*/{100.0, 700.0, 2000.0, 6000.0},
252 {31.32234, -20.23531, 57.86644, -36.50624, -0.007374, -8.903471, 246.7945, 0.0},
253 {30.03235, 8.772972, -3.988133, 0.788313, -0.741599, -11.32468, 236.1663, 0.0},
254 {20.91111, 10.72071, -2.020498, 0.146449, 9.245722, 5.337651, 237.6185, 0.0}
255 }}
256};
257
258} // end namespace Dumux::Components
259
260#endif
Base class for all components Components provide the thermodynamic relations for the liquid,...
Definition: components/base.hh:46
Scalar Scalar
export the scalar type used by the component
Definition: components/base.hh:50
Interface for components that have a gas state.
Definition: gas.hh:28
Properties of pure molecular oxygen .
Definition: o2.hh:35
static constexpr Scalar gasPressure(Scalar temperature, Scalar density)
The pressure of gaseous in at a given density and temperature.
Definition: o2.hh:152
static Scalar gasEnthalpy(Scalar temperature, Scalar pressure)
Specific enthalpy of pure oxygen gas. Shomate Equation is used for a temperature range of 100K to 60...
Definition: o2.hh:165
static Scalar gasMolarDensity(Scalar temperature, Scalar pressure)
The molar density of pure in , depending on pressure and temperature.
Definition: o2.hh:137
static constexpr Scalar criticalTemperature()
Returns the critical temperature in of molecular oxygen.
Definition: o2.hh:57
static std::string name()
A human readable name for the .
Definition: o2.hh:45
static constexpr bool gasIsCompressible()
Returns true if the gas phase is assumed to be compressible.
Definition: o2.hh:114
static constexpr Scalar molarMass()
The molar mass in of molecular oxygen.
Definition: o2.hh:51
static Scalar vaporPressure(Scalar T)
The vapor pressure in of pure molecular oxygen at a given temperature.
Definition: o2.hh:88
static Scalar gasHeatCapacity(Scalar T, Scalar pressure)
Specific isobaric heat capacity of pure oxygen gas. Shomate Equation is used for a temperature range...
Definition: o2.hh:181
static Scalar gasViscosity(Scalar temperature, Scalar pressure)
The dynamic viscosity of at a given pressure and temperature.
Definition: o2.hh:198
static const ShomateMethod shomateMethod
Shomate parameters for oxygen published by NIST https://webbook.nist.gov/cgi/cbook....
Definition: o2.hh:40
static constexpr Scalar triplePressure()
Returns the pressure in at molecular oxygen's triple point.
Definition: o2.hh:75
static constexpr Scalar criticalPressure()
Returns the critical pressure in of molecular oxygen.
Definition: o2.hh:63
static constexpr bool gasIsIdeal()
Returns true if the gas phase is assumed to be ideal.
Definition: o2.hh:143
static constexpr Scalar gasDensity(Scalar temperature, Scalar pressure)
The density in of pure at a given pressure and temperature.
Definition: o2.hh:125
static constexpr Scalar gasThermalConductivity(Scalar temperature, Scalar pressure)
Thermal conductivity of nitrogen.
Definition: o2.hh:237
static constexpr Scalar tripleTemperature()
Returns the temperature in at molecular oxygen's triple point.
Definition: o2.hh:69
Relations valid for an ideal gas.
Definition: idealgas.hh:25
static constexpr Scalar pressure(Scalar temperature, Scalar rhoMolar)
The pressure of the gas in , depending on the molar density and temperature.
Definition: idealgas.hh:48
static constexpr Scalar density(Scalar avgMolarMass, Scalar temperature, Scalar pressure)
The density of the gas in , depending on pressure, temperature and average molar mass of the gas.
Definition: idealgas.hh:37
static constexpr Scalar molarDensity(Scalar temperature, Scalar pressure)
The molar density of the gas , depending on pressure and temperature.
Definition: idealgas.hh:58
The Shomate method to compute enthalpy and heat capacity.
Definition: shomate.hh:50
Scalar heatCapacity(const Scalar temperature) const
Return heat capacity in J/(mol*K)
Definition: shomate.hh:88
std::conditional_t< intervals==-1, std::vector< CoefficientSet >, std::array< CoefficientSet, std::size_t(intervals)> > Coefficients
Definition: shomate.hh:56
Scalar enthalpy(const Scalar temperature) const
Return enthalpy in kJ/mol.
Definition: shomate.hh:75
Base class for all components Components provide the thermodynamic relations for the liquid,...
Interface for components that have a gas state.
Relations valid for an ideal gas.
Definition: air.hh:22
std::string temperature() noexcept
I/O name of temperature for equilibrium models.
Definition: name.hh:39
std::string pressure(int phaseIdx) noexcept
I/O name of pressure for multiphase systems.
Definition: name.hh:22
std::string density(int phaseIdx) noexcept
I/O name of density for multiphase systems.
Definition: name.hh:53
Shomate equations for enthalpy and heat capacity.