WBS LAS-parameter fixes to be more consistent

This commit is contained in:
Gaute Lindkvist
2020-02-14 11:39:47 +01:00
parent 4cf427ce69
commit 82263e9d6f
8 changed files with 56 additions and 12 deletions

View File

@@ -764,6 +764,14 @@ QString RigGeoMechWellLogExtractor::parameterInputUnits( const RigWbsParameter&
{
return RiaWellLogUnitTools::barUnitString();
}
else if ( parameter == RigWbsParameter::poissonRatio() || parameter == RigWbsParameter::DF() )
{
return RiaWellLogUnitTools::noUnitString();
}
else if ( parameter == RigWbsParameter::waterDensity() )
{
return RiaWellLogUnitTools::gPerCm3UnitString();
}
return RiaWellLogUnitTools::sg_emwUnitString();
}