mirror of
https://github.com/OPM/ResInsight.git
synced 2025-01-21 14:03:18 -06:00
#3406 Move function call
This commit is contained in:
parent
866e74e75c
commit
5a1c877c05
@ -426,11 +426,6 @@ std::vector<RigCompletionData> RicExportFractureCompletionsImpl::generateCompdat
|
||||
std::vector<RigCompletionData> allCompletionsForOneFracture =
|
||||
generateCompdatValuesForFracture(matrixToWellTrans, wellPathName, caseToApply, fracture, fracTemplate);
|
||||
|
||||
if (fracTemplate->isNonDarcyFlowEnabled())
|
||||
{
|
||||
computeNonDarcyFlowParameters(fracture, allCompletionsForOneFracture);
|
||||
}
|
||||
|
||||
if (fractureDataReportItems)
|
||||
{
|
||||
RicWellPathFractureReportItem reportItem(wellPathName, fracture->name(), fracTemplate->name());
|
||||
@ -729,6 +724,12 @@ std::vector<RigCompletionData> RicExportFractureCompletionsImpl::generateCompdat
|
||||
compDat.addMetadata(fracture->name(), QString::number(trans));
|
||||
allCompletionsForOneFracture.push_back(compDat);
|
||||
}
|
||||
|
||||
if (fracTemplate->isNonDarcyFlowEnabled())
|
||||
{
|
||||
computeNonDarcyFlowParameters(fracture, allCompletionsForOneFracture);
|
||||
}
|
||||
|
||||
return allCompletionsForOneFracture;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user