mirror of
https://github.com/OPM/ResInsight.git
synced 2024-12-29 10:21:54 -06:00
203 lines
8.2 KiB
C++
203 lines
8.2 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 "RicShowContributingWellsFeatureImpl.h"
|
|
|
|
#include "RicSelectOrCreateViewFeatureImpl.h"
|
|
|
|
#include "RigFlowDiagResultAddress.h"
|
|
#include "Well/RigSimWellData.h"
|
|
|
|
#include "RimEclipseCellColors.h"
|
|
#include "RimEclipsePropertyFilter.h"
|
|
#include "RimEclipsePropertyFilterCollection.h"
|
|
#include "RimEclipseResultCase.h"
|
|
#include "RimEclipseView.h"
|
|
#include "RimFaultInViewCollection.h"
|
|
#include "RimFlowDiagSolution.h"
|
|
#include "RimProject.h"
|
|
#include "RimSimWellInView.h"
|
|
#include "RimSimWellInViewCollection.h"
|
|
#include "RimViewManipulator.h"
|
|
|
|
#include "Riu3DMainWindowTools.h"
|
|
|
|
#include "cafCmdFeature.h"
|
|
#include "cafCmdFeatureManager.h"
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
///
|
|
//--------------------------------------------------------------------------------------------------
|
|
RimEclipseView*
|
|
RicShowContributingWellsFeatureImpl::manipulateSelectedView( RimEclipseResultCase* eclipseResultCase, QString wellName, int timeStep )
|
|
{
|
|
RimEclipseView* viewToManipulate = RicSelectOrCreateViewFeatureImpl::showViewSelection( eclipseResultCase,
|
|
"lastUsedWellAllocationView",
|
|
"ContributingWells_" + wellName,
|
|
"Show Contributing Wells in View" );
|
|
|
|
if ( !viewToManipulate ) return nullptr;
|
|
|
|
RicShowContributingWellsFeatureImpl::modifyViewToShowContributingWells( viewToManipulate, wellName, timeStep );
|
|
|
|
auto* feature = caf::CmdFeatureManager::instance()->getCommandFeature( "RicShowMainWindowFeature" );
|
|
feature->actionTriggered( false );
|
|
|
|
RicSelectOrCreateViewFeatureImpl::focusView( viewToManipulate );
|
|
|
|
return viewToManipulate;
|
|
}
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
///
|
|
//--------------------------------------------------------------------------------------------------
|
|
void RicShowContributingWellsFeatureImpl::modifyViewToShowContributingWells( RimEclipseView* viewToModify, const QString& wellName, int timeStep )
|
|
{
|
|
CVF_ASSERT( viewToModify );
|
|
|
|
RimSimWellInView* selectedWell = nullptr;
|
|
|
|
for ( RimSimWellInView* w : viewToModify->wellCollection()->wells() )
|
|
{
|
|
if ( w->name() == wellName )
|
|
{
|
|
selectedWell = w;
|
|
}
|
|
}
|
|
|
|
CVF_ASSERT( selectedWell );
|
|
if ( !selectedWell ) return;
|
|
|
|
RimEclipseResultCase* eclipseResultCase = selectedWell->firstAncestorOrThisOfTypeAsserted<RimEclipseResultCase>();
|
|
|
|
// Use the active flow diag solutions, or the first one as default
|
|
RimFlowDiagSolution* flowDiagSolution = viewToModify->cellResult()->flowDiagSolution();
|
|
if ( !flowDiagSolution )
|
|
{
|
|
flowDiagSolution = eclipseResultCase->defaultFlowDiagSolution();
|
|
}
|
|
|
|
// assert(flowDiagSolution);
|
|
CVF_ASSERT( flowDiagSolution );
|
|
|
|
RimFlowDiagSolution::TracerStatusType tracerStatus = flowDiagSolution->tracerStatusInTimeStep( selectedWell->name(), timeStep );
|
|
if ( tracerStatus != RimFlowDiagSolution::TracerStatusType::INJECTOR && tracerStatus != RimFlowDiagSolution::TracerStatusType::PRODUCER )
|
|
{
|
|
return;
|
|
}
|
|
|
|
viewToModify->setCurrentTimeStep( timeStep );
|
|
viewToModify->cellResult()->setResultType( RiaDefines::ResultCatType::FLOW_DIAGNOSTICS );
|
|
viewToModify->cellResult()->setResultVariable( "MaxFractionTracer" );
|
|
viewToModify->cellResult()->setFlowSolution( flowDiagSolution );
|
|
|
|
switch ( tracerStatus )
|
|
{
|
|
case RimFlowDiagSolution::TracerStatusType::PRODUCER:
|
|
viewToModify->cellResult()->setFlowDiagTracerSelectionType( RimEclipseResultDefinition::FlowTracerSelectionType::FLOW_TR_INJECTORS );
|
|
break;
|
|
case RimFlowDiagSolution::TracerStatusType::INJECTOR:
|
|
viewToModify->cellResult()->setFlowDiagTracerSelectionType( RimEclipseResultDefinition::FlowTracerSelectionType::FLOW_TR_PRODUCERS );
|
|
break;
|
|
|
|
default:
|
|
CVF_ASSERT( false );
|
|
break;
|
|
}
|
|
|
|
viewToModify->cellResult()->loadDataAndUpdate();
|
|
viewToModify->cellResult()->updateConnectedEditors();
|
|
|
|
std::vector<QString> tracerNames = findContributingTracerNames( flowDiagSolution, selectedWell->simWellData(), timeStep );
|
|
|
|
for ( RimSimWellInView* w : viewToModify->wellCollection()->wells() )
|
|
{
|
|
if ( std::find( tracerNames.begin(), tracerNames.end(), w->name() ) != tracerNames.end() || selectedWell->name() == w->name() )
|
|
{
|
|
w->showWell = true;
|
|
}
|
|
else
|
|
{
|
|
w->showWell = false;
|
|
}
|
|
}
|
|
|
|
// Disable all existing property filters, and
|
|
// create a new property filter based on TOF for current well
|
|
|
|
RimEclipsePropertyFilterCollection* propertyFilterCollection = viewToModify->eclipsePropertyFilterCollection();
|
|
|
|
for ( RimEclipsePropertyFilter* f : propertyFilterCollection->propertyFilters() )
|
|
{
|
|
f->setActive( false );
|
|
}
|
|
|
|
RimEclipsePropertyFilter* propertyFilter = new RimEclipsePropertyFilter();
|
|
propertyFilterCollection->propertyFiltersField().push_back( propertyFilter );
|
|
|
|
propertyFilter->resultDefinition()->setEclipseCase( viewToModify->eclipseCase() );
|
|
propertyFilter->resultDefinition()->setTofAndSelectTracer( selectedWell->name() );
|
|
propertyFilter->resultDefinition()->loadDataAndUpdate();
|
|
|
|
propertyFilterCollection->updateConnectedEditors();
|
|
|
|
Riu3DMainWindowTools::setExpanded( propertyFilterCollection );
|
|
|
|
viewToModify->faultCollection()->setActive( false );
|
|
viewToModify->faultCollection()->updateConnectedEditors();
|
|
|
|
viewToModify->updateDisplayModelForCurrentTimeStepAndRedraw();
|
|
viewToModify->scheduleCreateDisplayModelAndRedraw();
|
|
}
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
///
|
|
//--------------------------------------------------------------------------------------------------
|
|
std::vector<QString> RicShowContributingWellsFeatureImpl::findContributingTracerNames( const RimFlowDiagSolution* flowDiagSolution,
|
|
const RigSimWellData* simWellData,
|
|
int timeStep )
|
|
{
|
|
std::vector<QString> tracerCellFractionValues;
|
|
|
|
if ( flowDiagSolution && simWellData->hasWellResult( timeStep ) )
|
|
{
|
|
RimFlowDiagSolution::TracerStatusType requestedTracerType = RimFlowDiagSolution::TracerStatusType::UNDEFINED;
|
|
|
|
const RiaDefines::WellProductionType prodType = simWellData->wellProductionType( timeStep );
|
|
if ( prodType == RiaDefines::WellProductionType::PRODUCER || prodType == RiaDefines::WellProductionType::UNDEFINED_PRODUCTION_TYPE )
|
|
{
|
|
requestedTracerType = RimFlowDiagSolution::TracerStatusType::INJECTOR;
|
|
}
|
|
else
|
|
{
|
|
requestedTracerType = RimFlowDiagSolution::TracerStatusType::PRODUCER;
|
|
}
|
|
|
|
std::vector<QString> tracerNames = flowDiagSolution->tracerNames();
|
|
for ( const QString& tracerName : tracerNames )
|
|
{
|
|
if ( flowDiagSolution->tracerStatusInTimeStep( tracerName, timeStep ) == requestedTracerType )
|
|
{
|
|
tracerCellFractionValues.push_back( tracerName );
|
|
}
|
|
}
|
|
}
|
|
|
|
return tracerCellFractionValues;
|
|
}
|