mirror of
https://github.com/OPM/ResInsight.git
synced 2025-02-25 18:55:39 -06:00
#10754: Exclude COMPDAT for de-activated laterals
This commit is contained in:
@@ -193,6 +193,11 @@ void RicWellPathExportCompletionDataFeatureImpl::exportCompletions( const std::v
|
||||
|
||||
for ( auto wellPathLateral : allWellPathLaterals )
|
||||
{
|
||||
// Skip well paths that are not enabled, no export of WELSEGS or COMPDAT
|
||||
// https://github.com/OPM/ResInsight/issues/10754
|
||||
//
|
||||
if ( !wellPathLateral->isEnabled() ) continue;
|
||||
|
||||
// Generate completion data
|
||||
|
||||
if ( exportSettings.includePerforations )
|
||||
|
||||
@@ -126,11 +126,11 @@ public:
|
||||
static std::vector<RigCompletionData>
|
||||
computeDynamicCompletionsForWellPath( RimWellPath* wellPath, RimEclipseCase* eclipseCase, size_t timeStepIndex );
|
||||
|
||||
private:
|
||||
static std::vector<RigCompletionData> generatePerforationsCompdatValues( gsl::not_null<const RimWellPath*> wellPath,
|
||||
const std::vector<const RimPerforationInterval*>& intervals,
|
||||
const RicExportCompletionDataSettingsUi& settings );
|
||||
|
||||
private:
|
||||
static double calculateTransmissibilityAsEclipseDoes( RimEclipseCase* eclipseCase,
|
||||
double skinFactor,
|
||||
double wellRadius,
|
||||
|
||||
Reference in New Issue
Block a user