2014-11-18 00:39:53 -06:00
|
|
|
/*
|
|
|
|
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 <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <config.h>
|
2019-09-19 17:49:40 -05:00
|
|
|
#include <chrono>
|
2014-11-18 00:39:53 -06:00
|
|
|
|
|
|
|
#define BOOST_TEST_MODULE StoppedWellsTests
|
2019-09-19 17:49:40 -05:00
|
|
|
|
2014-11-18 00:39:53 -06:00
|
|
|
#include <boost/test/unit_test.hpp>
|
|
|
|
|
2021-12-14 01:30:15 -06:00
|
|
|
#include <opm/input/eclipse/Deck/Deck.hpp>
|
2022-07-26 07:59:09 -05:00
|
|
|
#include <opm/input/eclipse/EclipseState/EclipseState.hpp>
|
2021-12-14 01:30:15 -06:00
|
|
|
#include <opm/input/eclipse/Python/Python.hpp>
|
|
|
|
#include <opm/input/eclipse/Parser/Parser.hpp>
|
|
|
|
#include <opm/input/eclipse/Schedule/Schedule.hpp>
|
2023-01-18 02:58:45 -06:00
|
|
|
#include <opm/input/eclipse/Schedule/Well/Well.hpp>
|
2014-11-18 00:39:53 -06:00
|
|
|
|
|
|
|
|
|
|
|
using namespace Opm;
|
|
|
|
|
|
|
|
BOOST_AUTO_TEST_CASE(TestStoppedWells)
|
|
|
|
{
|
|
|
|
const std::string filename = "wells_stopped.data";
|
2016-10-13 09:03:35 -05:00
|
|
|
Opm::Parser parser;
|
2019-01-07 03:22:47 -06:00
|
|
|
Opm::Deck deck(parser.parseFile(filename));
|
|
|
|
Opm::EclipseState eclipseState(deck);
|
2020-03-31 03:40:03 -05:00
|
|
|
auto python = std::make_shared<Opm::Python>();
|
2020-03-25 14:21:28 -05:00
|
|
|
const Schedule sched(deck, eclipseState, python);
|
2014-11-18 00:39:53 -06:00
|
|
|
|
|
|
|
// Both wells are open in the first schedule step
|
|
|
|
{
|
2019-10-23 02:09:45 -05:00
|
|
|
auto wells = sched.getWells(0);
|
|
|
|
BOOST_CHECK(wells[0].getStatus() == Opm::Well::Status::OPEN);
|
|
|
|
BOOST_CHECK(wells[1].getStatus() == Opm::Well::Status::OPEN);
|
2014-11-18 00:39:53 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// The injector is stopped
|
|
|
|
{
|
2019-10-23 02:09:45 -05:00
|
|
|
auto wells = sched.getWells(1);
|
|
|
|
BOOST_CHECK(wells[0].getStatus() == Opm::Well::Status::STOP);
|
|
|
|
BOOST_CHECK(wells[1].getStatus() == Opm::Well::Status::OPEN);
|
2014-11-18 00:39:53 -06:00
|
|
|
}
|
|
|
|
}
|