RescoupConstraintsCalculator.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_RESCOUP_CONSTRAINTS_CALCULATOR_HPP
21#define OPM_RESCOUP_CONSTRAINTS_CALCULATOR_HPP
22#include <opm/input/eclipse/Schedule/Group/GuideRate.hpp>
23#include <opm/material/fluidsystems/PhaseUsageInfo.hpp>
33
34namespace Opm {
35
51template<class Scalar, class IndexTraits>
53public:
56
66 GuideRateHandler<Scalar, IndexTraits>& guide_rate_handler,
68 );
69
82private:
100 std::tuple<std::vector<InjectionGroupTarget>, std::vector<ProductionGroupConstraints>>
101 calculateSlaveGroupConstraints_(std::size_t slave_idx, GroupConstraintCalculator<Scalar, IndexTraits>& calculator) const;
102
118 void capAndRedistributeProductionTargets_(
120 std::vector<std::vector<ProductionGroupConstraints>>& all_production_constraints);
121
129 void excludeInactiveSlaveMasterGroupsFromDistribution_();
130
141 Scalar potentialForProductionCmode_(
143 Group::ProductionCMode cmode) const;
144
153 void restoreMasterGroupControlsFromSchedule_();
154
168 void sendSlaveGroupConstraintsToSlave_(
169 const ReservoirCouplingMaster<Scalar>& rescoup_master,
170 std::size_t slave_idx,
171 const std::vector<InjectionGroupTarget>& injection_targets,
172 const std::vector<ProductionGroupConstraints>& production_constraints
173 ) const;
174
183 void updateGCWAndTargetReductions_();
184
185 GuideRateHandler<Scalar, IndexTraits>& guide_rate_handler_;
186 GroupStateHelper<Scalar, IndexTraits>& group_state_helper_;
187 const WellState<Scalar, IndexTraits>& well_state_;
188 const GroupState<Scalar>& group_state_;
189 const int report_step_idx_;
190 const Schedule& schedule_;
191 const SummaryState& summary_state_;
192 DeferredLogger& deferred_logger_;
193 ReservoirCouplingMaster<Scalar>& reservoir_coupling_master_;
195 const PhaseUsageInfo<IndexTraits>& phase_usage_;
196};
197
198} // namespace Opm
199#endif // OPM_RESCOUP_CONSTRAINTS_CALCULATOR_HPP
Class for handling the blackoil well model.
Definition: BlackoilWellModelGeneric.hpp:97
Definition: DeferredLogger.hpp:57
Definition: GroupConstraintCalculator.hpp:55
Definition: GroupStateHelper.hpp:56
Definition: GroupState.hpp:41
Handles computation and reporting of guide rates for wells and groups.
Definition: GuideRateHandler.hpp:46
Definition: GasLiftGroupInfo.hpp:38
Computes per-master-group production targets and per-rate-type limits for reservoir coupling,...
Definition: RescoupConstraintsCalculator.hpp:52
void calculateMasterGroupConstraintsAndSendToSlaves()
Run the full master-side target distribution and dispatch the resulting constraints to each activated...
RescoupConstraintsCalculator(GuideRateHandler< Scalar, IndexTraits > &guide_rate_handler, GroupStateHelper< Scalar, IndexTraits > &group_state_helper)
Construct a calculator bound to the master's per-sync-step state.
Definition: ReservoirCouplingMaster.hpp:38
Definition: WellState.hpp:66
Definition: blackoilbioeffectsmodules.hh:45
Definition: ReservoirCoupling.hpp:235
Definition: ReservoirCoupling.hpp:187
Definition: ReservoirCoupling.hpp:245