mirror of
https://github.com/OPM/ResInsight.git
synced 2025-02-25 18:55:39 -06:00
#5917 Export Completion: Use export name in comments
This commit is contained in:
@@ -349,7 +349,7 @@ void RicFishbonesTransmissibilityCalculationFeatureImp::appendMainWellBoreParts(
|
|||||||
|
|
||||||
for ( const auto& cellIntersectionInfo : intersectedCellsIntersectionInfo )
|
for ( const auto& cellIntersectionInfo : intersectedCellsIntersectionInfo )
|
||||||
{
|
{
|
||||||
QString completionMetaData = wellPath->name() + " main bore";
|
QString completionMetaData = wellPath->completions()->wellNameForExport() + " main bore";
|
||||||
WellBorePartForTransCalc wellBorePart = WellBorePartForTransCalc( cellIntersectionInfo.intersectionLengthsInCellCS,
|
WellBorePartForTransCalc wellBorePart = WellBorePartForTransCalc( cellIntersectionInfo.intersectionLengthsInCellCS,
|
||||||
holeRadius,
|
holeRadius,
|
||||||
skinFactor,
|
skinFactor,
|
||||||
|
|||||||
@@ -40,6 +40,7 @@
|
|||||||
#include "RimTools.h"
|
#include "RimTools.h"
|
||||||
#include "RimWellPath.h"
|
#include "RimWellPath.h"
|
||||||
#include "RimWellPathCollection.h"
|
#include "RimWellPathCollection.h"
|
||||||
|
#include "RimWellPathCompletions.h"
|
||||||
#include "RimWellPathFracture.h"
|
#include "RimWellPathFracture.h"
|
||||||
#include "RimWellPathFractureCollection.h"
|
#include "RimWellPathFractureCollection.h"
|
||||||
|
|
||||||
@@ -252,7 +253,7 @@ QString RicWellPathFractureTextReportFeatureImpl::createWellFileLocationText( co
|
|||||||
auto fileWellPath = dynamic_cast<RimFileWellPath*>( wellPath );
|
auto fileWellPath = dynamic_cast<RimFileWellPath*>( wellPath );
|
||||||
if ( fileWellPath )
|
if ( fileWellPath )
|
||||||
{
|
{
|
||||||
formatter.add( wellPath->name() );
|
formatter.add( wellPath->completions()->wellNameForExport() );
|
||||||
formatter.add( fileWellPath->filePath() );
|
formatter.add( fileWellPath->filePath() );
|
||||||
formatter.rowCompleted();
|
formatter.rowCompleted();
|
||||||
}
|
}
|
||||||
@@ -563,7 +564,7 @@ QString RicWellPathFractureTextReportFeatureImpl::createFractureInstancesText(
|
|||||||
fracture->firstAncestorOrThisOfType( wellPath );
|
fracture->firstAncestorOrThisOfType( wellPath );
|
||||||
if ( wellPath )
|
if ( wellPath )
|
||||||
{
|
{
|
||||||
wellName = wellPath->name();
|
wellName = wellPath->completions()->wellNameForExport();
|
||||||
}
|
}
|
||||||
|
|
||||||
formatter.add( wellName );
|
formatter.add( wellName );
|
||||||
|
|||||||
Reference in New Issue
Block a user