blackoilextboparams.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 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*/
32#ifndef EWOMS_BLACK_OIL_EXTBO_PARAMS_HH
33#define EWOMS_BLACK_OIL_EXTBO_PARAMS_HH
34
35#include <opm/material/common/Tabulated1DFunction.hpp>
36#include <opm/material/common/UniformXTabulated2DFunction.hpp>
37
38#include <vector>
39
40namespace Opm {
41
43template<class Scalar>
45 using TabulatedFunction = Tabulated1DFunction<Scalar>;
46 using Tabulated2DFunction = UniformXTabulated2DFunction<Scalar>;
47
48 std::vector<Tabulated2DFunction> X_;
49 std::vector<Tabulated2DFunction> Y_;
50 std::vector<Tabulated2DFunction> PBUB_RS_;
51 std::vector<Tabulated2DFunction> PBUB_RV_;
52 std::vector<Tabulated2DFunction> VISCO_;
53 std::vector<Tabulated2DFunction> VISCG_;
54 std::vector<Tabulated2DFunction> BO_;
55 std::vector<Tabulated2DFunction> BG_;
56 std::vector<Tabulated2DFunction> RS_;
57 std::vector<Tabulated2DFunction> RV_;
58
59 std::vector<Scalar> zReferenceDensity_;
60
61 std::vector<Scalar> zLim_;
62 std::vector<TabulatedFunction> oilCmp_;
63 std::vector<TabulatedFunction> gasCmp_;
64};
65
66} // namespace Opm
67
68#endif
Definition: blackoilboundaryratevector.hh:37
Struct holding the parameters for the BlackoilExtboModule class.
Definition: blackoilextboparams.hh:44
UniformXTabulated2DFunction< Scalar > Tabulated2DFunction
Definition: blackoilextboparams.hh:46
std::vector< TabulatedFunction > oilCmp_
Definition: blackoilextboparams.hh:62
std::vector< Tabulated2DFunction > Y_
Definition: blackoilextboparams.hh:49
std::vector< Tabulated2DFunction > RS_
Definition: blackoilextboparams.hh:56
std::vector< Scalar > zReferenceDensity_
Definition: blackoilextboparams.hh:59
std::vector< Tabulated2DFunction > PBUB_RV_
Definition: blackoilextboparams.hh:51
std::vector< Scalar > zLim_
Definition: blackoilextboparams.hh:61
std::vector< Tabulated2DFunction > VISCG_
Definition: blackoilextboparams.hh:53
std::vector< Tabulated2DFunction > VISCO_
Definition: blackoilextboparams.hh:52
std::vector< Tabulated2DFunction > PBUB_RS_
Definition: blackoilextboparams.hh:50
std::vector< TabulatedFunction > gasCmp_
Definition: blackoilextboparams.hh:63
Tabulated1DFunction< Scalar > TabulatedFunction
Definition: blackoilextboparams.hh:45
std::vector< Tabulated2DFunction > X_
Definition: blackoilextboparams.hh:48
std::vector< Tabulated2DFunction > RV_
Definition: blackoilextboparams.hh:57
std::vector< Tabulated2DFunction > BO_
Definition: blackoilextboparams.hh:54
std::vector< Tabulated2DFunction > BG_
Definition: blackoilextboparams.hh:55