Fix build issues following merge from dev

This commit is contained in:
Gaute Lindkvist 2020-10-23 09:56:49 +02:00
parent 0fc5e033f5
commit 0b6254bfb4
4 changed files with 5 additions and 5 deletions

View File

@ -108,7 +108,7 @@ bool RimFractureModelElasticPropertyCalculator::calculate( RiaDefines::CurveProp
measuredDepthValues = eclExtractor.cellIntersectionMDs();
tvDepthValues = eclExtractor.cellIntersectionTVDs();
rkbDiff = eclExtractor.wellPathData()->rkbDiff();
rkbDiff = eclExtractor.wellPathGeometry()->rkbDiff();
// Extract formation data
cvf::ref<RigResultAccessor> formationResultAccessor =

View File

@ -78,7 +78,7 @@ bool RimFractureModelLayerCalculator::calculate( RiaDefines::CurveProperty curve
fractureModel->thicknessDirectionWellPath()->wellPathGeometry(),
"fracture model" );
rkbDiff = eclExtractor.wellPathData()->rkbDiff();
rkbDiff = eclExtractor.wellPathGeometry()->rkbDiff();
// Extract formation data
cvf::ref<RigResultAccessor> formationResultAccessor =

View File

@ -102,10 +102,10 @@ bool RimFractureModelStressCalculator::calculate( RiaDefines::CurveProperty curv
RigWellPath* wellPathGeometry = fractureModel->thicknessDirectionWellPath()->wellPathGeometry();
RigEclipseWellLogExtractor eclExtractor( eclipseCase->eclipseCaseData(), wellPathGeometry, "fracture model" );
rkbDiff = eclExtractor.wellPathData()->rkbDiff();
rkbDiff = wellPathGeometry->rkbDiff();
// Generate MD data by interpolation
const std::vector<double>& mdValuesOfWellPath = wellPathGeometry->measureDepths();
const std::vector<double>& mdValuesOfWellPath = wellPathGeometry->measuredDepths();
std::vector<double> tvdValuesOfWellPath = wellPathGeometry->trueVerticalDepths();
measuredDepthValues =

View File

@ -97,7 +97,7 @@ bool RimFractureModelWellLogCalculator::calculate( RiaDefines::CurveProperty cur
measuredDepthValues = eclExtractor.cellIntersectionMDs();
tvDepthValues = eclExtractor.cellIntersectionTVDs();
rkbDiff = eclExtractor.wellPathData()->rkbDiff();
rkbDiff = eclExtractor.wellPathGeometry()->rkbDiff();
RimEclipseResultDefinition eclipseResultDefinition;
eclipseResultDefinition.setEclipseCase( eclipseCase );