From 0648d6bf5d7c52a3aa824d51de7fd2b0a4dab1a0 Mon Sep 17 00:00:00 2001 From: Joakim Hove Date: Thu, 7 Oct 2021 15:30:10 +0200 Subject: [PATCH] WellTestState::openWell -> WellTestState::open_well --- opm/simulators/wells/BlackoilWellModel_impl.hpp | 2 +- opm/simulators/wells/WellInterface_impl.hpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/opm/simulators/wells/BlackoilWellModel_impl.hpp b/opm/simulators/wells/BlackoilWellModel_impl.hpp index f53e2b609..9b1a5be6b 100644 --- a/opm/simulators/wells/BlackoilWellModel_impl.hpp +++ b/opm/simulators/wells/BlackoilWellModel_impl.hpp @@ -611,7 +611,7 @@ namespace Opm { // even if it was new or received new targets this report step. events.clearEvent(WellState::event_mask); } else { - wellTestState().openWell(well_name); + wellTestState().open_well(well_name); wellTestState().open_completions(well_name); } } diff --git a/opm/simulators/wells/WellInterface_impl.hpp b/opm/simulators/wells/WellInterface_impl.hpp index f539729ce..d027d0444 100644 --- a/opm/simulators/wells/WellInterface_impl.hpp +++ b/opm/simulators/wells/WellInterface_impl.hpp @@ -299,7 +299,7 @@ namespace Opm // update wellTestState if the well test succeeds if (!welltest_state_temp.well_is_closed(this->name())) { - well_test_state.openWell(this->name()); + well_test_state.open_well(this->name()); std::string msg = std::string("well ") + this->name() + std::string(" is re-opened"); deferred_logger.info(msg);