#3038 Fracture Completion Summary : Add flag to export dialog

This commit is contained in:
Magne Sjaastad
2018-08-09 14:04:59 +02:00
parent 529632f2e1
commit 0c6df7d6a8
3 changed files with 21 additions and 2 deletions

View File

@@ -165,11 +165,17 @@ void RicWellPathExportCompletionDataFeatureImpl::exportCompletions(const std::ve
if (exportSettings.includeFractures())
{
std::vector<RicWellPathFractureReportItem>* reportItems = nullptr;
if (exportSettings.includeFracturesSummaryHeader())
{
reportItems = &fractureDataReportItems;
}
std::vector<RigCompletionData> fractureCompletionData =
RicExportFractureCompletionsImpl::generateCompdatValuesForWellPath(
wellPath,
exportSettings.caseToApply(),
&fractureDataReportItems,
reportItems,
fractureTransmissibilityExportInformationStream.get());
appendCompletionData(&completionsPerEclipseCellAllCompletionTypes, fractureCompletionData);