mirror of
https://github.com/OPM/ResInsight.git
synced 2025-01-08 23:23:01 -06:00
3590c52cdc
* Deprecate single summary plots and plot collections. Replace functionality using summary multi plots. Clean up some code. Fix crash when trying to normalize an empty curve
214 lines
9.0 KiB
C++
214 lines
9.0 KiB
C++
/////////////////////////////////////////////////////////////////////////////////
|
|
//
|
|
// Copyright (C) 2019- Equinor ASA
|
|
//
|
|
// ResInsight is free software: you can redistribute it and/or modify
|
|
// it under the terms of the GNU General Public License as published by
|
|
// the Free Software Foundation, either version 3 of the License, or
|
|
// (at your option) any later version.
|
|
//
|
|
// ResInsight is distributed in the hope that it will be useful, but WITHOUT ANY
|
|
// WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
|
// FITNESS FOR A PARTICULAR PURPOSE.
|
|
//
|
|
// See the GNU General Public License at <http://www.gnu.org/licenses/gpl.html>
|
|
// for more details.
|
|
//
|
|
/////////////////////////////////////////////////////////////////////////////////
|
|
|
|
#include "RicReplaceSummaryCaseFeature.h"
|
|
|
|
#include "RiaLogging.h"
|
|
#include "RiaSummaryTools.h"
|
|
|
|
#include "RicImportGeneralDataFeature.h"
|
|
|
|
#include "RimCalculatedSummaryCase.h"
|
|
#include "RimFileSummaryCase.h"
|
|
#include "RimProject.h"
|
|
#include "RimSummaryAddress.h"
|
|
#include "RimSummaryCalculation.h"
|
|
#include "RimSummaryCalculationCollection.h"
|
|
#include "RimSummaryCalculationVariable.h"
|
|
#include "RimSummaryCase.h"
|
|
#include "RimSummaryCaseCollection.h"
|
|
#include "RimSummaryCaseMainCollection.h"
|
|
#include "RimSummaryCrossPlot.h"
|
|
#include "RimSummaryCrossPlotCollection.h"
|
|
#include "RimSummaryCurve.h"
|
|
#include "RimSummaryMultiPlot.h"
|
|
#include "RimSummaryMultiPlotCollection.h"
|
|
#include "RimSummaryPlot.h"
|
|
|
|
#include "cafPdmObject.h"
|
|
#include "cafSelectionManager.h"
|
|
|
|
#include <QAction>
|
|
|
|
CAF_CMD_SOURCE_INIT( RicReplaceSummaryCaseFeature, "RicReplaceSummaryCaseFeature" );
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
///
|
|
//--------------------------------------------------------------------------------------------------
|
|
void RicReplaceSummaryCaseFeature::updateRequredCalculatedCurves( RimSummaryCase* sourceSummaryCase )
|
|
{
|
|
RimSummaryCalculationCollection* calcColl = RimProject::current()->calculationCollection();
|
|
|
|
for ( RimSummaryCalculation* summaryCalculation : calcColl->calculations() )
|
|
{
|
|
bool needsUpdate =
|
|
RicReplaceSummaryCaseFeature::checkIfCalculationNeedsUpdate( summaryCalculation, sourceSummaryCase );
|
|
if ( needsUpdate )
|
|
{
|
|
summaryCalculation->parseExpression();
|
|
summaryCalculation->calculate();
|
|
summaryCalculation->updateDependentCurvesAndPlots();
|
|
}
|
|
}
|
|
}
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
///
|
|
//--------------------------------------------------------------------------------------------------
|
|
bool RicReplaceSummaryCaseFeature::isCommandEnabled()
|
|
{
|
|
RimSummaryCase* rimSummaryCase = caf::SelectionManager::instance()->selectedItemOfType<RimFileSummaryCase>();
|
|
return rimSummaryCase != nullptr;
|
|
}
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
///
|
|
//--------------------------------------------------------------------------------------------------
|
|
void RicReplaceSummaryCaseFeature::onActionTriggered( bool isChecked )
|
|
{
|
|
RimFileSummaryCase* summaryCase = caf::SelectionManager::instance()->selectedItemOfType<RimFileSummaryCase>();
|
|
if ( !summaryCase ) return;
|
|
|
|
const QStringList fileNames =
|
|
RicImportGeneralDataFeature::getEclipseFileNamesWithDialog( RiaDefines::ImportFileType::ECLIPSE_SUMMARY_FILE );
|
|
if ( fileNames.isEmpty() ) return;
|
|
|
|
QString oldSummaryHeaderFilename = summaryCase->summaryHeaderFilename();
|
|
summaryCase->setSummaryHeaderFileName( fileNames[0] );
|
|
summaryCase->updateAutoShortName();
|
|
summaryCase->createSummaryReaderInterface();
|
|
summaryCase->createRftReaderInterface();
|
|
summaryCase->refreshMetaData();
|
|
|
|
RiaLogging::info( QString( "Replaced summary data for %1" ).arg( oldSummaryHeaderFilename ) );
|
|
|
|
RicReplaceSummaryCaseFeature::updateRequredCalculatedCurves( summaryCase );
|
|
|
|
// Find and update all changed calculations
|
|
std::set<int> ids;
|
|
RimSummaryCalculationCollection* calcColl = RimProject::current()->calculationCollection();
|
|
for ( RimSummaryCalculation* summaryCalculation : calcColl->calculations() )
|
|
{
|
|
bool needsUpdate = checkIfCalculationNeedsUpdate( summaryCalculation, summaryCase );
|
|
if ( needsUpdate )
|
|
{
|
|
ids.insert( summaryCalculation->id() );
|
|
}
|
|
}
|
|
|
|
RimSummaryMultiPlotCollection* summaryPlotColl = RiaSummaryTools::summaryMultiPlotCollection();
|
|
for ( RimSummaryMultiPlot* multiPlot : summaryPlotColl->multiPlots() )
|
|
{
|
|
for ( RimSummaryPlot* summaryPlot : multiPlot->summaryPlots() )
|
|
{
|
|
// Update summary curves on calculated data
|
|
std::vector<RimSummaryCurve*> summaryCurves = summaryPlot->summaryCurves();
|
|
for ( RimSummaryCurve* summaryCurve : summaryCurves )
|
|
{
|
|
RifEclipseSummaryAddress summaryAddressY = summaryCurve->summaryAddressY();
|
|
if ( summaryAddressY.category() == RifEclipseSummaryAddress::SUMMARY_CALCULATED &&
|
|
ids.find( summaryAddressY.id() ) != ids.end() )
|
|
{
|
|
if ( calcColl )
|
|
{
|
|
RimSummaryCalculation* calculation = calcColl->findCalculationById( summaryAddressY.id() );
|
|
QString description = calculation->description();
|
|
|
|
RifEclipseSummaryAddress updatedAdr =
|
|
RifEclipseSummaryAddress::calculatedAddress( description.toStdString(), calculation->id() );
|
|
summaryCurve->setSummaryAddressYAndApplyInterpolation( updatedAdr );
|
|
summaryCurve->loadDataAndUpdate( true );
|
|
}
|
|
}
|
|
}
|
|
|
|
summaryPlot->loadDataAndUpdate();
|
|
}
|
|
}
|
|
|
|
RimSummaryCrossPlotCollection* summaryCrossPlotColl = RiaSummaryTools::summaryCrossPlotCollection();
|
|
for ( RimSummaryPlot* summaryPlot : summaryCrossPlotColl->plots() )
|
|
{
|
|
// Update summary curves on calculated data
|
|
std::vector<RimSummaryCurve*> summaryCurves = summaryPlot->summaryCurves();
|
|
for ( RimSummaryCurve* summaryCurve : summaryCurves )
|
|
{
|
|
RifEclipseSummaryAddress summaryAddressX = summaryCurve->summaryAddressX();
|
|
if ( summaryAddressX.category() == RifEclipseSummaryAddress::SUMMARY_CALCULATED &&
|
|
ids.find( summaryAddressX.id() ) != ids.end() )
|
|
{
|
|
if ( calcColl )
|
|
{
|
|
RimSummaryCalculation* calculation = calcColl->findCalculationById( summaryAddressX.id() );
|
|
QString description = calculation->description();
|
|
|
|
RifEclipseSummaryAddress updatedAdr =
|
|
RifEclipseSummaryAddress::calculatedAddress( description.toStdString(), calculation->id() );
|
|
summaryCurve->setSummaryAddressX( updatedAdr );
|
|
summaryCurve->loadDataAndUpdate( true );
|
|
}
|
|
}
|
|
|
|
RifEclipseSummaryAddress summaryAddressY = summaryCurve->summaryAddressY();
|
|
if ( summaryAddressY.category() == RifEclipseSummaryAddress::SUMMARY_CALCULATED &&
|
|
ids.find( summaryAddressY.id() ) != ids.end() )
|
|
{
|
|
if ( calcColl )
|
|
{
|
|
RimSummaryCalculation* calculation = calcColl->findCalculationById( summaryAddressX.id() );
|
|
QString description = calculation->description();
|
|
|
|
RifEclipseSummaryAddress updatedAdr =
|
|
RifEclipseSummaryAddress::calculatedAddress( description.toStdString(), calculation->id() );
|
|
summaryCurve->setSummaryAddressYAndApplyInterpolation( updatedAdr );
|
|
summaryCurve->loadDataAndUpdate( true );
|
|
}
|
|
}
|
|
}
|
|
|
|
summaryPlot->loadDataAndUpdate();
|
|
}
|
|
}
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
///
|
|
//--------------------------------------------------------------------------------------------------
|
|
void RicReplaceSummaryCaseFeature::setupActionLook( QAction* actionToSetup )
|
|
{
|
|
actionToSetup->setText( "Replace" );
|
|
actionToSetup->setIcon( QIcon( ":/ReplaceCase16x16.png" ) );
|
|
}
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
///
|
|
//--------------------------------------------------------------------------------------------------
|
|
bool RicReplaceSummaryCaseFeature::checkIfCalculationNeedsUpdate( const RimSummaryCalculation* summaryCalculation,
|
|
const RimSummaryCase* summaryCase )
|
|
{
|
|
std::vector<RimSummaryCalculationVariable*> variables = summaryCalculation->allVariables();
|
|
for ( RimSummaryCalculationVariable* variable : variables )
|
|
{
|
|
if ( variable->summaryCase() == summaryCase )
|
|
{
|
|
return true;
|
|
}
|
|
}
|
|
|
|
return false;
|
|
}
|