#3363 Fishbones : Difference in transmissibility for laterals with and without main bore cells

This commit is contained in:
Magne Sjaastad 2018-09-14 10:46:09 +02:00
parent 20542d90ad
commit f039f84d84

View File

@ -110,6 +110,11 @@ std::vector<RigCompletionData>
for (WellBorePartForTransCalc wellBorePart : wellBoreParts)
{
if (wellBorePart.isMainBore && settings.excludeMainBoreForFishbones())
{
continue;
}
RigCompletionData completion(wellPath->completions()->wellNameForExport(),
RigCompletionDataGridCell(globalCellIndex, settings.caseToApply->mainGrid()),
wellBorePart.intersectionWithWellMeasuredDepth);
@ -199,10 +204,9 @@ void RicFishbonesTransmissibilityCalculationFeatureImp::findFishboneLateralsWell
}
}
if (!settings.excludeMainBoreForFishbones())
{
// Note that it is not supported to export main bore perforation intervals for Imported Laterals, only for fishbones
// defined by ResInsight
// defined by ResInsight. It is not trivial to define the open section of the main bore for imported laterals.
if (wellPath->fishbonesCollection()->isChecked())
{