diff --git a/opm/core/simulator/SimulatorState.hpp b/opm/core/simulator/SimulatorState.hpp index 71a0a605..666d3208 100644 --- a/opm/core/simulator/SimulatorState.hpp +++ b/opm/core/simulator/SimulatorState.hpp @@ -17,7 +17,7 @@ namespace Opm virtual void init(const UnstructuredGrid& g, int num_phases); - virtual void init(int number_of_cells, int number_of_phases, int num_phases); + virtual void init(int number_of_cells, int number_of_faces, int num_phases); enum ExtremalSat { MinSat, MaxSat }; @@ -57,10 +57,15 @@ namespace Opm double epsilon = 1e-8) const; private: int num_phases_; + /// \brief pressure per cell. std::vector press_ ; + /// \brief temperature per cell. std::vector temp_ ; + /// \brief pressure per face. std::vector fpress_; + /// \brief The fluxes at the faces. std::vector flux_ ; + /// \brief The saturation of each phase per cell. std::vector sat_ ; protected: