mirror of
https://github.com/OPM/ResInsight.git
synced 2025-02-25 18:55:39 -06:00
#3243 Completion type. Exclude cells having a subgrid from well path intersection
This commit is contained in:
parent
58d07de8d3
commit
bd346536c7
@ -75,7 +75,7 @@ void RigEclipseWellLogExtractor::calculateIntersection()
|
||||
{
|
||||
const RigCell& cell = m_caseData->mainGrid()->globalCellArray()[globalCellIndex];
|
||||
|
||||
if (cell.isInvalid()) continue;
|
||||
if (cell.isInvalid() || cell.subGrid() != nullptr) continue;
|
||||
|
||||
m_caseData->mainGrid()->cellCornerVertices(globalCellIndex, hexCorners);
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user