My Project
Loading...
Searching...
No Matches
PcfactTable.hpp
1/*
2 Copyright (C) 2020 by Equinor.
3 Copyright (C) 2020 by TNO.
4 Copyright (C) 2024 by NORCE.
5
6 This file is part of the Open Porous Media project (OPM).
7
8 OPM is free software: you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
10 the Free Software Foundation, either version 3 of the License, or
11 (at your option) any later version.
12
13 OPM is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 GNU General Public License for more details.
17
18 You should have received a copy of the GNU General Public License
19 along with OPM. If not, see <http://www.gnu.org/licenses/>.
20 */
21#ifndef OPM_PARSER_PCFACT_TABLE_HPP
22#define OPM_PARSER_PCFACT_TABLE_HPP
23
24#include "SimpleTable.hpp"
25
26namespace Opm {
27
28 class DeckItem;
29
30 class PcfactTable : public SimpleTable {
31 public:
32 PcfactTable( const DeckItem& item, const int tableID );
33
34 const TableColumn& getPorosityChangeColumn() const;
35 const TableColumn& getPcMultiplierColumn() const;
36 };
37}
38
39#endif
Definition DeckItem.hpp:37
Definition PcfactTable.hpp:30
Definition SimpleTable.hpp:35
Definition TableColumn.hpp:32
This class implements a small container which holds the transmissibility mulitpliers for all the face...
Definition Exceptions.hpp:30