From 9a2d256392ec41e1154ccf2a3bfea0d93fa9a967 Mon Sep 17 00:00:00 2001 From: Gaute Lindkvist Date: Tue, 10 Mar 2020 15:49:23 +0100 Subject: [PATCH] WBS: Output DF and Poisson ratio as UNIT_NONE --- .../ReservoirDataModel/RigGeoMechWellLogExtractor.cpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/ApplicationCode/ReservoirDataModel/RigGeoMechWellLogExtractor.cpp b/ApplicationCode/ReservoirDataModel/RigGeoMechWellLogExtractor.cpp index c9efee09e4..79bfbb4788 100644 --- a/ApplicationCode/ReservoirDataModel/RigGeoMechWellLogExtractor.cpp +++ b/ApplicationCode/ReservoirDataModel/RigGeoMechWellLogExtractor.cpp @@ -180,6 +180,10 @@ QString RigGeoMechWellLogExtractor::curveData( const RigFemResultAddress& resAdd } return RiaWellLogUnitTools::barX100UnitString(); } + else if ( param == RigWbsParameter::DF() || param == RigWbsParameter::poissonRatio() ) + { + return RiaWellLogUnitTools::noUnitString(); + } } } }