mirror of
https://github.com/OPM/ResInsight.git
synced 2025-01-09 15:43:07 -06:00
#4136 Export of Flow Characteristics : Rename
This commit is contained in:
parent
5067c6ce9c
commit
79df075fe4
@ -629,11 +629,11 @@ void RimFlowCharacteristicsPlot::onLoadDataAndUpdate()
|
||||
const auto& flowCharResults = timeStepToFlowResultMap[timeStepIdx];
|
||||
|
||||
m_flowCharPlotWidget->addFlowCapStorageCapCurve(timeStepDates[timeStepIdx],
|
||||
flowCharResults.m_flowCapStorageCapCurve.first,
|
||||
flowCharResults.m_flowCapStorageCapCurve.second);
|
||||
flowCharResults.m_storageCapFlowCapCurve.first,
|
||||
flowCharResults.m_storageCapFlowCapCurve.second);
|
||||
m_flowCharPlotWidget->addSweepEfficiencyCurve(timeStepDates[timeStepIdx],
|
||||
flowCharResults.m_sweepEfficiencyCurve.first,
|
||||
flowCharResults.m_sweepEfficiencyCurve.second);
|
||||
flowCharResults.m_dimensionlessTimeSweepEfficiencyCurve.first,
|
||||
flowCharResults.m_dimensionlessTimeSweepEfficiencyCurve.second);
|
||||
}
|
||||
|
||||
m_flowCharPlotWidget->showLegend(m_showLegend());
|
||||
|
@ -638,9 +638,9 @@ RigFlowDiagSolverInterface::FlowCharacteristicsResultFrame RigFlowDiagSolverInte
|
||||
poreVolume,
|
||||
max_pv_fraction);
|
||||
|
||||
result.m_flowCapStorageCapCurve = flowCapStorCapCurve;
|
||||
result.m_storageCapFlowCapCurve = flowCapStorCapCurve;
|
||||
result.m_lorenzCoefficient = lorenzCoefficient(flowCapStorCapCurve);
|
||||
result.m_sweepEfficiencyCurve = sweepEfficiency(flowCapStorCapCurve);
|
||||
result.m_dimensionlessTimeSweepEfficiencyCurve = sweepEfficiency(flowCapStorCapCurve);
|
||||
}
|
||||
catch (const std::exception& e)
|
||||
{
|
||||
|
@ -70,8 +70,8 @@ public:
|
||||
|
||||
using Curve = std::pair< std::vector<double>, std::vector<double> >;
|
||||
|
||||
Curve m_flowCapStorageCapCurve;
|
||||
Curve m_sweepEfficiencyCurve;
|
||||
Curve m_storageCapFlowCapCurve;
|
||||
Curve m_dimensionlessTimeSweepEfficiencyCurve;
|
||||
double m_lorenzCoefficient;
|
||||
};
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user