Rename Well2 -> Well and Group2 -> Group

This commit is contained in:
Joakim Hove
2019-11-12 08:29:28 +01:00
parent 3421b25d8e
commit 613ec70dab
57 changed files with 1360 additions and 1360 deletions

View File

@@ -207,7 +207,7 @@ BOOST_AUTO_TEST_CASE(loadCOMPDATTESTSPE1) {
Opm::Schedule sched(deck, state);
const auto& units = deck.getActiveUnitSystem();
const auto& prod = sched.getWell2("PROD", 0);
const auto& prod = sched.getWell("PROD", 0);
const auto& connections = prod.getConnections();
const auto& conn0 = connections[0];
/* Expected values come from Eclipse simulation. */
@@ -320,7 +320,7 @@ BOOST_AUTO_TEST_CASE(loadCOMPDATTESTSPE9) {
{"PRODU26" ,3 , 0.176, 118.6}};
for (const auto& ec : expected) {
const auto& well = sched.getWell2(ec.well, 0);
const auto& well = sched.getWell(ec.well, 0);
const auto& connections = well.getConnections();
const auto& conn = connections[ec.ci - 1];