ReservoirCouplingMasterReportStep.hpp
Go to the documentation of this file.
1/*
2 Copyright 2025 Equinor ASA
3
4 This file is part of the Open Porous Media project (OPM).
5
6 OPM is free software: you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation, either version 3 of the License, or
9 (at your option) any later version.
10
11 OPM is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
15
16 You should have received a copy of the GNU General Public License
17 along with OPM. If not, see <http://www.gnu.org/licenses/>.
18*/
19
20#ifndef OPM_RESERVOIR_COUPLING_MASTER_REPORT_STEP_HPP
21#define OPM_RESERVOIR_COUPLING_MASTER_REPORT_STEP_HPP
22
25#include <opm/input/eclipse/Schedule/Schedule.hpp>
27#include <opm/common/OpmLog/OpmLog.hpp>
28
29#include <mpi.h>
30
31#include <vector>
32
33namespace Opm {
34
35// Avoid including the complete definition of ReservoirCouplingMaster here to avoid circular dependency.
36template <class Scalar> class ReservoirCouplingMaster;
37
58template <class Scalar>
60public:
67
72 );
73
76 const Parallel::Communication &comm() const { return this->master_.getComm(); }
77
81 const std::vector<std::string>& getMasterGroupNamesForSlave(std::size_t slave_idx) const {
82 return this->master_.getMasterGroupNamesForSlave(slave_idx);
83 }
84
87 const std::map<std::string, std::string>& getMasterGroupToSlaveNameMap() const {
88 return this->master_.getMasterGroupToSlaveNameMap();
89 }
90
96 const std::string &slave_name, const std::string &master_group_name) const;
97
101 MPI_Comm getSlaveComm(int index) const { return this->master_.getSlaveComm(index); }
102
107 Scalar getMasterGroupInjectionSurfaceRate(const std::string &group_name, ReservoirCoupling::Phase phase) const;
108
113 Scalar getMasterGroupInjectionReservoirRate(const std::string &group_name, ReservoirCoupling::Phase phase) const;
114
119 Scalar getMasterGroupProductionSurfaceRate(const std::string &group_name, ReservoirCoupling::Phase phase) const;
120
131 Scalar getMasterGroupProductionReservoirRate(const std::string &group_name, ReservoirCoupling::Phase phase) const;
132
136 const Potentials& getSlaveGroupPotentials(const std::string &master_group_name) const;
137
141 std::size_t numSlaveGroups(unsigned int index) const { return this->master_.numSlaveGroups(index); }
142
145 std::size_t numSlaves() const { return this->master_.numSlavesStarted(); }
146
149 ReservoirCoupling::Logger& logger() const { return this->master_.logger(); }
150
160
171
174 const Schedule &schedule() const { return this->master_.schedule(); }
175
177 std::size_t slave_idx, const std::vector<InjectionGroupTarget>& injection_targets
178 ) const;
180 std::size_t slave_idx, std::size_t num_injection_targets, std::size_t num_production_targets
181 ) const;
183 std::size_t slave_idx, const std::vector<ProductionGroupTarget>& production_targets
184 ) const;
185
191 void setReportStepIdx(int report_step_idx);
192
196 bool slaveIsActivated(int index) const { return this->master_.slaveIsActivated(index); }
197
201 const std::string &slaveName(int index) const { return this->master_.getSlaveName(index); }
202
203private:
210 Scalar getMasterGroupRate_(const std::string &group_name, ReservoirCoupling::Phase phase,
211 bool reservoir_rates, bool is_injection) const;
212
215
217 int report_step_idx_;
218
220 std::map<std::string, std::vector<SlaveGroupProductionData>> slave_group_production_data_;
221
223 std::map<std::string, std::vector<SlaveGroupInjectionData>> slave_group_injection_data_;
224};
225} // namespace Opm
226#endif // OPM_RESERVOIR_COUPLING_MASTER_REPORT_STEP_HPP
Definition: ReservoirCoupling.hpp:38
Definition: ReservoirCouplingMaster.hpp:38
Manages master-side reservoir coupling operations for a single report step.
Definition: ReservoirCouplingMasterReportStep.hpp:59
ReservoirCouplingMasterReportStep(ReservoirCouplingMaster< Scalar > &master)
Construct a report step manager for the master process.
const std::vector< std::string > & getMasterGroupNamesForSlave(std::size_t slave_idx) const
Get the names of master groups associated with a specific slave.
Definition: ReservoirCouplingMasterReportStep.hpp:81
MPI_Comm getSlaveComm(int index) const
Get the MPI communicator for a specific slave process.
Definition: ReservoirCouplingMasterReportStep.hpp:101
void receiveProductionDataFromSlaves()
Receive production data from all active slave processes.
Scalar getMasterGroupInjectionSurfaceRate(const std::string &group_name, ReservoirCoupling::Phase phase) const
Get the injection surface rate for a master group.
const Parallel::Communication & comm() const
Get the MPI communicator for master-slave communication.
Definition: ReservoirCouplingMasterReportStep.hpp:76
std::size_t getMasterGroupCanonicalIdx(const std::string &slave_name, const std::string &master_group_name) const
Get the canonical index for a master group.
const std::map< std::string, std::string > & getMasterGroupToSlaveNameMap() const
Get the mapping from master group names to slave names.
Definition: ReservoirCouplingMasterReportStep.hpp:87
void sendProductionTargetsToSlave(std::size_t slave_idx, const std::vector< ProductionGroupTarget > &production_targets) const
void setReportStepIdx(int report_step_idx)
Set the current report step index.
Scalar getMasterGroupProductionSurfaceRate(const std::string &group_name, ReservoirCoupling::Phase phase) const
Get the production surface rate for a master group.
ReservoirCoupling::Logger & logger() const
Get the logger for reservoir coupling operations.
Definition: ReservoirCouplingMasterReportStep.hpp:149
Scalar getMasterGroupProductionReservoirRate(const std::string &group_name, ReservoirCoupling::Phase phase) const
Get the production reservoir rate for a master group.
const Schedule & schedule() const
Get the simulation schedule.
Definition: ReservoirCouplingMasterReportStep.hpp:174
void sendNumGroupTargetsToSlave(std::size_t slave_idx, std::size_t num_injection_targets, std::size_t num_production_targets) const
bool slaveIsActivated(int index) const
Check if a specific slave process has been activated.
Definition: ReservoirCouplingMasterReportStep.hpp:196
const Potentials & getSlaveGroupPotentials(const std::string &master_group_name) const
Get the production potentials for a slave group.
void receiveInjectionDataFromSlaves()
Receive injection data from all active slave processes.
std::size_t numSlaves() const
Get the total number of active slave processes.
Definition: ReservoirCouplingMasterReportStep.hpp:145
void sendInjectionTargetsToSlave(std::size_t slave_idx, const std::vector< InjectionGroupTarget > &injection_targets) const
Scalar getMasterGroupInjectionReservoirRate(const std::string &group_name, ReservoirCoupling::Phase phase) const
Get the injection reservoir rate for a master group.
std::size_t numSlaveGroups(unsigned int index) const
Get the number of slave groups for a specific slave process.
Definition: ReservoirCouplingMasterReportStep.hpp:141
const std::string & slaveName(int index) const
Get the name of a specific slave process.
Definition: ReservoirCouplingMasterReportStep.hpp:201
Dune::Communication< MPIComm > Communication
Definition: ParallelCommunication.hpp:30
MessageTag
Definition: ReservoirCoupling.hpp:125
Phase
Phase indices for reservoir coupling, we currently only support black-oil phases (oil,...
Definition: ReservoirCoupling.hpp:147
Definition: blackoilbioeffectsmodules.hh:43
Definition: ReservoirCoupling.hpp:211
Definition: ReservoirCoupling.hpp:166
Definition: ReservoirCoupling.hpp:221
Definition: ReservoirCoupling.hpp:205
Definition: ReservoirCoupling.hpp:190