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