version 3.11-dev
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages Concepts
1pliquid.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_FLUIDSYSTEMS_LIQUID_PHASE_HH
13#define DUMUX_FLUIDSYSTEMS_LIQUID_PHASE_HH
14
15#include <cassert>
16#include <limits>
17
18#include <dune/common/exceptions.hh>
19
22#include <dumux/io/name.hh>
23
24namespace Dumux::FluidSystems {
25
30template <class Scalar, class ComponentT>
32: public Base<Scalar, OnePLiquid<Scalar, ComponentT> >
33{
35
36 static_assert(ComponentTraits<ComponentT>::hasLiquidState, "The component does not implement a liquid state!");
37
38public:
39 using Component = ComponentT;
41
42 static constexpr int numPhases = 1;
43 static constexpr int numComponents = 1;
44
45 static constexpr int phase0Idx = 0;
46 static constexpr int comp0Idx = 0;
47
51 static void init()
52 { }
53
54 /****************************************
55 * Fluid phase related static parameters
56 ****************************************/
62 static std::string phaseName(int phaseIdx = 0)
63 { return IOName::liquidPhase(); }
64
70 static std::string componentName(int compIdx = 0)
71 { return Component::name(); }
72
76 static std::string name()
77 { return Component::name(); }
78
82 static constexpr bool isMiscible()
83 { return false; }
84
88 static constexpr bool isGas(int phaseIdx = 0)
89 { return false; }
90
105 static constexpr bool isIdealMixture(int phaseIdx = 0)
106 { return true; }
107
111 static constexpr bool isCompressible(int phaseIdx = 0)
112 { return Component::liquidIsCompressible(); }
113
117 static constexpr bool viscosityIsConstant(int phaseIdx = 0)
118 { return Component::liquidViscosityIsConstant(); }
119
123 static constexpr bool isIdealGas(int phaseIdx = 0)
124 { return false; /* we're a liquid! */ }
125
129 static Scalar molarMass(int compIdx = 0)
130 { return Component::molarMass(); }
131
135 static Scalar criticalTemperature(int compIdx = 0)
136 { return Component::criticalTemperature(); }
137
141 static Scalar criticalPressure(int compIdx = 0)
142 { return Component::criticalPressure(); }
143
147 static Scalar tripleTemperature(int compIdx = 0)
148 { return Component::tripleTemperature(); }
149
153 static Scalar triplePressure(int compIdx = 0)
154 { return Component::triplePressure(); }
155
161 { return Component::vaporPressure(T); }
162
167 { return Component::liquidDensity(temperature, pressure); }
168
171 template <class FluidState>
172 static Scalar density(const FluidState &fluidState,
173 const int phaseIdx)
174 {
175 return density(fluidState.temperature(phaseIdx),
176 fluidState.pressure(phaseIdx));
177 }
178
181 template <class FluidState>
182 static Scalar molarDensity(const FluidState &fluidState, const int phaseIdx)
183 {
184 return molarDensity(fluidState.temperature(phaseIdx),
185 fluidState.pressure(phaseIdx));
186 }
187
194 { return Component::liquidMolarDensity(temperature, pressure); }
195
202 { return Component::liquidPressure(temperature, density); }
203
210 { return Component::liquidEnthalpy(temperature, pressure); }
211
214 template <class FluidState>
215 static Scalar enthalpy(const FluidState &fluidState,
216 const int phaseIdx)
217 {
218 return enthalpy(fluidState.temperature(phaseIdx),
219 fluidState.pressure(phaseIdx));
220 }
221
228 { return Component::liquidInternalEnergy(temperature, pressure); }
229
236 { return Component::liquidViscosity(temperature, pressure); }
237
240 template <class FluidState>
241 static Scalar viscosity(const FluidState &fluidState,
242 const int phaseIdx)
243 {
244 return viscosity(fluidState.temperature(phaseIdx),
245 fluidState.pressure(phaseIdx));
246 }
247
250 template <class FluidState>
251 static Scalar fugacityCoefficient(const FluidState &fluidState,
252 int phaseIdx,
253 int compIdx)
254 {
255 assert(0 <= phaseIdx && phaseIdx < numPhases);
256 assert(0 <= compIdx && compIdx < numComponents);
257
258 if (phaseIdx == compIdx)
259 // We could calculate the real fugacity coefficient of
260 // the component in the fluid. Probably that's not worth
261 // the effort, since the fugacity coefficient of the other
262 // component is infinite anyway...
263 return 1.0;
264 return std::numeric_limits<Scalar>::infinity();
265 }
266
269 template <class FluidState>
270 static Scalar diffusionCoefficient(const FluidState &fluidState,
271 int phaseIdx,
272 int compIdx)
273 {
274 DUNE_THROW(Dune::InvalidStateException, "Not applicable: Diffusion coefficients");
275 }
276
279 template <class FluidState>
280 static Scalar binaryDiffusionCoefficient(const FluidState &fluidState,
281 int phaseIdx,
282 int compIIdx,
283 int compJIdx)
284 {
285 DUNE_THROW(Dune::InvalidStateException, "Not applicable: Binary diffusion coefficients");
286 }
287
294 { return Component::liquidThermalConductivity(temperature, pressure); }
295
298 template <class FluidState>
299 static Scalar thermalConductivity(const FluidState &fluidState,
300 const int phaseIdx)
301 {
302 return thermalConductivity(fluidState.temperature(phaseIdx),
303 fluidState.pressure(phaseIdx));
304 }
305
312 { return Component::liquidHeatCapacity(temperature, pressure); }
313
316 template <class FluidState>
317 static Scalar heatCapacity(const FluidState &fluidState,
318 const int phaseIdx)
319 {
320 return heatCapacity(fluidState.temperature(phaseIdx),
321 fluidState.pressure(phaseIdx));
322 }
323};
324
325} // namespace Dumux::FluidSystems
326
327#endif
Fluid system base class.
Definition: fluidsystems/base.hh:32
Scalar Scalar
export the scalar type
Definition: fluidsystems/base.hh:35
A liquid phase consisting of a single component.
Definition: 1pliquid.hh:33
static constexpr int numComponents
Number of components in the fluid system.
Definition: 1pliquid.hh:43
static constexpr bool isCompressible(int phaseIdx=0)
Returns true if the fluid is assumed to be compressible.
Definition: 1pliquid.hh:111
static const Scalar enthalpy(Scalar temperature, Scalar pressure)
Specific enthalpy the pure component as a liquid.
Definition: 1pliquid.hh:209
static Scalar molarDensity(const FluidState &fluidState, const int phaseIdx)
Calculate the molar density of a fluid phase.
Definition: 1pliquid.hh:182
static Scalar enthalpy(const FluidState &fluidState, const int phaseIdx)
Given a phase's composition, temperature, pressure and density, calculate its specific enthalpy .
Definition: 1pliquid.hh:215
static std::string phaseName(int phaseIdx=0)
Return the human readable name of a fluid phase.
Definition: 1pliquid.hh:62
static constexpr bool isGas(int phaseIdx=0)
Returns whether the fluid is a liquid.
Definition: 1pliquid.hh:88
static constexpr bool isIdealGas(int phaseIdx=0)
Returns true if the fluid is assumed to be an ideal gas.
Definition: 1pliquid.hh:123
static constexpr bool isIdealMixture(int phaseIdx=0)
Returns true if and only if a fluid phase is assumed to be an ideal mixture.
Definition: 1pliquid.hh:105
static void init()
Initialize the fluid system's static parameters generically.
Definition: 1pliquid.hh:51
static Scalar diffusionCoefficient(const FluidState &fluidState, int phaseIdx, int compIdx)
Calculate the binary molecular diffusion coefficient for a component in a fluid phase .
Definition: 1pliquid.hh:270
static Scalar molarMass(int compIdx=0)
The mass in of one mole of the component.
Definition: 1pliquid.hh:129
static Scalar triplePressure(int compIdx=0)
Returns the pressure at the component's triple point.
Definition: 1pliquid.hh:153
static Scalar criticalPressure(int compIdx=0)
Returns the critical pressure of the component.
Definition: 1pliquid.hh:141
static Scalar thermalConductivity(const FluidState &fluidState, const int phaseIdx)
Thermal conductivity of a fluid phase .
Definition: 1pliquid.hh:299
static Scalar density(const FluidState &fluidState, const int phaseIdx)
Calculate the density of a fluid phase.
Definition: 1pliquid.hh:172
static std::string name()
A human readable name for the component.
Definition: 1pliquid.hh:76
static Scalar binaryDiffusionCoefficient(const FluidState &fluidState, int phaseIdx, int compIIdx, int compJIdx)
Given a phase's composition, temperature and pressure, return the binary diffusion coefficient for c...
Definition: 1pliquid.hh:280
static constexpr bool isMiscible()
There is only one phase, so not mass transfer between phases can occur.
Definition: 1pliquid.hh:82
static Scalar viscosity(const FluidState &fluidState, const int phaseIdx)
Calculate the dynamic viscosity of a fluid phase .
Definition: 1pliquid.hh:241
static Scalar density(Scalar temperature, Scalar pressure)
The density of the component at a given pressure and temperature.
Definition: 1pliquid.hh:166
static Scalar pressure(Scalar temperature, Scalar density)
The pressure of the component at a given density and temperature.
Definition: 1pliquid.hh:201
static Scalar thermalConductivity(Scalar temperature, Scalar pressure)
Thermal conductivity of the fluid .
Definition: 1pliquid.hh:293
static Scalar vaporPressure(Scalar T)
The vapor pressure in of the component at a given temperature.
Definition: 1pliquid.hh:160
static Scalar heatCapacity(const FluidState &fluidState, const int phaseIdx)
Specific isobaric heat capacity of a fluid phase .
Definition: 1pliquid.hh:317
static const Scalar internalEnergy(Scalar temperature, Scalar pressure)
Specific internal energy the pure component as a liquid.
Definition: 1pliquid.hh:227
static Scalar viscosity(Scalar temperature, Scalar pressure)
The dynamic liquid viscosity of the pure component.
Definition: 1pliquid.hh:235
static Scalar heatCapacity(Scalar temperature, Scalar pressure)
Specific isobaric heat capacity of the fluid .
Definition: 1pliquid.hh:311
static Scalar tripleTemperature(int compIdx=0)
Returns the temperature at the component's triple point.
Definition: 1pliquid.hh:147
static constexpr int comp0Idx
index of the only component
Definition: 1pliquid.hh:46
static Scalar criticalTemperature(int compIdx=0)
Returns the critical temperature of the component.
Definition: 1pliquid.hh:135
static constexpr int phase0Idx
index of the only phase
Definition: 1pliquid.hh:45
static Scalar molarDensity(Scalar temperature, Scalar pressure)
The density of the component at a given pressure and temperature.
Definition: 1pliquid.hh:193
static constexpr bool viscosityIsConstant(int phaseIdx=0)
Returns true if the fluid viscosity is constant.
Definition: 1pliquid.hh:117
ComponentT Component
Definition: 1pliquid.hh:39
static Scalar fugacityCoefficient(const FluidState &fluidState, int phaseIdx, int compIdx)
Calculate the fugacity coefficient of an individual component in a fluid phase.
Definition: 1pliquid.hh:251
static std::string componentName(int compIdx=0)
A human readable name for the component.
Definition: 1pliquid.hh:70
static constexpr int numPhases
Number of phases in the fluid system.
Definition: 1pliquid.hh:42
The a parameter cache which does nothing.
Definition: nullparametercache.hh:22
Component traits, i.e. information extracted from components.
Fluid system base class.
A collection of input/output field names for common physical quantities.
Definition: h2o.hh:901
std::string temperature() noexcept
I/O name of temperature for equilibrium models.
Definition: name.hh:39
std::string liquidPhase() noexcept
I/O name of liquid phase.
Definition: name.hh:107
Component traits, i.e. information extracted from components.
Definition: componenttraits.hh:31