not forbidding WELOPEN wells with zero rate and disallowing crossflow

other keywords might change the control to make it openable.
This commit is contained in:
Kai Bao
2022-10-27 16:01:25 +02:00
parent 200b6a2cbc
commit 9fdcfa3751
2 changed files with 15 additions and 28 deletions

View File

@@ -672,7 +672,7 @@ BOOST_AUTO_TEST_CASE(TestCrossFlowHandling) {
BOOST_CHECK(Well::Status::OPEN == schedule.getWell("BAN", 1).getStatus());
BOOST_CHECK(Well::Status::OPEN == schedule.getWell("BAN", 2).getStatus());
BOOST_CHECK(Well::Status::SHUT == schedule.getWell("BAN", 3).getStatus());
BOOST_CHECK(Well::Status::SHUT == schedule.getWell("BAN", 4).getStatus()); // not allow to open
BOOST_CHECK(Well::Status::OPEN == schedule.getWell("BAN", 4).getStatus());
BOOST_CHECK(Well::Status::OPEN == schedule.getWell("BAN", 5).getStatus());
}