2012-05-18 02:45:23 -05:00
|
|
|
/////////////////////////////////////////////////////////////////////////////////
|
|
|
|
//
|
|
|
|
// 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.
|
|
|
|
//
|
|
|
|
/////////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include "cafPdmObject.h"
|
|
|
|
#include "cafAppEnum.h"
|
|
|
|
#include "cafPdmField.h"
|
|
|
|
#include "RimDefines.h"
|
|
|
|
#include "cafPdmPointer.h"
|
|
|
|
|
|
|
|
|
|
|
|
class RimReservoirView;
|
2013-03-22 09:43:42 -05:00
|
|
|
class RigCaseCellResultsData;
|
2013-04-30 06:41:53 -05:00
|
|
|
class RimReservoirCellResultsStorage;
|
2012-05-18 02:45:23 -05:00
|
|
|
//==================================================================================================
|
|
|
|
///
|
|
|
|
///
|
|
|
|
//==================================================================================================
|
|
|
|
class RimResultDefinition : public caf::PdmObject
|
|
|
|
{
|
|
|
|
CAF_PDM_HEADER_INIT;
|
|
|
|
public:
|
|
|
|
RimResultDefinition();
|
|
|
|
virtual ~RimResultDefinition();
|
|
|
|
|
2013-04-30 06:41:53 -05:00
|
|
|
virtual void setReservoirView(RimReservoirView* ownerReservoirView);
|
|
|
|
RimReservoirView* reservoirView();
|
2012-05-18 02:45:23 -05:00
|
|
|
|
2013-04-30 06:41:53 -05:00
|
|
|
RimDefines::ResultCatType resultType() const { return m_resultType(); }
|
|
|
|
void setResultType(RimDefines::ResultCatType val);
|
|
|
|
RimDefines::PorosityModelType porosityModel() const { return m_porosityModel(); }
|
|
|
|
void setPorosityModel(RimDefines::PorosityModelType val);
|
|
|
|
QString resultVariable() const { return m_resultVariable(); }
|
|
|
|
void setResultVariable(const QString& val);
|
|
|
|
void setPorosityModelUiFieldHidden(bool hide);
|
2012-05-18 02:45:23 -05:00
|
|
|
|
2013-04-30 06:41:53 -05:00
|
|
|
void loadResult();
|
|
|
|
size_t gridScalarIndex() const;
|
|
|
|
bool hasStaticResult() const;
|
|
|
|
bool hasDynamicResult() const;
|
|
|
|
bool hasResult() const;
|
|
|
|
RimReservoirCellResultsStorage* currentGridCellResults() const;
|
2012-05-18 02:45:23 -05:00
|
|
|
|
|
|
|
|
|
|
|
virtual QList<caf::PdmOptionItemInfo> calculateValueOptions( const caf::PdmFieldHandle* fieldNeedingOptions, bool * useOptionsOnly );
|
|
|
|
virtual void fieldChangedByUi(const caf::PdmFieldHandle* changedField, const QVariant& oldValue, const QVariant& newValue);
|
2013-04-30 06:41:53 -05:00
|
|
|
virtual void initAfterRead();
|
2012-05-18 02:45:23 -05:00
|
|
|
|
|
|
|
protected:
|
2013-04-30 06:41:53 -05:00
|
|
|
caf::PdmField< caf::AppEnum< RimDefines::ResultCatType > > m_resultType;
|
|
|
|
caf::PdmField< caf::AppEnum< RimDefines::PorosityModelType > > m_porosityModel;
|
|
|
|
caf::PdmField<QString> m_resultVariable;
|
|
|
|
|
|
|
|
friend class RimCellPropertyFilter;
|
|
|
|
// User interface only fields, to support "filtering"-like behaviour etc.
|
|
|
|
caf::PdmField< caf::AppEnum< RimDefines::ResultCatType > > m_resultTypeUiField;
|
|
|
|
caf::PdmField< caf::AppEnum< RimDefines::PorosityModelType > > m_porosityModelUiField;
|
|
|
|
caf::PdmField<QString> m_resultVariableUiField;
|
|
|
|
|
|
|
|
|
2013-06-12 06:42:36 -05:00
|
|
|
//mutable size_t m_gridScalarResultIndex;
|
2012-05-18 02:45:23 -05:00
|
|
|
|
2013-04-30 06:41:53 -05:00
|
|
|
caf::PdmPointer<RimReservoirView> m_reservoirView;
|
2012-05-18 02:45:23 -05:00
|
|
|
|
2013-04-30 06:41:53 -05:00
|
|
|
private:
|
|
|
|
QStringList getResultVariableListForCurrentUIFieldSettings();
|
2012-05-18 02:45:23 -05:00
|
|
|
};
|
|
|
|
|