GasLiftSingleWell_impl.hpp
Go to the documentation of this file.
1/*
2 Copyright 2020 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_GASLIFT_SINGLE_WELL_IMPL_HEADER_INCLUDED
21#define OPM_GASLIFT_SINGLE_WELL_IMPL_HEADER_INCLUDED
22
23// Improve IDE experience
24#ifndef OPM_GASLIFT_SINGLE_WELL_HEADER_INCLUDED
25#include <config.h>
27#endif
28
29#include <opm/common/TimingMacros.hpp>
30
31#include <opm/input/eclipse/Schedule/GasLiftOpt.hpp>
32#include <opm/input/eclipse/Schedule/Well/Well.hpp>
33
34#include <string>
35#include <vector>
36
37#include <fmt/format.h>
38
39namespace Opm {
40
41template<typename TypeTag>
44 const Simulator& simulator,
45 const SummaryState& summary_state,
46 DeferredLogger& deferred_logger,
48 const GroupState<Scalar>& group_state,
50 GLiftSyncGroups &sync_groups,
51 const Parallel::Communication& comm,
52 bool glift_debug)
53 // The parent class GasLiftSingleWellGeneric contains all stuff
54 // that is not dependent on TypeTag
55 : GasLiftSingleWellGeneric<Scalar, IndexTraits>(deferred_logger,
56 well_state,
57 group_state,
58 well.wellEcl(),
59 summary_state,
60 group_info,
61 simulator.vanguard().schedule(),
62 simulator.episodeIndex(),
63 sync_groups,
64 comm,
65 glift_debug)
66 , simulator_{simulator}
67 , well_{well}
68{
69 const auto& gl_well = *this->gl_well_;
70 if (this->useFixedAlq_(gl_well)) {
71 this->updateWellStateAlqFixedValue_(gl_well);
72 this->optimize_ = false; // lift gas supply is fixed
73 }
74 else {
75 setAlqMaxRate_(gl_well);
76 this->optimize_ = true;
77 }
78
79 setupPhaseVariables_();
80 // get the alq value used for this well for the previous iteration (a
81 // nonlinear iteration in assemble() in BlackoilWellModel).
82 // If gas lift optimization has not been applied to this well yet, the
83 // default value is used.
84 this->orig_alq_ = this->well_state_.well(this->well_name_).alq_state.get();
85 if (this->optimize_) {
86 this->setAlqMinRate_(gl_well);
87 // NOTE: According to item 4 in WLIFTOPT, this value does not
88 // have to be positive.
89 // TODO: Does it make sense to have a negative value?
90 this->alpha_w_ = gl_well.weight_factor();
91 if (this->alpha_w_ <= 0 ) {
92 this->displayWarning_("Nonpositive value for alpha_w ignored");
93 this->alpha_w_ = 1.0;
94 }
95
96 // NOTE: According to item 6 in WLIFTOPT:
97 // "If this value is greater than zero, the incremental gas rate will influence
98 // the calculation of the incremental gradient and may be used
99 // to discourage the allocation of lift gas to wells which produce more gas."
100 // TODO: Does this mean that we should ignore this value if it
101 // is negative?
102 this->alpha_g_ = gl_well.inc_weight_factor();
103
104 // TODO: adhoc value.. Should we keep max_iterations_ as a safety measure
105 // or does it not make sense to have it?
106 this->max_iterations_ = 1000;
107 }
108}
109
110/****************************************
111 * Private methods in alphabetical order
112 ****************************************/
113
114template<typename TypeTag>
115typename GasLiftSingleWell<TypeTag>::BasicRates
117computeWellRates_(Scalar bhp, bool bhp_is_limited, bool debug_output ) const
118{
119 std::vector<Scalar> potentials(this->NUM_PHASES, 0.0);
120 this->well_.computeWellRatesWithBhp(this->simulator_,
121 bhp,
122 potentials,
123 this->deferred_logger_);
124 if (debug_output) {
125 const std::string msg = fmt::format("computed well potentials given bhp {}, "
126 "oil: {}, gas: {}, water: {}", bhp,
127 -potentials[this->oil_pos_], -potentials[this->gas_pos_],
128 -potentials[this->water_pos_]);
129 this->displayDebugMessage_(msg);
130 }
131
132 std::transform(potentials.begin(), potentials.end(),
133 potentials.begin(),
134 [](const auto& potential)
135 { return std::min(Scalar{0}, potential); });
136 return {-potentials[this->oil_pos_],
137 -potentials[this->gas_pos_],
138 -potentials[this->water_pos_],
139 bhp_is_limited
140 };
141}
142
143template<typename TypeTag>
144std::optional<typename GasLiftSingleWell<TypeTag>::Scalar>
145GasLiftSingleWell<TypeTag>::
146computeBhpAtThpLimit_(Scalar alq, bool debug_output) const
147{
148 OPM_TIMEFUNCTION();
149 const auto& wgHelper = this->simulator_.problem().wellModel().wgHelper();
150 auto bhp_at_thp_limit = this->well_.computeBhpAtThpLimitProdWithAlq(
151 this->simulator_,
152 wgHelper,
153 this->summary_state_,
154 alq,
155 this->deferred_logger_,
156 /*iterate_if_no_solution */ false);
157 if (bhp_at_thp_limit) {
158 if (*bhp_at_thp_limit < this->controls_.bhp_limit) {
159 if (debug_output && this->debug) {
160 const std::string msg = fmt::format(
161 "Computed bhp ({}) from thp limit is below bhp limit ({}), (ALQ = {})."
162 " Using bhp limit instead",
163 *bhp_at_thp_limit, this->controls_.bhp_limit, alq
164 );
165 this->displayDebugMessage_(msg);
166 }
167 bhp_at_thp_limit = this->controls_.bhp_limit;
168 }
169 //bhp_at_thp_limit = std::max(*bhp_at_thp_limit, this->controls_.bhp_limit);
170 }
171 else {
172 const std::string msg = fmt::format(
173 "Failed in getting converged bhp potential from thp limit (ALQ = {})", alq);
174 this->displayDebugMessage_(msg);
175 }
176 return bhp_at_thp_limit;
177}
178
179template<typename TypeTag>
180void
181GasLiftSingleWell<TypeTag>::
182setupPhaseVariables_()
183{
184#ifndef NDEBUG
185 bool num_phases_ok = (FluidSystem::numActivePhases()== 3);
186#endif
187 if (FluidSystem::numActivePhases()== 2) {
188 // NOTE: We support two-phase oil-water flow, by setting the gas flow rate
189 // to zero. This is done by initializing the potential vector to zero:
190 //
191 // std::vector<double> potentials(NUM_PHASES, 0.0);
192 //
193 // see e.g. runOptimizeLoop_() in GasLiftSingleWellGeneric.cpp
194 // In addition the VFP calculations, e.g. to calculate BHP from THP
195 // has been adapted to the two-phase oil-water case, see the comment
196 // in WellInterfaceGeneric.cpp for the method adaptRatesForVFP() for
197 // more information.
198 if ( FluidSystem::phaseIsActive(FluidSystem::waterPhaseIdx)
199 && FluidSystem::phaseIsActive(FluidSystem::oilPhaseIdx)
200 && !FluidSystem::phaseIsActive(FluidSystem::gasPhaseIdx) )
201 {
202#ifndef NDEBUG
203 num_phases_ok = true; // two-phase oil-water is also supported
204#endif
205 }
206 else {
207 throw std::logic_error("Two-phase gas lift optimization only supported"
208 " for oil and water");
209 }
210 }
211 assert(num_phases_ok);
212 this->oil_pos_ = FluidSystem::canonicalToActivePhaseIdx(FluidSystem::oilPhaseIdx);
213 this->gas_pos_ = FluidSystem::canonicalToActivePhaseIdx(FluidSystem::gasPhaseIdx);
214 this->water_pos_ = FluidSystem::canonicalToActivePhaseIdx(FluidSystem::waterPhaseIdx);
215}
216
217template<typename TypeTag>
218void
219GasLiftSingleWell<TypeTag>::
220setAlqMaxRate_(const GasLiftWell& well)
221{
222 const auto& max_alq_optional = well.max_rate();
223 if (max_alq_optional) {
224 // NOTE: To prevent extrapolation of the VFP tables, any value
225 // entered here must not exceed the largest ALQ value in the well's VFP table.
226 this->max_alq_ = *max_alq_optional;
227 }
228 else { // i.e. WLIFTOPT, item 3 has been defaulted
229 // According to the manual for WLIFTOPT, item 3:
230 // The default value should be set to the largest ALQ
231 // value in the well's VFP table
232 const auto& table = well_.vfpProperties()->getProd()->getTable(
233 this->controls_.vfp_table_number);
234 const auto& alq_values = table.getALQAxis();
235 // Assume the alq_values are sorted in ascending order, so
236 // the last item should be the largest value:
237 this->max_alq_ = alq_values.back();
238 }
239}
240
241template<typename TypeTag>
242bool
243GasLiftSingleWell<TypeTag>::
244checkThpControl_() const
245{
246 const int well_index = this->well_state_.index(this->well_name_).value();
247 const Well::ProducerCMode& control_mode =
248 this->well_state_.well(well_index).production_cmode;
249 bool thp_control = control_mode == Well::ProducerCMode::THP;
250 const auto& well = getWell();
251 thp_control = thp_control || well.thpLimitViolatedButNotSwitched();
252 if (this->debug) {
253 if (!thp_control) {
254 this->displayDebugMessage_("Well is not under THP control, skipping iteration..");
255 }
256 }
257 return thp_control;
258}
259
260}
261
262#endif
Scalar get() const
Definition: DeferredLogger.hpp:57
WellState< GetPropType< TypeTag, Properties::Scalar >, GetPropType< TypeTag, Properties::FluidSystem >::IndexTraitsType > & well_state_
Definition: GasLiftCommon.hpp:54
Definition: GasLiftGroupInfo.hpp:46
Definition: GasLiftSingleWellGeneric.hpp:48
Definition: GasLiftSingleWell.hpp:39
GasLiftSingleWell(const WellInterface< TypeTag > &well, const Simulator &simulator, const SummaryState &summary_state, DeferredLogger &deferred_logger, WellState< Scalar, IndexTraits > &well_state, const GroupState< Scalar > &group_state, GasLiftGroupInfo< Scalar, IndexTraits > &group_info, GLiftSyncGroups &sync_groups, const Parallel::Communication &comm, bool glift_debug)
Definition: GasLiftSingleWell_impl.hpp:43
Definition: GroupState.hpp:41
ALQState< Scalar > alq_state
Definition: SingleWellState.hpp:133
Definition: WellInterface.hpp:77
Definition: WellState.hpp:66
const SingleWellState< Scalar, IndexTraits > & well(std::size_t well_index) const
Definition: WellState.hpp:290
Dune::Communication< MPIComm > Communication
Definition: ParallelCommunication.hpp:30
Definition: blackoilbioeffectsmodules.hh:43