From dff5716718dcd66f4d273cf6e030f38a0ce4ce8f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Atgeirr=20Fl=C3=B8=20Rasmussen?= Date: Mon, 3 Sep 2012 14:16:54 +0200 Subject: [PATCH] Documented new constructor. Fixed layout. --- opm/core/fluid/BlackoilPropertiesFromDeck.hpp | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/opm/core/fluid/BlackoilPropertiesFromDeck.hpp b/opm/core/fluid/BlackoilPropertiesFromDeck.hpp index 1d0a0d38..e6b9c5b4 100644 --- a/opm/core/fluid/BlackoilPropertiesFromDeck.hpp +++ b/opm/core/fluid/BlackoilPropertiesFromDeck.hpp @@ -45,9 +45,18 @@ namespace Opm /// to logical cartesian indices consistent with the deck. BlackoilPropertiesFromDeck(const EclipseGridParser& deck, const UnstructuredGrid& grid); + + /// Initialize from deck, grid and parameters. + /// \param deck Deck input parser + /// \param grid Grid to which property object applies, needed for the + /// mapping from cell indices (typically from a processed grid) + /// to logical cartesian indices consistent with the deck. + /// \param param Parameters. Accepted parameters include: + /// tab_size (200) number of uniform sample points for saturation tables. BlackoilPropertiesFromDeck(const EclipseGridParser& deck, const UnstructuredGrid& grid, const parameter::ParameterGroup& param); + /// Destructor. virtual ~BlackoilPropertiesFromDeck();