From d56eb168375018c271ecce770d9b1bbd5a18e198 Mon Sep 17 00:00:00 2001 From: Arne Morten Kvarving Date: Mon, 24 Oct 2022 10:57:09 +0200 Subject: [PATCH] WellInterfaceGeneric: add accessor for completions --- opm/simulators/wells/WellInterfaceGeneric.hpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/opm/simulators/wells/WellInterfaceGeneric.hpp b/opm/simulators/wells/WellInterfaceGeneric.hpp index 8fb0d6a4a..3972ad7e8 100644 --- a/opm/simulators/wells/WellInterfaceGeneric.hpp +++ b/opm/simulators/wells/WellInterfaceGeneric.hpp @@ -172,6 +172,10 @@ public: return well_index_; } + const std::map>& getCompletions() const { + return completions_; + } + double getTHPConstraint(const SummaryState& summaryState) const; double getALQ(const WellState& well_state) const; double wsolvent() const;