opm-common
Loading...
Searching...
No Matches
ImmiscibleFluidState.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*/
30#ifndef OPM_IMMISCIBLE_FLUID_STATE_HPP
31#define OPM_IMMISCIBLE_FLUID_STATE_HPP
32
42
43namespace Opm {
44
50template <class ValueType, class FluidSystem, bool storeEnthalpy=true>
52
53// specialization for the enthalpy enabled case
54template <class ValueType, class FluidSystem>
55class ImmiscibleFluidState<ValueType, FluidSystem, true>
56 : public ModularFluidState<ValueType,
57 FluidSystem::numPhases,
58 FluidSystem::numComponents,
59 FluidStateExplicitPressureModule<ValueType, FluidSystem::numPhases, ImmiscibleFluidState<ValueType, FluidSystem, true> >,
60 FluidStateEquilibriumTemperatureModule<ValueType, FluidSystem::numPhases, ImmiscibleFluidState<ValueType, FluidSystem, true> >,
61 FluidStateImmiscibleCompositionModule<ValueType, FluidSystem, ImmiscibleFluidState<ValueType, FluidSystem, true> >,
62 FluidStateExplicitFugacityModule<ValueType, FluidSystem::numPhases, FluidSystem::numComponents, ImmiscibleFluidState<ValueType, FluidSystem, true> >,
63 FluidStateExplicitSaturationModule<ValueType, FluidSystem::numPhases, ImmiscibleFluidState<ValueType, FluidSystem, true> >,
64 FluidStateExplicitDensityModule<ValueType, FluidSystem::numPhases, ImmiscibleFluidState<ValueType, FluidSystem, true> >,
65 FluidStateExplicitViscosityModule<ValueType, FluidSystem::numPhases, ImmiscibleFluidState<ValueType, FluidSystem, true> >,
66 FluidStateExplicitEnthalpyModule<ValueType, FluidSystem::numPhases, ImmiscibleFluidState<ValueType, FluidSystem, true> > >
67{
68};
69
70// specialization for the enthalpy disabled case
71template <class ValueType, class FluidSystem>
72class ImmiscibleFluidState<ValueType, FluidSystem, false>
73 : public ModularFluidState<ValueType,
74 FluidSystem::numPhases,
75 FluidSystem::numComponents,
76 FluidStateExplicitPressureModule<ValueType, FluidSystem::numPhases, ImmiscibleFluidState<ValueType, FluidSystem, false> >,
77 FluidStateEquilibriumTemperatureModule<ValueType, FluidSystem::numPhases, ImmiscibleFluidState<ValueType, FluidSystem, false> >,
78 FluidStateImmiscibleCompositionModule<ValueType, FluidSystem, ImmiscibleFluidState<ValueType, FluidSystem, false> >,
79 FluidStateExplicitFugacityModule<ValueType, FluidSystem::numPhases, FluidSystem::numComponents, ImmiscibleFluidState<ValueType, FluidSystem, false> >,
80 FluidStateExplicitSaturationModule<ValueType, FluidSystem::numPhases, ImmiscibleFluidState<ValueType, FluidSystem, false> >,
81 FluidStateExplicitDensityModule<ValueType, FluidSystem::numPhases, ImmiscibleFluidState<ValueType, FluidSystem, false> >,
82 FluidStateExplicitViscosityModule<ValueType, FluidSystem::numPhases, ImmiscibleFluidState<ValueType, FluidSystem, false> >,
83 FluidStateNullEnthalpyModule<ValueType, FluidSystem::numPhases, ImmiscibleFluidState<ValueType, FluidSystem, false> > >
84{
85};
86
87} // namespace Opm
88
89#endif
Modules for the ModularFluidState which represent composition.
Modules for the ModularFluidState which represent density.
Modules for the ModularFluidState which represent enthalpy.
Modules for the ModularFluidState which represent fugacity/chemical potential.
Modules for the ModularFluidState which represent pressure.
Modules for the ModularFluidState which represent saturation.
Modules for the ModularFluidState which represent temperature.
Modules for the ModularFluidState which represent viscosity.
Represents all relevant thermodynamic quantities of a multi-phase, multi-component fluid system assum...
Represents all relevant thermodynamic quantities of a multi-phase, multi-component fluid system assum...
Definition ImmiscibleFluidState.hpp:51
Represents all relevant thermodynamic quantities of a multi-phase, multi-component fluid system assum...
Definition ModularFluidState.hpp:60
This class implements a small container which holds the transmissibility mulitpliers for all the face...
Definition Exceptions.hpp:30