19 #ifndef OPM_PARSER_PVTWSALT_TABLE_HPP 20 #define OPM_PARSER_PVTWSALT_TABLE_HPP 38 std::size_t size()
const;
39 std::vector<double> getSaltConcentrationColumn()
const;
40 std::vector<double> getFormationVolumeFactorColumn()
const;
41 std::vector<double> getCompressibilityColumn()
const;
42 std::vector<double> getViscosityColumn()
const;
43 std::vector<double> getViscosibilityColumn()
const;
44 double getReferencePressureValue()
const;
45 double getReferenceSaltConcentrationValue()
const;
46 const std::vector<double>& getTableValues()
const;
50 template<
class Serializer>
53 serializer(m_pRefValues);
54 serializer(m_saltConsRefValues);
55 serializer(m_tableValues);
59 double m_pRefValues{};
60 double m_saltConsRefValues{};
61 std::vector <double> m_tableValues;
Definition: PvtwsaltTable.hpp:30
This class implements a small container which holds the transmissibility mulitpliers for all the face...
Definition: Exceptions.hpp:30
Definition: DeckRecord.hpp:32
Class for (de-)serializing.
Definition: Serializer.hpp:94