#3228 Fishbones imported laterals : Skip unchecked laterals for COMPDAT export

This commit is contained in:
Magne Sjaastad 2018-08-20 08:00:49 +02:00
parent 878282daf4
commit 7b71415fc8

View File

@ -224,6 +224,11 @@ void RicFishbonesTransmissibilityCalculationFeatureImp::findFishboneImportedLate
double diameter = wellPath->fishbonesCollection()->wellPathCollection()->holeDiameter(unitSystem);
for (const RimFishboneWellPath* fishbonesPath : wellPath->fishbonesCollection()->wellPathCollection()->wellPaths())
{
if (!fishbonesPath->isChecked())
{
continue;
}
std::vector<WellPathCellIntersectionInfo> intersectedCells =
RigWellPathIntersectionTools::findCellIntersectionInfosAlongPath(
settings.caseToApply->eclipseCaseData(), fishbonesPath->coordinates(), fishbonesPath->measuredDepths());