/* 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 #define BOOST_TEST_MODULE StoppedWellsTests #include #include #include #include #include #include #include #include using namespace Opm; BOOST_AUTO_TEST_CASE(TestStoppedWells) { const std::string filename = "wells_stopped.data"; Opm::Parser parser; Opm::Deck deck(parser.parseFile(filename)); Opm::EclipseState eclipseState(deck); Opm::GridManager vanguard(eclipseState.getInputGrid()); const auto& grid = eclipseState.getInputGrid(); const TableManager table ( deck ); const Eclipse3DProperties eclipseProperties ( deck , table, grid); const Opm::Runspec runspec (deck); const Schedule sched(deck, grid, eclipseProperties, runspec); Opm::SummaryState summaryState; double target_surfacerate_inj; double target_surfacerate_prod; const std::vector pressure = {1, 1, 1, 1, 1, 1, 1, 1, 1, 1}; // Both wells are open in the first schedule step { Opm::WellsManager wellsManager(eclipseState , sched, summaryState, 0, *vanguard.c_grid()); 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, pressure); 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, sched, summaryState, 1 , *vanguard.c_grid()); 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, pressure); 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 } }