mirror of
https://github.com/OPM/ResInsight.git
synced 2025-02-25 18:55:39 -06:00
#3244 Completion type. Fishbones checked state taken into account
This commit is contained in:
parent
92bcae2805
commit
9529142a30
@ -204,18 +204,24 @@ void RicFishbonesTransmissibilityCalculationFeatureImp::findFishboneLateralsWell
|
||||
// Note that it is not supported to export main bore perforation intervals for Imported Laterals, only for fishbones
|
||||
// defined by ResInsight
|
||||
|
||||
double holeRadius = wellPath->fishbonesCollection()->mainBoreDiameter(unitSystem) / 2.0;
|
||||
double skinFactor = wellPath->fishbonesCollection()->mainBoreSkinFactor();
|
||||
|
||||
for (const auto& fishboneDefinition : wellPath->fishbonesCollection()->fishbonesSubs())
|
||||
if (wellPath->fishbonesCollection()->isChecked())
|
||||
{
|
||||
appendMainWellBoreParts(wellBorePartsInCells,
|
||||
wellPath,
|
||||
settings,
|
||||
skinFactor,
|
||||
holeRadius,
|
||||
fishboneDefinition->startOfSubMD(),
|
||||
fishboneDefinition->endOfSubMD());
|
||||
double holeRadius = wellPath->fishbonesCollection()->mainBoreDiameter(unitSystem) / 2.0;
|
||||
double skinFactor = wellPath->fishbonesCollection()->mainBoreSkinFactor();
|
||||
|
||||
for (const auto& fishboneDefinition : wellPath->fishbonesCollection()->fishbonesSubs())
|
||||
{
|
||||
if (fishboneDefinition->isActive())
|
||||
{
|
||||
appendMainWellBoreParts(wellBorePartsInCells,
|
||||
wellPath,
|
||||
settings,
|
||||
skinFactor,
|
||||
holeRadius,
|
||||
fishboneDefinition->startOfSubMD(),
|
||||
fishboneDefinition->endOfSubMD());
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user