2013-02-14 15:27:35 +01: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 "cvfBase.h"
|
|
|
|
|
#include "cvfObject.h"
|
|
|
|
|
#include "cafPdmField.h"
|
|
|
|
|
#include "cafPdmObject.h"
|
|
|
|
|
|
|
|
|
|
#include "RimReservoir.h"
|
|
|
|
|
|
2013-02-15 08:44:45 +01:00
|
|
|
class RimIdenticalGridCaseGroup;
|
|
|
|
|
class RimResultDefinition;
|
2013-02-21 08:48:26 +01:00
|
|
|
class RifReaderStatisticalCalculation;
|
2013-02-21 12:00:49 +01:00
|
|
|
class RimStatisticalCollection;
|
2013-03-02 15:32:38 +01:00
|
|
|
class RigMainGrid;
|
2013-02-15 08:44:45 +01:00
|
|
|
|
2013-02-14 15:27:35 +01:00
|
|
|
|
|
|
|
|
//==================================================================================================
|
|
|
|
|
//
|
|
|
|
|
//
|
|
|
|
|
//
|
|
|
|
|
//==================================================================================================
|
|
|
|
|
class RimStatisticalCalculation : public RimReservoir
|
|
|
|
|
{
|
|
|
|
|
CAF_PDM_HEADER_INIT;
|
|
|
|
|
|
|
|
|
|
public:
|
|
|
|
|
RimStatisticalCalculation();
|
|
|
|
|
virtual ~RimStatisticalCalculation();
|
|
|
|
|
|
2013-03-02 15:32:38 +01:00
|
|
|
void setMainGrid(RigMainGrid* mainGrid);
|
|
|
|
|
|
2013-02-14 15:27:35 +01:00
|
|
|
virtual bool openEclipseGridFile();
|
|
|
|
|
|
2013-03-02 15:32:38 +01:00
|
|
|
caf::PdmField<QString> m_resultName;
|
|
|
|
|
|
2013-03-13 13:51:26 +01:00
|
|
|
RimStatisticalCollection* parentStatisticalCollection();
|
2013-02-15 08:44:45 +01:00
|
|
|
|
|
|
|
|
virtual void defineUiOrdering( QString uiConfigName, caf::PdmUiOrdering& uiOrdering ) const;
|
|
|
|
|
void computeStatistics();
|
|
|
|
|
|
2013-02-14 15:27:35 +01:00
|
|
|
private:
|
2013-03-02 15:32:38 +01:00
|
|
|
RimIdenticalGridCaseGroup* caseGroup();
|
|
|
|
|
|
2013-03-18 14:34:29 +01:00
|
|
|
void getSourceCases(std::vector<RimReservoir*>& sourceCases);
|
2013-03-02 15:32:38 +01:00
|
|
|
|
2013-02-21 08:48:26 +01:00
|
|
|
private:
|
|
|
|
|
cvf::ref<RifReaderStatisticalCalculation> m_readerInterface;
|
|
|
|
|
|
2013-02-14 15:27:35 +01:00
|
|
|
};
|