Added ability to filter out completions in inactive cells.

This commit is contained in:
Joakim Hove
2018-02-06 19:13:42 +01:00
parent 40fd922b6e
commit 3a590a0cab
7 changed files with 61 additions and 1 deletions

View File

@@ -1681,4 +1681,11 @@ namespace Opm {
this->updateWellStatus( well, timestep, WellCommon::StatusEnum::SHUT);
}
}
void Schedule::filterCompletions(const EclipseGrid& grid) {
for (auto& well : this->m_wells)
well.filterCompletions(grid);
}
}