mirror of
https://github.com/OPM/ResInsight.git
synced 2025-02-25 18:55:39 -06:00
#3228 Fishbones imported laterals : Skip unchecked laterals for COMPDAT export
This commit is contained in:
parent
878282daf4
commit
7b71415fc8
@ -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());
|
||||
|
Loading…
Reference in New Issue
Block a user