ResInsight/ApplicationLibCode/Commands/FlowCommands/RicShowFlowCharacteristicsPlotFeature.cpp
Magne Sjaastad 1da509166a
Improve CmdFeature base class
Add default implementation of isEnabled() and add const
2023-06-26 14:28:46 +02:00

109 lines
4.0 KiB
C++

/////////////////////////////////////////////////////////////////////////////////
//
// Copyright (C) 2017 Statoil 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 "RicShowFlowCharacteristicsPlotFeature.h"
#include "RiaApplication.h"
#include "RicWellLogTools.h"
#include "RigFlowDiagResults.h"
#include "Rim3dView.h"
#include "RimEclipseResultCase.h"
#include "RimEclipseView.h"
#include "RimFlowCharacteristicsPlot.h"
#include "RimFlowDiagSolution.h"
#include "RimFlowPlotCollection.h"
#include "RimMainPlotCollection.h"
#include "RiuPlotMainWindowTools.h"
#include <QAction>
CAF_CMD_SOURCE_INIT( RicShowFlowCharacteristicsPlotFeature, "RicShowFlowCharacteristicsPlotFeature" );
RimEclipseResultCase* activeEclipseResultCase()
{
Rim3dView* activeView = RiaApplication::instance()->activeMainOrComparisonGridView();
RimEclipseView* eclView = dynamic_cast<RimEclipseView*>( activeView );
if ( !eclView ) return nullptr;
RimEclipseResultCase* eclCase = dynamic_cast<RimEclipseResultCase*>( eclView->ownerCase() );
return eclCase;
}
//--------------------------------------------------------------------------------------------------
///
//--------------------------------------------------------------------------------------------------
bool RicShowFlowCharacteristicsPlotFeature::isCommandEnabled() const
{
RimEclipseResultCase* eclCase = activeEclipseResultCase();
if ( !eclCase ) return false;
if ( !eclCase->defaultFlowDiagSolution() ) return false;
if ( RicWellLogTools::isWellPathOrSimWellSelectedInView() ) return false;
return true;
}
//--------------------------------------------------------------------------------------------------
///
//--------------------------------------------------------------------------------------------------
void RicShowFlowCharacteristicsPlotFeature::onActionTriggered( bool isChecked )
{
RimEclipseResultCase* eclCase = activeEclipseResultCase();
if ( eclCase && eclCase->defaultFlowDiagSolution() )
{
// Make sure flow results for the the active timestep is calculated, to avoid an empty plot
{
Rim3dView* activeView = RiaApplication::instance()->activeMainOrComparisonGridView();
if ( activeView && eclCase->defaultFlowDiagSolution()->flowDiagResults() )
{
// Trigger calculation
eclCase->defaultFlowDiagSolution()->flowDiagResults()->maxAbsPairFlux( activeView->currentTimeStep() );
}
}
RimFlowPlotCollection* flowPlotColl = RimMainPlotCollection::current()->flowPlotCollection();
if ( flowPlotColl )
{
RiuPlotMainWindowTools::showPlotMainWindow();
flowPlotColl->defaultFlowCharacteristicsPlot()->setFromFlowSolution( eclCase->defaultFlowDiagSolution() );
flowPlotColl->defaultFlowCharacteristicsPlot()->updateConnectedEditors();
RiuPlotMainWindowTools::onObjectAppended( flowPlotColl->defaultFlowCharacteristicsPlot() );
}
}
}
//--------------------------------------------------------------------------------------------------
///
//--------------------------------------------------------------------------------------------------
void RicShowFlowCharacteristicsPlotFeature::setupActionLook( QAction* actionToSetup )
{
actionToSetup->setIcon( QIcon( ":/WellAllocPlot16x16.png" ) );
actionToSetup->setText( "Plot Flow Characteristics" );
}