VectorItems/logihead.hpp
Go to the documentation of this file.
1/*
2 Copyright (c) 2019 Equinor ASA
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 3 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
20#ifndef OPM_OUTPUT_ECLIPSE_VECTOR_LOGIHEAD_HPP
21#define OPM_OUTPUT_ECLIPSE_VECTOR_LOGIHEAD_HPP
22
23#include <vector>
24
25namespace Opm { namespace RestartIO { namespace Helpers { namespace VectorItems {
26
27 // This is a subset of the items in src/opm/output/eclipse/LogiHEAD.cpp .
28 // Promote items from that list to this in order to make them public.
29 enum logihead : std::vector<bool>::size_type {
30 IsLiveOil = 0, // Oil phase w/dissolved gas
31 IsWetGas = 1, // Gas phase w/vaporised oil
32 DirKr = 2, // Directional relative permeability
33 E100RevKr = 3, // Reversible rel. perm. (E100)
34 E100Radial = 4, // Radial model (E100)
35 E300Radial = 3, // Radial model (E300, others)
36 E300RevKr = 4, // Reversible rel. perm. (E300, others)
37 Hyster = 6, // Enable hysteresis
38 DualPoro = 14, // Enable dual porosity
39 EndScale = 16, // Enable end-point scaling
40 DirEPS = 17, // Directional end-point scaling
41 RevEPS = 18, // Reversible end-point scaling
42 AltEPS = 19, // Alternative (3-pt) end-point scaling
43 ConstCo = 38, // Constant oil compressibility (PVCDO)
44 HasMSWells = 75, // Whether or not model has MS Wells.
45 };
46}}}} // Opm::RestartIO::Helpers::VectorItems
47
48#endif // OPM_OUTPUT_ECLIPSE_VECTOR_LOGIHEAD_HPP
logihead
Definition: VectorItems/logihead.hpp:29
@ HasMSWells
Definition: VectorItems/logihead.hpp:44
@ RevEPS
Definition: VectorItems/logihead.hpp:41
@ E300Radial
Definition: VectorItems/logihead.hpp:35
@ EndScale
Definition: VectorItems/logihead.hpp:39
@ E300RevKr
Definition: VectorItems/logihead.hpp:36
@ DirEPS
Definition: VectorItems/logihead.hpp:40
@ Hyster
Definition: VectorItems/logihead.hpp:37
@ E100RevKr
Definition: VectorItems/logihead.hpp:33
@ AltEPS
Definition: VectorItems/logihead.hpp:42
@ E100Radial
Definition: VectorItems/logihead.hpp:34
@ IsWetGas
Definition: VectorItems/logihead.hpp:31
@ DirKr
Definition: VectorItems/logihead.hpp:32
@ DualPoro
Definition: VectorItems/logihead.hpp:38
@ IsLiveOil
Definition: VectorItems/logihead.hpp:30
@ ConstCo
Definition: VectorItems/logihead.hpp:43
Definition: A.hpp:4