fix the ADD and EQUALS grid property modifiers

This commit is contained in:
Andreas Lauser
2014-06-03 17:45:55 +02:00
parent c7429dbb23
commit 7c53febf57
9 changed files with 133 additions and 80 deletions

View File

@@ -56,6 +56,8 @@ namespace Opm {
void initTitle(DeckConstPtr deck);
void initProperties(DeckConstPtr deck);
double getSIScaling(const std::string &dimensionString) const;
void scanSection(std::shared_ptr<Opm::Section> section , BoxManager& boxManager);
void handleADDKeyword(DeckKeywordConstPtr deckKeyword , BoxManager& boxManager);
void handleBOXKeyword(DeckKeywordConstPtr deckKeyword , BoxManager& boxManager);
@@ -73,6 +75,7 @@ namespace Opm {
ScheduleConstPtr schedule;
std::set<enum Phase::PhaseEnum> phases;
std::string m_title;
std::shared_ptr<UnitSystem> m_unitSystem;
std::shared_ptr<GridProperties<int> > m_intGridProperties;
std::shared_ptr<GridProperties<double> > m_doubleGridProperties;
};