Scale length threshold based on average DZ

This commit is contained in:
Magne Sjaastad
2022-09-02 06:51:21 +02:00
parent 1a9fb26153
commit 30c3fe3a5c
6 changed files with 68 additions and 20 deletions

View File

@@ -1025,7 +1025,8 @@ void RigGeoMechWellLogExtractor::calculateIntersection()
double md1 = m_wellPathGeometry->measuredDepths()[wpp];
double md2 = m_wellPathGeometry->measuredDepths()[wpp + 1];
insertIntersectionsInMap( intersections, p1, md1, p2, md2, &uniqueIntersections );
const double tolerance = 0.1;
insertIntersectionsInMap( intersections, p1, md1, p2, md2, tolerance, &uniqueIntersections );
}
this->populateReturnArrays( uniqueIntersections );