38 class SimulationConfig
41 SimulationConfig() =
default;
42 SimulationConfig(
bool restart,
46 static SimulationConfig serializationTestObject();
51 const DatumDepth& datumDepths()
const;
53 bool useThresholdPressure()
const;
55 bool useNONNC()
const;
56 bool hasDISGAS()
const;
57 bool hasDISGASW()
const;
58 bool hasVAPOIL()
const;
59 bool hasVAPWAT()
const;
60 bool isThermal()
const;
62 EnergyModules energyModuleType()
const;
63 bool useEnthalpy()
const;
64 bool isDiffusive()
const;
65 bool hasPRECSALT()
const;
66 bool anyTUNING()
const;
68 bool operator==(
const SimulationConfig& data)
const;
69 static bool rst_cmp(
const SimulationConfig& full_config,
70 const SimulationConfig& rst_config);
72 template<
class Serializer>
75 serializer(m_ThresholdPressure);
76 serializer(m_bcconfig);
77 serializer(m_rock_config);
78 serializer(this->m_datum_depth);
80 serializer(m_useNONNC);
82 serializer(m_DISGASW);
85 serializer(m_energy_type);
86 serializer(m_useEnthalpy);
87 serializer(m_diffuse);
88 serializer(m_PRECSALT);
89 serializer(m_anyTUNING);
93 friend class EclipseState;
98 DatumDepth m_datum_depth{};
99 EnergyModules m_energy_type = EnergyModules::NoTemperature;
100 bool m_useCPR{
false};
101 bool m_useNONNC{
false};
102 bool m_DISGAS{
false};
103 bool m_DISGASW{
false};
104 bool m_VAPOIL{
false};
105 bool m_VAPWAT{
false};
106 bool m_useEnthalpy{
false};
107 bool m_diffuse{
false};
108 bool m_PRECSALT{
false};
109 bool m_anyTUNING{
false};
This class implements a small container which holds the transmissibility mulitpliers for all the face...
Definition Exceptions.hpp:30