opm-common
Rock2dtrTable.hpp
1 /*
2  Copyright (C) 2019 by Norce
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 #ifndef OPM_PARSER_ROCK2DTR_TABLE_HPP
20 #define OPM_PARSER_ROCK2DTR_TABLE_HPP
21 
22 #include <cstddef>
23 #include <vector>
24 
25 namespace Opm {
26 
27  class DeckRecord;
28 
29  class Rock2dtrTable {
30  public:
31  Rock2dtrTable();
32 
33  static Rock2dtrTable serializationTestObject();
34 
35  void init(const Opm::DeckRecord& record, std::size_t tableIdx);
36  std::size_t size() const;
37  std::size_t sizeMultValues() const;
38  double getPressureValue(std::size_t index) const;
39  double getTransMultValue(std::size_t pressureIndex, std::size_t saturationIndex ) const;
40 
41  bool operator==(const Rock2dtrTable& data) const;
42 
43  template<class Serializer>
44  void serializeOp(Serializer& serializer)
45  {
46  serializer(m_transMultValues);
47  serializer(m_pressureValues);
48  }
49 
50  protected:
51  std::vector< std::vector <double> > m_transMultValues;
52  std::vector< double > m_pressureValues;
53 
54  };
55 
56 }
57 
58 #endif
This class implements a small container which holds the transmissibility mulitpliers for all the face...
Definition: Exceptions.hpp:30
Definition: Rock2dtrTable.hpp:29
Definition: DeckRecord.hpp:33
Class for (de-)serializing.
Definition: Serializer.hpp:95