#4136 Export of Flow Characteristics : Rename

This commit is contained in:
Magne Sjaastad 2019-06-23 15:12:33 +02:00
parent 5067c6ce9c
commit 79df075fe4
3 changed files with 8 additions and 8 deletions

View File

@ -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());

View File

@ -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)
{

View File

@ -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;
};