mirror of
https://github.com/OPM/opm-simulators.git
synced 2024-12-01 13:29:08 -06:00
Merge pull request #2935 from joakim-hove/add-inplace
Pass the initial inplace values to Summary::eval()
This commit is contained in:
commit
26c3262a2a
@ -1866,6 +1866,10 @@ public:
|
||||
const std::map<std::pair<std::string, int>, double>& getBlockData()
|
||||
{ return blockData_; }
|
||||
|
||||
const Opm::Inplace& initialInplace() const {
|
||||
return this->initialInplace_.value();
|
||||
}
|
||||
|
||||
private:
|
||||
|
||||
bool isDefunctParallelWell(std::string wname) const
|
||||
@ -2309,6 +2313,9 @@ private:
|
||||
|| (keyword == "SAVE") || (keyword == "SFREQ"); // Not really supported
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
const Simulator& simulator_;
|
||||
|
||||
bool outputFipRestart_;
|
||||
|
@ -322,6 +322,7 @@ public:
|
||||
wellData,
|
||||
groupAndNetworkData,
|
||||
miscSummaryData,
|
||||
eclOutputModule_.initialInplace(),
|
||||
regionData,
|
||||
blockData,
|
||||
aquiferData);
|
||||
|
Loading…
Reference in New Issue
Block a user