From 9fd9e90c618d29fb917ece0b333c6803c050c5a2 Mon Sep 17 00:00:00 2001 From: Kristian Bendiksen Date: Mon, 12 Jun 2023 13:58:43 +0200 Subject: [PATCH] Well Log Extraction: adjust tolerance to keep more cell edge intersection This keeps more cell edge intersections for thin cells (in z direction). --- .../ReservoirDataModel/RigEclipseWellLogExtractor.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ApplicationLibCode/ReservoirDataModel/RigEclipseWellLogExtractor.cpp b/ApplicationLibCode/ReservoirDataModel/RigEclipseWellLogExtractor.cpp index 60ef905628..ca2589a0b1 100644 --- a/ApplicationLibCode/ReservoirDataModel/RigEclipseWellLogExtractor.cpp +++ b/ApplicationLibCode/ReservoirDataModel/RigEclipseWellLogExtractor.cpp @@ -215,7 +215,7 @@ cvf::Vec3d RigEclipseWellLogExtractor::calculateLengthInCell( size_t cellIndex, double RigEclipseWellLogExtractor::computeLengthThreshold() const { // Default length tolerance for most common grid sizes - double tolerance = 0.1; + double tolerance = 0.01; // For grids with very thin z-layers, reduce the tolerance to be able to find the intersections // If not, the intersection will be considered as non-valid cell edge intersection and discarded