20#ifndef OPM_RESERVOIR_COUPLING_MASTER_REPORT_STEP_HPP
21#define OPM_RESERVOIR_COUPLING_MASTER_REPORT_STEP_HPP
23#include <opm/simulators/flow/rescoup/ReservoirCoupling.hpp>
24#include <opm/simulators/flow/rescoup/ReservoirCouplingMpiTraits.hpp>
25#include <opm/input/eclipse/Schedule/Schedule.hpp>
26#include <opm/simulators/utils/ParallelCommunication.hpp>
27#include <opm/common/OpmLog/OpmLog.hpp>
58template <
class Scalar>
61 using MessageTag = ReservoirCoupling::MessageTag;
76 const Parallel::Communication &
comm()
const {
return this->master_.getComm(); }
82 return this->master_.getMasterGroupNamesForSlave(slave_idx);
88 return this->master_.getMasterGroupToSlaveNameMap();
96 const std::string &slave_name,
const std::string &master_group_name)
const;
101 MPI_Comm
getSlaveComm(
int index)
const {
return this->master_.getSlaveComm(index); }
131 const std::string &group_name, ReservoirCoupling::Phase phase)
const;
168 std::size_t
numSlaveGroups(
unsigned int index)
const {
return this->master_.numSlaveGroups(index); }
172 std::size_t
numSlaves()
const {
return this->master_.numSlavesStarted(); }
201 const Schedule &
schedule()
const {
return this->master_.schedule(); }
203 void sendInjectionTargetsToSlave(
204 std::size_t slave_idx,
const std::vector<InjectionGroupTarget>& injection_targets
206 void sendNumGroupConstraintsToSlave(
207 std::size_t slave_idx, std::size_t num_injection_targets, std::size_t num_production_constraints
209 void sendProductionConstraintsToSlave(
210 std::size_t slave_idx,
const std::vector<ProductionGroupConstraints>& production_constraints
232 const std::string &
slaveName(
int index)
const {
return this->master_.getSlaveName(index); }
240 Scalar getMasterGroupRate_(
const std::string &group_name, ReservoirCoupling::Phase phase,
241 ReservoirCoupling::RateKind kind)
const;
247 int report_step_idx_;
250 std::map<std::string, std::vector<SlaveGroupProductionData>> slave_group_production_data_;
253 std::map<std::string, std::vector<SlaveGroupInjectionData>> slave_group_injection_data_;
257 bool is_first_substep_of_sync_timestep_{
true};
264 bool needs_slave_data_receive_{
false};
ReservoirCouplingMasterReportStep(ReservoirCouplingMaster< Scalar > &master)
Construct a report step manager for the master process.
Definition ReservoirCouplingMasterReportStep.cpp:41
bool isFirstSubstepOfSyncTimestep() const
Check if this is the first substep within a "sync" timestep.
Definition ReservoirCouplingMasterReportStep.hpp:155
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.
Definition ReservoirCouplingMasterReportStep.cpp:180
Scalar getMasterGroupInjectionSurfaceRate(const std::string &group_name, ReservoirCoupling::Phase phase) const
Get the injection surface rate for a master group.
Definition ReservoirCouplingMasterReportStep.cpp:63
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.
Definition ReservoirCouplingMasterReportStep.cpp:55
const std::map< std::string, std::string > & getMasterGroupToSlaveNameMap() const
Get the mapping from master group names to slave names.
Definition ReservoirCouplingMasterReportStep.hpp:87
void setNeedsSlaveDataReceive(bool value)
Set/clear the flag for pending slave data receive.
Definition ReservoirCouplingMasterReportStep.hpp:163
Scalar getMasterGroupNetworkProductionSurfaceRate(const std::string &group_name, ReservoirCoupling::Phase phase) const
Get the network production surface rate for a master group.
Definition ReservoirCouplingMasterReportStep.cpp:87
void setReportStepIdx(int report_step_idx)
Set the current report step index.
Definition ReservoirCouplingMasterReportStep.cpp:318
Scalar getMasterGroupProductionSurfaceRate(const std::string &group_name, ReservoirCoupling::Phase phase) const
Get the production surface rate for a master group.
Definition ReservoirCouplingMasterReportStep.cpp:79
ReservoirCoupling::Logger & logger() const
Get the logger for reservoir coupling operations.
Definition ReservoirCouplingMasterReportStep.hpp:176
bool needsSlaveDataReceive() const
Check if the master needs to receive slave data at the next timeStepSucceeded() call.
Definition ReservoirCouplingMasterReportStep.hpp:160
Scalar getMasterGroupProductionReservoirRate(const std::string &group_name, ReservoirCoupling::Phase phase) const
Get the production reservoir rate for a master group.
Definition ReservoirCouplingMasterReportStep.cpp:97
const Schedule & schedule() const
Get the simulation schedule.
Definition ReservoirCouplingMasterReportStep.hpp:201
const Potentials & getSlaveGroupPotentials(const std::string &master_group_name) const
Get the production potentials for a slave group.
Definition ReservoirCouplingMasterReportStep.cpp:105
bool slaveIsActivated(int index) const
Check if a specific slave process has been activated.
Definition ReservoirCouplingMasterReportStep.hpp:227
void receiveInjectionDataFromSlaves()
Receive injection data from all active slave processes.
Definition ReservoirCouplingMasterReportStep.cpp:127
std::size_t numSlaves() const
Get the total number of active slave processes.
Definition ReservoirCouplingMasterReportStep.hpp:172
Scalar getMasterGroupInjectionReservoirRate(const std::string &group_name, ReservoirCoupling::Phase phase) const
Get the injection reservoir rate for a master group.
Definition ReservoirCouplingMasterReportStep.cpp:71
void setFirstSubstepOfSyncTimestep(bool value)
Set whether this is the first substep within a "sync" timestep.
Definition ReservoirCouplingMasterReportStep.hpp:215
std::size_t numSlaveGroups(unsigned int index) const
Get the number of slave groups for a specific slave process.
Definition ReservoirCouplingMasterReportStep.hpp:168
const std::string & slaveName(int index) const
Get the name of a specific slave process.
Definition ReservoirCouplingMasterReportStep.hpp:232
Definition ReservoirCouplingMaster.hpp:38
Definition ReservoirCoupling.hpp:42
This file contains a set of helper functions used by VFPProd / VFPInj.
Definition blackoilbioeffectsmodules.hh:45
Definition ReservoirCoupling.hpp:235
Definition ReservoirCoupling.hpp:187
Definition ReservoirCoupling.hpp:245
Definition ReservoirCoupling.hpp:229
Definition ReservoirCoupling.hpp:211