/* Copyright 2014 IRIS This file is part of the Open Porous Media project (OPM). OPM is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. OPM is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with OPM. If not, see . */ #include #if HAVE_DYNAMIC_BOOST_TEST #define BOOST_TEST_DYN_LINK #endif #define BOOST_TEST_MODULE StoppedWellsTests #include #include #include #include #include #include #include #include #include #include using namespace Opm; BOOST_AUTO_TEST_CASE(TestStoppedWells) { const std::string filename = "wells_stopped.data"; Opm::ParserPtr parser(new Opm::Parser()); Opm::ParseMode parseMode; Opm::DeckConstPtr deck(parser->parseFile(filename , parseMode)); Opm::EclipseStateConstPtr eclipseState(new Opm::EclipseState(deck , parseMode)); Opm::GridManager gridManager(deck); double target_surfacerate_inj; double target_surfacerate_prod; const std::vector pressure = {1, 1, 1, 1, 1, 1, 1, 1, 1, 1}; BlackoilState state; state.init(pressure.size(), 0, 3); state.pressure() = pressure; // Both wells are open in the first schedule step { Opm::WellsManager wellsManager(eclipseState , 0 , *gridManager.c_grid(), NULL); const Wells* wells = wellsManager.c_wells(); const struct WellControls* ctrls0 = wells->ctrls[0]; const struct WellControls* ctrls1 = wells->ctrls[1]; BOOST_CHECK(well_controls_well_is_open(ctrls0)); BOOST_CHECK(well_controls_well_is_open(ctrls1)); target_surfacerate_inj = well_controls_iget_target(ctrls0 , 0); target_surfacerate_prod = well_controls_iget_target(ctrls1 , 0); WellState wellstate; wellstate.init(wells, state); const std::vector wellrates = wellstate.wellRates(); BOOST_CHECK_EQUAL (target_surfacerate_inj, wellrates[2]); // Gas injector BOOST_CHECK_EQUAL (target_surfacerate_prod, wellrates[4]); // Oil target rate } // The injector is stopped { Opm::WellsManager wellsManager(eclipseState , 1 , *gridManager.c_grid(), NULL); const Wells* wells = wellsManager.c_wells(); const struct WellControls* ctrls0 = wells->ctrls[0]; const struct WellControls* ctrls1 = wells->ctrls[1]; BOOST_CHECK(well_controls_well_is_stopped(ctrls0)); // injector is stopped BOOST_CHECK(well_controls_well_is_open(ctrls1)); WellState wellstate; wellstate.init(wells, state); const std::vector wellrates = wellstate.wellRates(); BOOST_CHECK_EQUAL (0, wellrates[2]); // Gas injector BOOST_CHECK_EQUAL (target_surfacerate_prod, wellrates[4]); // Oil target rate } }