Modify loadCOMPDAT() to not take a FieldPropsManager* as an argument

This commit is contained in:
Daniel
2021-11-09 11:16:28 +01:00
parent 11ddf673f0
commit d8a2061a14
4 changed files with 11 additions and 37 deletions

View File

@@ -59,7 +59,7 @@ Opm::WellConnections loadCOMPDAT(const std::string& compdat_keyword) {
Opm::WellConnections connections(Opm::Connection::Order::TRACK, 10,10);
Opm::CompletedCells cells(grid);
for (const auto& rec : keyword)
connections.loadCOMPDAT(rec, Opm::ScheduleGrid(grid, field_props, cells), field_props, "WELL", {});
connections.loadCOMPDAT(rec, Opm::ScheduleGrid(grid, field_props, cells), "WELL", {});
return connections;
}