mirror of
https://github.com/OPM/opm-simulators.git
synced 2025-02-25 18:55:30 -06:00
Pass the initial inplace values to Summary::eval()
This commit is contained in:
@@ -1866,6 +1866,10 @@ public:
|
|||||||
const std::map<std::pair<std::string, int>, double>& getBlockData()
|
const std::map<std::pair<std::string, int>, double>& getBlockData()
|
||||||
{ return blockData_; }
|
{ return blockData_; }
|
||||||
|
|
||||||
|
const Opm::Inplace& initialInplace() const {
|
||||||
|
return this->initialInplace_.value();
|
||||||
|
}
|
||||||
|
|
||||||
private:
|
private:
|
||||||
|
|
||||||
bool isDefunctParallelWell(std::string wname) const
|
bool isDefunctParallelWell(std::string wname) const
|
||||||
@@ -2309,6 +2313,9 @@ private:
|
|||||||
|| (keyword == "SAVE") || (keyword == "SFREQ"); // Not really supported
|
|| (keyword == "SAVE") || (keyword == "SFREQ"); // Not really supported
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
const Simulator& simulator_;
|
const Simulator& simulator_;
|
||||||
|
|
||||||
bool outputFipRestart_;
|
bool outputFipRestart_;
|
||||||
|
|||||||
@@ -322,6 +322,7 @@ public:
|
|||||||
wellData,
|
wellData,
|
||||||
groupAndNetworkData,
|
groupAndNetworkData,
|
||||||
miscSummaryData,
|
miscSummaryData,
|
||||||
|
eclOutputModule_.initialInplace(),
|
||||||
regionData,
|
regionData,
|
||||||
blockData,
|
blockData,
|
||||||
aquiferData);
|
aquiferData);
|
||||||
|
|||||||
Reference in New Issue
Block a user