mirror of
https://github.com/OPM/ResInsight.git
synced 2025-02-25 18:55:39 -06:00
#3670 Implement new Pressure Depletion behaviour
* Removed choice of different scaling * Always use current pressure delta * Use the maximum of an epsilon value and the absolute value of the matrix to well pressure drop as the scaling factor * Remove file name suffixes and update information table in export file.
This commit is contained in:
@@ -710,8 +710,10 @@ QString RicWellPathFractureTextReportFeatureImpl::createFracturePressureDepletio
|
||||
RifEclipseOutputTableColumn("Well"),
|
||||
RifEclipseOutputTableColumn("Fracture"),
|
||||
RifEclipseOutputTableColumn("PDD Scaling"),
|
||||
RifEclipseOutputTableColumn("Initial WBHP"),
|
||||
RifEclipseOutputTableColumn("Current WBHP")
|
||||
RifEclipseOutputTableColumn("WBHP Source"),
|
||||
RifEclipseOutputTableColumn("User WBHP"),
|
||||
RifEclipseOutputTableColumn("Min Pressure Drop"),
|
||||
RifEclipseOutputTableColumn("Max Pressure Drop")
|
||||
};
|
||||
|
||||
formatter.header(header);
|
||||
@@ -722,8 +724,10 @@ QString RicWellPathFractureTextReportFeatureImpl::createFracturePressureDepletio
|
||||
formatter.add(reportItem.wellPathNameForExport());
|
||||
formatter.add(reportItem.fractureName());
|
||||
formatter.add(reportItem.pressureDepletionScaling());
|
||||
formatter.add(reportItem.pressureDepletionInitialWBHP());
|
||||
formatter.add(reportItem.pressureDepletionCurrentWBHP());
|
||||
formatter.add(reportItem.pressureDepletionWBHPString());
|
||||
formatter.add(reportItem.pressureDepletionUserWBHP());
|
||||
formatter.add(reportItem.pressureDepletionMinPressureDrop());
|
||||
formatter.add(reportItem.pressureDepletionMaxPressureDrop());
|
||||
|
||||
formatter.rowCompleted();
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user