From 37f9d5d14e891f2e703586f0a1358d70fe6018fe Mon Sep 17 00:00:00 2001 From: Markus Blatt Date: Thu, 5 Feb 2015 15:43:22 +0100 Subject: [PATCH] Use correct name for the method parameter. --- opm/core/simulator/SimulatorState.hpp | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) 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: