Improve stopped wells logic and log messages.

This commit is contained in:
Atgeirr Flø Rasmussen 2019-10-03 16:44:44 +02:00 committed by Tor Harald Sandve
parent 2b9f5fb4fb
commit a536b90891
5 changed files with 54 additions and 28 deletions

View File

@ -681,6 +681,7 @@ namespace Opm {
continue; continue;
} else { } else {
// stopped wells are added to the container but marked as stopped // stopped wells are added to the container but marked as stopped
well_state_.thp()[w] = 0.;
wellIsStopped = true; wellIsStopped = true;
} }
} }

View File

@ -283,6 +283,8 @@ namespace Opm
mutable std::vector<double> ipr_a_; mutable std::vector<double> ipr_a_;
mutable std::vector<double> ipr_b_; mutable std::vector<double> ipr_b_;
bool changed_to_stopped_this_step_ = false;
const EvalWell& getBhp() const; const EvalWell& getBhp() const;
EvalWell getQs(const int comp_idx) const; EvalWell getQs(const int comp_idx) const;

View File

@ -509,7 +509,7 @@ namespace Opm
checkWellOperability(ebosSimulator, well_state, deferred_logger); checkWellOperability(ebosSimulator, well_state, deferred_logger);
if (!this->isOperable()) return; if (!this->isOperable() && !this->wellIsStopped()) return;
// clear all entries // clear all entries
duneB_ = 0.0; duneB_ = 0.0;
@ -1272,7 +1272,7 @@ namespace Opm
WellState& well_state, WellState& well_state,
Opm::DeferredLogger& deferred_logger) const Opm::DeferredLogger& deferred_logger) const
{ {
if (!this->isOperable()) return; if (!this->isOperable() && !this->wellIsStopped()) return;
updatePrimaryVariablesNewton(dwells, well_state); updatePrimaryVariablesNewton(dwells, well_state);
@ -1544,7 +1544,7 @@ namespace Opm
updateThp(WellState& well_state, Opm::DeferredLogger& deferred_logger) const updateThp(WellState& well_state, Opm::DeferredLogger& deferred_logger) const
{ {
// When there is no vaild VFP table provided, we set the thp to be zero. // When there is no vaild VFP table provided, we set the thp to be zero.
if (!this->isVFPActive(deferred_logger)) { if (!this->isVFPActive(deferred_logger) || this->wellIsStopped()) {
well_state.thp()[index_of_well_] = 0.; well_state.thp()[index_of_well_] = 0.;
return; return;
} }
@ -1592,6 +1592,7 @@ namespace Opm
for (int p = 0; p<np; ++p) { for (int p = 0; p<np; ++p) {
well_state.wellRates()[well_index*np + p] = 0.0; well_state.wellRates()[well_index*np + p] = 0.0;
} }
well_state.thp()[well_index] = 0.0;
return; return;
} }
@ -1923,6 +1924,10 @@ namespace Opm
return; return;
} }
if (this->wellIsStopped() && !changed_to_stopped_this_step_) {
return;
}
const bool old_well_operable = this->operability_status_.isOperable(); const bool old_well_operable = this->operability_status_.isOperable();
updateWellOperability(ebos_simulator, well_state, deferred_logger); updateWellOperability(ebos_simulator, well_state, deferred_logger);
@ -1930,9 +1935,18 @@ namespace Opm
const bool well_operable = this->operability_status_.isOperable(); const bool well_operable = this->operability_status_.isOperable();
if (!well_operable && old_well_operable) { if (!well_operable && old_well_operable) {
if (well_ecl_.getAutomaticShutIn()) {
deferred_logger.info(" well " + name() + " gets SHUT during iteration "); deferred_logger.info(" well " + name() + " gets SHUT during iteration ");
} else {
if (!this->wellIsStopped()) {
deferred_logger.info(" well " + name() + " gets STOPPED during iteration ");
this->stopWell();
changed_to_stopped_this_step_ = true;
}
}
} else if (well_operable && !old_well_operable) { } else if (well_operable && !old_well_operable) {
deferred_logger.info(" well " + name() + " gets REVIVED during iteration "); deferred_logger.info(" well " + name() + " gets REVIVED during iteration ");
changed_to_stopped_this_step_ = false;
} }
} }
@ -2045,11 +2059,13 @@ namespace Opm
} }
} else { } else {
this->operability_status_.can_obtain_bhp_with_thp_limit = false; this->operability_status_.can_obtain_bhp_with_thp_limit = false;
const double thp_limit = this->getTHPConstraint(summaryState);
deferred_logger.debug(" COULD NOT find bhp value under thp_limit "
+ std::to_string(unit::convert::to(thp_limit, unit::barsa))
+ " bars for well " + name() + ", the well might need to be closed ");
this->operability_status_.obey_bhp_limit_with_thp_limit = false; this->operability_status_.obey_bhp_limit_with_thp_limit = false;
if (!this->wellIsStopped()) {
const double thp_limit = this->getTHPConstraint(summaryState);
deferred_logger.debug(" could not find bhp value at thp limit "
+ std::to_string(unit::convert::to(thp_limit, unit::barsa))
+ " bar for well " + name() + ", the well might need to be closed ");
}
} }
} }
@ -2582,7 +2598,7 @@ namespace Opm
StandardWell<TypeTag>:: StandardWell<TypeTag>::
solveEqAndUpdateWellState(WellState& well_state, Opm::DeferredLogger& deferred_logger) solveEqAndUpdateWellState(WellState& well_state, Opm::DeferredLogger& deferred_logger)
{ {
if (!this->isOperable()) return; if (!this->isOperable() && !this->wellIsStopped()) return;
// We assemble the well equations, then we check the convergence, // We assemble the well equations, then we check the convergence,
// which is why we do not put the assembleWellEq here. // which is why we do not put the assembleWellEq here.
@ -2633,7 +2649,7 @@ namespace Opm
StandardWell<TypeTag>:: StandardWell<TypeTag>::
apply(const BVector& x, BVector& Ax) const apply(const BVector& x, BVector& Ax) const
{ {
if (!this->isOperable()) return; if (!this->isOperable() && !this->wellIsStopped()) return;
if ( param_.matrix_add_well_contributions_ ) if ( param_.matrix_add_well_contributions_ )
{ {
@ -2663,7 +2679,7 @@ namespace Opm
StandardWell<TypeTag>:: StandardWell<TypeTag>::
apply(BVector& r) const apply(BVector& r) const
{ {
if (!this->isOperable()) return; if (!this->isOperable() && !this->wellIsStopped()) return;
assert( invDrw_.size() == invDuneD_.N() ); assert( invDrw_.size() == invDuneD_.N() );
@ -2682,7 +2698,7 @@ namespace Opm
StandardWell<TypeTag>:: StandardWell<TypeTag>::
recoverSolutionWell(const BVector& x, BVectorWell& xw) const recoverSolutionWell(const BVector& x, BVectorWell& xw) const
{ {
if (!this->isOperable()) return; if (!this->isOperable() && !this->wellIsStopped()) return;
BVectorWell resWell = resWell_; BVectorWell resWell = resWell_;
// resWell = resWell - B * x // resWell = resWell - B * x
@ -2702,7 +2718,7 @@ namespace Opm
WellState& well_state, WellState& well_state,
Opm::DeferredLogger& deferred_logger) const Opm::DeferredLogger& deferred_logger) const
{ {
if (!this->isOperable()) return; if (!this->isOperable() && !this->wellIsStopped()) return;
BVectorWell xw(1); BVectorWell xw(1);
xw[0].resize(numWellEq_); xw[0].resize(numWellEq_);
@ -2820,6 +2836,12 @@ namespace Opm
std::vector<double>& well_potentials, std::vector<double>& well_potentials,
Opm::DeferredLogger& deferred_logger) // const Opm::DeferredLogger& deferred_logger) // const
{ {
const int np = number_of_phases_;
well_potentials.resize(np, 0.0);
if (this->wellIsStopped()) {
return;
}
// creating a copy of the well itself, to avoid messing up the explicit informations // creating a copy of the well itself, to avoid messing up the explicit informations
// during this copy, the only information not copied properly is the well controls // during this copy, the only information not copied properly is the well controls
@ -2832,9 +2854,6 @@ namespace Opm
// TODO: for computeWellPotentials, no derivative is required actually // TODO: for computeWellPotentials, no derivative is required actually
well.initPrimaryVariablesEvaluation(); well.initPrimaryVariablesEvaluation();
const int np = number_of_phases_;
well_potentials.resize(np, 0.0);
// does the well have a THP related constraint? // does the well have a THP related constraint?
const auto& summaryState = ebosSimulator.vanguard().summaryState(); const auto& summaryState = ebosSimulator.vanguard().summaryState();
// does the well have a THP related constraint? // does the well have a THP related constraint?
@ -2858,7 +2877,7 @@ namespace Opm
StandardWell<TypeTag>:: StandardWell<TypeTag>::
updatePrimaryVariables(const WellState& well_state, Opm::DeferredLogger& deferred_logger) const updatePrimaryVariables(const WellState& well_state, Opm::DeferredLogger& deferred_logger) const
{ {
if (!this->isOperable()) return; if (!this->isOperable() && !this->wellIsStopped()) return;
const int well_index = index_of_well_; const int well_index = index_of_well_;
const int np = number_of_phases_; const int np = number_of_phases_;
@ -3724,8 +3743,7 @@ namespace Opm
// for bhp, for each flo_sample. The resulting (flo_sample, // for bhp, for each flo_sample. The resulting (flo_sample,
// bhp_sample) values give a piecewise linear approximation to // bhp_sample) values give a piecewise linear approximation to
// the true inverse inflow function, at the same flo values as // the true inverse inflow function, at the same flo values as
// the VFP data. We also keep the computed frates(bhp_sample) // the VFP data.
// values, for use in the next step.
// //
// Then we extract a piecewise linear approximation from the // Then we extract a piecewise linear approximation from the
// multilinear fbhp() by evaluating it at the flo_sample // multilinear fbhp() by evaluating it at the flo_sample
@ -3736,7 +3754,7 @@ namespace Opm
// same flo_sample points, it is easy to distinguish between // same flo_sample points, it is easy to distinguish between
// the 0, 1 or 2 solution cases, and obtain the right interval // the 0, 1 or 2 solution cases, and obtain the right interval
// in which to solve for the solution we want (with highest // in which to solve for the solution we want (with highest
// flow in case of 2 solutions. // flow in case of 2 solutions).
// Make the fbhp() function. // Make the fbhp() function.
const auto& controls = well_ecl_.productionControls(summary_state); const auto& controls = well_ecl_.productionControls(summary_state);

View File

@ -270,7 +270,7 @@ namespace Opm
wellIsStopped_ = false; wellIsStopped_ = false;
} }
bool wellIsStopped() { bool wellIsStopped() const {
return wellIsStopped_; return wellIsStopped_;
} }

View File

@ -810,15 +810,20 @@ namespace Opm
WellTestState& well_test_state, WellTestState& well_test_state,
Opm::DeferredLogger& deferred_logger) const Opm::DeferredLogger& deferred_logger) const
{ {
if (!isOperable() && !wellIsStopped_) { if (!isOperable() || wellIsStopped_) {
if (well_test_state.hasWellClosed(name(), WellTestConfig::Reason::ECONOMIC) ||
well_test_state.hasWellClosed(name(), WellTestConfig::Reason::PHYSICAL) ) {
// Already closed, do nothing.
} else {
well_test_state.closeWell(name(), WellTestConfig::Reason::PHYSICAL, simulation_time); well_test_state.closeWell(name(), WellTestConfig::Reason::PHYSICAL, simulation_time);
if (write_message_to_opmlog) { if (write_message_to_opmlog) {
// TODO: considering auto shut in? const std::string action = well_ecl_.getAutomaticShutIn() ? "shut" : "stopped";
const std::string msg = "well " + name() const std::string msg = "Well " + name()
+ std::string(" will be shut as it can not operate under current reservoir condition"); + " will be " + action + " as it can not operate under current reservoir conditions.";
deferred_logger.info(msg); deferred_logger.info(msg);
} }
} }
}
} }