Now initializes rock properties.
This commit is contained in:
parent
8e627bf820
commit
f278f87f14
@ -22,8 +22,10 @@
|
||||
namespace Opm
|
||||
{
|
||||
|
||||
BlackoilPropertiesFromDeck::BlackoilPropertiesFromDeck(const Dune::EclipseGridParser& deck)
|
||||
BlackoilPropertiesFromDeck::BlackoilPropertiesFromDeck(const Dune::EclipseGridParser& deck,
|
||||
const std::vector<int>& global_cell)
|
||||
{
|
||||
rock_.init(deck, global_cell);
|
||||
pvt_.init(deck);
|
||||
satprops_.init(deck);
|
||||
}
|
||||
|
@ -35,8 +35,12 @@ namespace Opm
|
||||
class BlackoilPropertiesFromDeck : public BlackoilPropertiesInterface
|
||||
{
|
||||
public:
|
||||
/// Construct from deck.
|
||||
BlackoilPropertiesFromDeck(const Dune::EclipseGridParser& deck);
|
||||
/// Construct from deck and cell mapping.
|
||||
/// \param deck eclipse input parser
|
||||
/// \param global_cell mapping from cell indices (typically from a processed grid)
|
||||
/// to logical cartesian indices consistent with the deck.
|
||||
BlackoilPropertiesFromDeck(const Dune::EclipseGridParser& deck,
|
||||
const std::vector<int>& global_cell);
|
||||
|
||||
/// Destructor.
|
||||
virtual ~BlackoilPropertiesFromDeck();
|
||||
|
Loading…
Reference in New Issue
Block a user