2013-02-14 14:30:01 +01:00
|
|
|
/////////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
//
|
2014-09-23 15:04:57 +02:00
|
|
|
// Copyright (C) 2011- Statoil ASA
|
|
|
|
|
// Copyright (C) 2013- Ceetron Solutions AS
|
|
|
|
|
// Copyright (C) 2011-2012 Ceetron AS
|
2013-02-14 14:30:01 +01:00
|
|
|
//
|
|
|
|
|
// 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
|
|
|
|
|
|
2015-07-31 18:58:23 +02:00
|
|
|
#include "RifReaderInterface.h"
|
|
|
|
|
|
|
|
|
|
#include "cafPdmChildField.h"
|
2013-02-14 14:30:01 +01:00
|
|
|
#include "cafPdmField.h"
|
|
|
|
|
#include "cafPdmObject.h"
|
|
|
|
|
|
2015-07-31 18:58:23 +02:00
|
|
|
#include "cvfBase.h"
|
|
|
|
|
#include "cvfObject.h"
|
2013-05-06 10:55:00 +02:00
|
|
|
|
2015-07-31 18:58:23 +02:00
|
|
|
class RigActiveCellInfo;
|
|
|
|
|
class RigMainGrid;
|
2013-02-21 12:00:49 +01:00
|
|
|
|
2015-07-31 18:58:23 +02:00
|
|
|
class RimCaseCollection;
|
2015-05-15 08:40:27 +02:00
|
|
|
class RimEclipseCase;
|
2015-07-31 18:58:23 +02:00
|
|
|
class RimEclipseStatisticsCase;
|
2013-02-14 14:30:01 +01:00
|
|
|
|
|
|
|
|
//==================================================================================================
|
|
|
|
|
//
|
|
|
|
|
//
|
|
|
|
|
//
|
|
|
|
|
//==================================================================================================
|
|
|
|
|
class RimIdenticalGridCaseGroup : public caf::PdmObject
|
|
|
|
|
{
|
|
|
|
|
CAF_PDM_HEADER_INIT;
|
|
|
|
|
|
|
|
|
|
public:
|
|
|
|
|
RimIdenticalGridCaseGroup();
|
|
|
|
|
virtual ~RimIdenticalGridCaseGroup();
|
|
|
|
|
|
2013-04-02 16:59:55 +02:00
|
|
|
caf::PdmField<QString> name;
|
2013-05-10 15:35:33 +02:00
|
|
|
caf::PdmField<int> groupId;
|
2015-07-31 18:58:23 +02:00
|
|
|
caf::PdmChildField<RimCaseCollection*> caseCollection;
|
|
|
|
|
caf::PdmChildField<RimCaseCollection*> statisticsCaseCollection;
|
2013-02-21 10:38:28 +01:00
|
|
|
|
2015-05-15 08:40:27 +02:00
|
|
|
void addCase(RimEclipseCase* reservoir);
|
|
|
|
|
void removeCase(RimEclipseCase* reservoir);
|
2013-04-07 17:27:45 +02:00
|
|
|
|
2015-05-15 08:40:27 +02:00
|
|
|
bool contains(RimEclipseCase* reservoir) const;
|
|
|
|
|
bool canCaseBeAdded(RimEclipseCase* reservoir) const;
|
2013-02-14 14:30:01 +01:00
|
|
|
|
2015-06-25 11:57:41 +02:00
|
|
|
RimEclipseStatisticsCase* createAndAppendStatisticsCase();
|
2013-03-21 10:31:58 +01:00
|
|
|
|
2013-02-14 14:30:01 +01:00
|
|
|
|
2015-05-15 08:40:27 +02:00
|
|
|
RimEclipseCase* mainCase();
|
2013-04-02 16:59:55 +02:00
|
|
|
void loadMainCaseAndActiveCellInfo();
|
2013-03-21 15:31:47 +01:00
|
|
|
|
2013-04-02 16:59:55 +02:00
|
|
|
RigMainGrid* mainGrid();
|
2013-02-14 14:30:01 +01:00
|
|
|
|
2013-04-02 16:59:55 +02:00
|
|
|
RigActiveCellInfo* unionOfActiveCells(RifReaderInterface::PorosityModelResultType porosityType);
|
|
|
|
|
void computeUnionOfActiveCells();
|
2013-03-21 10:31:58 +01:00
|
|
|
|
2013-04-02 16:59:55 +02:00
|
|
|
static bool isStatisticsCaseCollection(RimCaseCollection* rimCaseCollection);
|
2013-03-22 11:47:46 +01:00
|
|
|
|
2013-02-21 10:38:28 +01:00
|
|
|
protected:
|
2013-04-02 16:59:55 +02:00
|
|
|
virtual caf::PdmFieldHandle* userDescriptionField();
|
2013-02-21 10:38:28 +01:00
|
|
|
|
2013-03-21 10:31:58 +01:00
|
|
|
private:
|
2013-04-02 16:59:55 +02:00
|
|
|
void updateMainGridAndActiveCellsForStatisticsCases();
|
|
|
|
|
void clearStatisticsResults();
|
|
|
|
|
void clearActiveCellUnions();
|
2013-03-21 10:31:58 +01:00
|
|
|
|
2013-02-14 14:30:01 +01:00
|
|
|
private:
|
2013-04-02 16:59:55 +02:00
|
|
|
RigMainGrid* m_mainGrid;
|
2013-03-21 10:31:58 +01:00
|
|
|
|
2013-04-02 16:59:55 +02:00
|
|
|
cvf::ref<RigActiveCellInfo> m_unionOfMatrixActiveCells;
|
|
|
|
|
cvf::ref<RigActiveCellInfo> m_unionOfFractureActiveCells;
|
2013-02-14 14:30:01 +01:00
|
|
|
};
|