opm-common
LiquidPhase.hpp
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  This file is part of the Open Porous Media project (OPM).
5 
6  OPM 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 2 of the License, or
9  (at your option) any later version.
10 
11  OPM 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 OPM. If not, see <http://www.gnu.org/licenses/>.
18 
19  Consult the COPYING file in the top-level source directory of this
20  module for the precise wording of the license and the list of
21  copyright holders.
22 */
27 #ifndef OPM_LIQUID_PHASE_HPP
28 #define OPM_LIQUID_PHASE_HPP
29 
30 #include <string_view>
31 
32 namespace Opm {
33 
38 template <class Scalar, class ComponentT>
40 {
41 public:
43  typedef ComponentT Component;
44 
46  static std::string_view name()
47  { return Component::name(); }
48 
50  static bool isLiquid()
51  { return true; }
52 
54  static bool isCompressible()
56 
58  static bool isIdealGas()
59  { return false; /* we're a liquid! */ }
60 
62  static Scalar molarMass()
63  { return Component::molarMass(); }
64 
66  static Scalar criticalTemperature()
67  { return Component::criticalTemperature(); }
68 
70  static Scalar criticalPressure()
71  { return Component::criticalPressure(); }
72 
74  static Scalar tripleTemperature()
75  { return Component::tripleTemperature(); }
76 
78  static Scalar triplePressure()
79  { return Component::triplePressure(); }
80 
82  template <class Evaluation>
83  static Evaluation vaporPressure(const Evaluation& temperature)
84  { return Component::vaporPressure(temperature); }
85 
87  template <class Evaluation>
88  static Evaluation density(const Evaluation& temperature, const Evaluation& pressure)
89  { return Component::liquidDensity(temperature, pressure); }
90 
92  template <class Evaluation>
93  static Evaluation pressure(const Evaluation& temperature, const Evaluation& density)
94  { return Component::liquidPressure(temperature, density); }
95 
97  template <class Evaluation>
98  static const Evaluation enthalpy(const Evaluation& temperature, const Evaluation& pressure)
99  { return Component::liquidEnthalpy(temperature, pressure); }
100 
102  template <class Evaluation>
103  static const Evaluation internalEnergy(const Evaluation& temperature, const Evaluation& pressure)
104  { return Component::liquidInternalEnergy(temperature, pressure); }
105 
107  template <class Evaluation>
108  static Evaluation viscosity(const Evaluation& temperature, const Evaluation& pressure)
109  { return Component::liquidViscosity(temperature, pressure); }
110 
112  template <class Evaluation>
113  static Evaluation thermalConductivity(const Evaluation& temperature, const Evaluation& pressure)
114  { return Component::liquidThermalConductivity(temperature, pressure); }
115 
117  template <class Evaluation>
118  static Evaluation heatCapacity(const Evaluation& temperature, const Evaluation& pressure)
119  { return Component::liquidHeatCapacity(temperature, pressure); }
120 };
121 } // namespace Opm
122 
123 #endif
static Evaluation liquidDensity(const Evaluation &, const Evaluation &)
The density of the liquid component at a given pressure in and temperature in . ...
Definition: Component.hpp:160
static std::string_view name()
A human readable name for the component.
Definition: LiquidPhase.hpp:46
static Evaluation liquidViscosity(const Evaluation &, const Evaluation &)
The dynamic liquid viscosity of the pure component.
Definition: Component.hpp:221
static Scalar criticalPressure()
Returns the critical pressure in of the component.
Definition: Component.hpp:105
static Evaluation vaporPressure(const Evaluation &)
The vapor pressure in of the component at a given temperature in .
Definition: Component.hpp:140
static bool liquidIsCompressible()
Returns true iff the liquid phase is assumed to be compressible.
Definition: Component.hpp:81
static std::string_view name()
A human readable name for the component.
Definition: Component.hpp:87
static Evaluation viscosity(const Evaluation &temperature, const Evaluation &pressure)
The dynamic viscosity [Pa s] of the pure component at a given pressure and temperature.
Definition: LiquidPhase.hpp:108
static Evaluation liquidEnthalpy(const Evaluation &, const Evaluation &)
Specific enthalpy of the pure component in liquid.
Definition: Component.hpp:180
static Evaluation liquidHeatCapacity(const Evaluation &, const Evaluation &)
Specific isobaric heat capacity of the component [J/kg] as a liquid.
Definition: Component.hpp:249
static Scalar criticalPressure()
Returns the critical pressure of the component.
Definition: LiquidPhase.hpp:70
This class implements a small container which holds the transmissibility mulitpliers for all the face...
Definition: Exceptions.hpp:30
static bool isLiquid()
Returs whether the fluid is a liquid.
Definition: LiquidPhase.hpp:50
static Scalar criticalTemperature()
Returns the critical temperature of the component.
Definition: LiquidPhase.hpp:66
static Evaluation heatCapacity(const Evaluation &temperature, const Evaluation &pressure)
Specific isobaric heat capacity of the fluid [J/kg].
Definition: LiquidPhase.hpp:118
static Scalar triplePressure()
Returns the pressure in at the component&#39;s triple point.
Definition: Component.hpp:130
static bool isCompressible()
Returns true iff the fluid is assumed to be compressible.
Definition: LiquidPhase.hpp:54
static Scalar criticalTemperature()
Returns the critical temperature in of the component.
Definition: Component.hpp:99
static Scalar tripleTemperature()
Returns the temperature at the component&#39;s triple point.
Definition: LiquidPhase.hpp:74
static Evaluation liquidThermalConductivity(const Evaluation &, const Evaluation &)
Thermal conductivity of the component [W/(m^2 K/m)] as a liquid.
Definition: Component.hpp:235
static Evaluation thermalConductivity(const Evaluation &temperature, const Evaluation &pressure)
Thermal conductivity of the fluid [W/(m^2 K/m)].
Definition: LiquidPhase.hpp:113
static Evaluation liquidInternalEnergy(const Evaluation &, const Evaluation &)
Specific internal energy of pure the pure component in liquid.
Definition: Component.hpp:200
static Scalar molarMass()
The mass in [kg] of one mole of the component.
Definition: LiquidPhase.hpp:62
static Scalar tripleTemperature()
Returns the temperature in at the component&#39;s triple point.
Definition: Component.hpp:124
ComponentT Component
The type of the phase&#39;s underlying (pseudo-) component.
Definition: LiquidPhase.hpp:43
static bool isIdealGas()
Returns true iff the fluid is assumed to be an ideal gas.
Definition: LiquidPhase.hpp:58
static const Evaluation enthalpy(const Evaluation &temperature, const Evaluation &pressure)
Specific enthalpy [J/kg] the pure component as a gas.
Definition: LiquidPhase.hpp:98
static Scalar molarMass()
The molar mass in of the component.
Definition: Component.hpp:93
Represents the liquid phase of a single (pseudo-) component.
Definition: LiquidPhase.hpp:39
static Evaluation pressure(const Evaluation &temperature, const Evaluation &density)
The pressure [Pa] of the component at a given density and temperature.
Definition: LiquidPhase.hpp:93
static Evaluation vaporPressure(const Evaluation &temperature)
The vapor pressure in [N/m^2] of the component at a given temperature.
Definition: LiquidPhase.hpp:83
static Scalar triplePressure()
Returns the pressure at the component&#39;s triple point.
Definition: LiquidPhase.hpp:78
static const Evaluation internalEnergy(const Evaluation &temperature, const Evaluation &pressure)
Specific internal energy [J/kg] the pure component as a gas.
Definition: LiquidPhase.hpp:103
static Evaluation density(const Evaluation &temperature, const Evaluation &pressure)
The density [kg/m^3] of the component at a given pressure and temperature.
Definition: LiquidPhase.hpp:88