mirror of
https://github.com/OPM/ResInsight.git
synced 2025-02-11 07:56:08 -06:00
212 lines
8.3 KiB
C++
212 lines
8.3 KiB
C++
/////////////////////////////////////////////////////////////////////////////////
|
|
//
|
|
// Copyright (C) 2011-2012 Statoil ASA, Ceetron AS
|
|
//
|
|
// 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 "RiaStdInclude.h"
|
|
|
|
#include "RimResultDefinition.h"
|
|
|
|
#include "RimReservoirView.h"
|
|
#include "RimCase.h"
|
|
#include "RigCaseCellResultsData.h"
|
|
#include "RigCaseData.h"
|
|
#include "RigMainGrid.h"
|
|
#include "cafPdmUiListEditor.h"
|
|
|
|
|
|
CAF_PDM_SOURCE_INIT(RimResultDefinition, "ResultDefinition");
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
///
|
|
//--------------------------------------------------------------------------------------------------
|
|
RimResultDefinition::RimResultDefinition()
|
|
: m_gridScalarResultIndex(cvf::UNDEFINED_SIZE_T)
|
|
{
|
|
CAF_PDM_InitObject("Result Definition", "", "", "");
|
|
|
|
CAF_PDM_InitFieldNoDefault(&resultType, "ResultType", "Type", "", "", "");
|
|
CAF_PDM_InitFieldNoDefault(&porosityModel, "PorosityModelType", "Type", "", "", "");
|
|
CAF_PDM_InitField(&resultVariable, "ResultVariable", RimDefines::undefinedResultName(), "Variable", "", "", "" );
|
|
|
|
resultVariable.setUiEditorTypeName(caf::PdmUiListEditor::uiEditorTypeName());
|
|
}
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
///
|
|
//--------------------------------------------------------------------------------------------------
|
|
RimResultDefinition::~RimResultDefinition()
|
|
{
|
|
}
|
|
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
///
|
|
//--------------------------------------------------------------------------------------------------
|
|
void RimResultDefinition::setReservoirView(RimReservoirView* ownerReservoirView)
|
|
{
|
|
m_reservoirView = ownerReservoirView;
|
|
|
|
// TODO: This code is executed before reservoir is read, and then porosity model is never set to zero
|
|
if (m_reservoirView->eclipseCase() &&
|
|
m_reservoirView->eclipseCase()->reservoirData() &&
|
|
m_reservoirView->eclipseCase()->reservoirData()->activeCellInfo(RifReaderInterface::FRACTURE_RESULTS) )
|
|
{
|
|
if (m_reservoirView->eclipseCase()->reservoirData()->activeCellInfo(RifReaderInterface::FRACTURE_RESULTS)->globalActiveCellCount() == 0)
|
|
{
|
|
porosityModel.setUiHidden(true);
|
|
}
|
|
}
|
|
}
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
///
|
|
//--------------------------------------------------------------------------------------------------
|
|
void RimResultDefinition::fieldChangedByUi(const caf::PdmFieldHandle* changedField, const QVariant& oldValue, const QVariant& newValue)
|
|
{
|
|
if (changedField == &resultType)
|
|
{
|
|
resultVariable = RimDefines::undefinedResultName();
|
|
}
|
|
|
|
loadResult();
|
|
}
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
///
|
|
//--------------------------------------------------------------------------------------------------
|
|
QList<caf::PdmOptionItemInfo> RimResultDefinition::calculateValueOptions(const caf::PdmFieldHandle* fieldNeedingOptions, bool * useOptionsOnly)
|
|
{
|
|
if (fieldNeedingOptions == &resultVariable)
|
|
{
|
|
if (m_reservoirView && m_reservoirView->currentGridCellResults())
|
|
{
|
|
QStringList varList = m_reservoirView->currentGridCellResults()->cellResults()->resultNames(resultType());
|
|
QList<caf::PdmOptionItemInfo> optionList;
|
|
int i;
|
|
for (i = 0; i < varList.size(); ++i)
|
|
{
|
|
optionList.push_back(caf::PdmOptionItemInfo( varList[i], varList[i]));
|
|
}
|
|
optionList.push_front(caf::PdmOptionItemInfo( RimDefines::undefinedResultName(), RimDefines::undefinedResultName() ));
|
|
|
|
if (useOptionsOnly) *useOptionsOnly = true;
|
|
|
|
return optionList;
|
|
}
|
|
}
|
|
|
|
return QList<caf::PdmOptionItemInfo>();
|
|
}
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
///
|
|
//--------------------------------------------------------------------------------------------------
|
|
size_t RimResultDefinition::gridScalarIndex() const
|
|
{
|
|
if (m_gridScalarResultIndex == cvf::UNDEFINED_SIZE_T)
|
|
{
|
|
const RimReservoirCellResultsStorage* gridCellResults = m_reservoirView->currentGridCellResults();
|
|
if (gridCellResults) m_gridScalarResultIndex = gridCellResults->cellResults()->findScalarResultIndex(resultType(), resultVariable());
|
|
}
|
|
return m_gridScalarResultIndex;
|
|
}
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
///
|
|
//--------------------------------------------------------------------------------------------------
|
|
void RimResultDefinition::loadResult()
|
|
{
|
|
RimReservoirCellResultsStorage* gridCellResults = m_reservoirView->currentGridCellResults();
|
|
if (gridCellResults)
|
|
{
|
|
m_gridScalarResultIndex = gridCellResults->findOrLoadScalarResult(resultType(), resultVariable);
|
|
}
|
|
else
|
|
{
|
|
m_gridScalarResultIndex = cvf::UNDEFINED_SIZE_T;
|
|
}
|
|
}
|
|
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
/// Returns whether the result requested by the definition is a single frame result
|
|
/// The result needs to be loaded before asking
|
|
//--------------------------------------------------------------------------------------------------
|
|
bool RimResultDefinition::hasStaticResult() const
|
|
{
|
|
const RimReservoirCellResultsStorage* gridCellResults = m_reservoirView->currentGridCellResults();
|
|
if (hasResult() && gridCellResults->cellResults()->timeStepCount(m_gridScalarResultIndex) == 1 )
|
|
{
|
|
return true;
|
|
}
|
|
else
|
|
{
|
|
return false;
|
|
}
|
|
}
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
/// Returns whether the result requested by the definition is loaded or possible to load from the result file
|
|
//--------------------------------------------------------------------------------------------------
|
|
bool RimResultDefinition::hasResult() const
|
|
{
|
|
if (m_gridScalarResultIndex != cvf::UNDEFINED_SIZE_T) return true;
|
|
|
|
if (m_reservoirView->currentGridCellResults() && m_reservoirView->currentGridCellResults()->cellResults())
|
|
{
|
|
const RigCaseCellResultsData* gridCellResults = m_reservoirView->currentGridCellResults()->cellResults();
|
|
m_gridScalarResultIndex = gridCellResults->findScalarResultIndex(resultType(), resultVariable());
|
|
return m_gridScalarResultIndex != cvf::UNDEFINED_SIZE_T;
|
|
}
|
|
|
|
return false;
|
|
}
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
/// Returns whether the result requested by the definition is a multi frame result
|
|
/// The result needs to be loaded before asking
|
|
//--------------------------------------------------------------------------------------------------
|
|
bool RimResultDefinition::hasDynamicResult() const
|
|
{
|
|
if (hasResult())
|
|
{
|
|
if (resultType() == RimDefines::DYNAMIC_NATIVE)
|
|
{
|
|
return true;
|
|
}
|
|
|
|
if (m_reservoirView->currentGridCellResults() && m_reservoirView->currentGridCellResults()->cellResults())
|
|
{
|
|
const RigCaseCellResultsData* gridCellResults = m_reservoirView->currentGridCellResults()->cellResults();
|
|
if (gridCellResults->timeStepCount(m_gridScalarResultIndex) > 1 )
|
|
{
|
|
return true;
|
|
}
|
|
}
|
|
}
|
|
|
|
return false;
|
|
}
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
///
|
|
//--------------------------------------------------------------------------------------------------
|
|
RimReservoirView* RimResultDefinition::reservoirView()
|
|
{
|
|
return m_reservoirView;
|
|
}
|