opm-simulators
Loading...
Searching...
No Matches
RescoupConstraintsCalculator.hpp
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>
24#include <opm/simulators/flow/rescoup/ReservoirCoupling.hpp>
25#include <opm/simulators/flow/rescoup/ReservoirCouplingMaster.hpp>
26#include <opm/simulators/utils/DeferredLogger.hpp>
27#include <opm/simulators/wells/BlackoilWellModelGeneric.hpp>
28#include <opm/simulators/wells/GroupState.hpp>
29#include <opm/simulators/wells/GroupStateHelper.hpp>
30#include <opm/simulators/wells/GroupConstraintCalculator.hpp>
31#include <opm/simulators/wells/GuideRateHandler.hpp>
32#include <opm/simulators/wells/WellState.hpp>
33
34namespace Opm {
35
36template<class Scalar, class IndexTraits>
37class RescoupConstraintsCalculator {
38public:
39 using InjectionGroupTarget = ReservoirCoupling::InjectionGroupTarget<Scalar>;
40 using ProductionGroupConstraints = ReservoirCoupling::ProductionGroupConstraints<Scalar>;
41 RescoupConstraintsCalculator(
42 GuideRateHandler<Scalar, IndexTraits>& guide_rate_handler,
44 );
45
46 void calculateMasterGroupConstraintsAndSendToSlaves();
47private:
48 std::tuple<std::vector<InjectionGroupTarget>, std::vector<ProductionGroupConstraints>>
49 calculateSlaveGroupConstraints_(std::size_t slave_idx, GroupConstraintCalculator<Scalar, IndexTraits>& calculator) const;
50 void sendSlaveGroupConstraintsToSlave_(
51 const ReservoirCouplingMaster<Scalar>& rescoup_master,
52 std::size_t slave_idx,
53 const std::vector<InjectionGroupTarget>& injection_targets,
54 const std::vector<ProductionGroupConstraints>& production_constraints
55 ) const;
56
57 GuideRateHandler<Scalar, IndexTraits>& guide_rate_handler_;
58 const GroupStateHelper<Scalar, IndexTraits>& group_state_helper_;
59 const WellState<Scalar, IndexTraits>& well_state_;
60 const GroupState<Scalar>& group_state_;
61 const int report_step_idx_;
62 const Schedule& schedule_;
63 const SummaryState& summary_state_;
64 DeferredLogger& deferred_logger_;
65 ReservoirCouplingMaster<Scalar>& reservoir_coupling_master_;
67 const PhaseUsageInfo<IndexTraits>& phase_usage_;
68};
69
70} // namespace Opm
71#endif // OPM_RESCOUP_CONSTRAINTS_CALCULATOR_HPP
Class for handling the blackoil well model.
Definition BlackoilWellModelGeneric.hpp:97
Definition DeferredLogger.hpp:57
Calculate group-level constraints for production and injection.
Definition GroupConstraintCalculator.hpp:55
Definition GroupStateHelper.hpp:57
Definition GroupState.hpp:41
Handles computation and reporting of guide rates for wells and groups.
Definition GuideRateHandler.hpp:46
Definition GasLiftGroupInfo.hpp:38
Definition ReservoirCouplingMaster.hpp:38
The state of a set of wells, tailored for use by the fully implicit blackoil simulator.
Definition WellState.hpp:66
This file contains a set of helper functions used by VFPProd / VFPInj.
Definition blackoilbioeffectsmodules.hh:45
Definition ReservoirCoupling.hpp:235
Definition ReservoirCoupling.hpp:245