Files
ResInsight/ApplicationLibCode/ProjectDataModel/RimReservoirGridEnsembleBase.h
T

62 lines
2.2 KiB
C++
Raw Normal View History

2026-02-13 08:28:34 +01:00
/////////////////////////////////////////////////////////////////////////////////
//
// Copyright (C) 2026 Equinor 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.
//
/////////////////////////////////////////////////////////////////////////////////
#pragma once
#include "RiaPorosityModel.h"
#include <QString>
#include <set>
2026-02-13 08:28:34 +01:00
#include <vector>
class RigActiveCellInfo;
class RigMainGrid;
class RimCaseCollection;
class RimEclipseCase;
class RimEclipseStatisticsCase;
class RimFormationNames;
class RimStatisticsContourMap;
2026-02-13 08:28:34 +01:00
class RimReservoirGridEnsembleBase
{
public:
enum class GridModeType
{
SHARED_GRID,
INDIVIDUAL_GRIDS
};
2026-02-13 08:28:34 +01:00
virtual ~RimReservoirGridEnsembleBase() = default;
virtual QString ensembleName() const = 0;
virtual GridModeType gridMode() const = 0;
virtual std::vector<RimEclipseCase*> sourceCases() const = 0;
virtual RimEclipseCase* mainCase() = 0;
2026-02-13 08:28:34 +01:00
virtual RigMainGrid* mainGrid();
virtual RigActiveCellInfo* unionOfActiveCells( RiaDefines::PorosityModelType porosityType );
virtual void computeUnionOfActiveCells();
virtual std::set<RimEclipseCase*> casesInViews() const;
virtual RimCaseCollection* statisticsCaseCollection() const;
virtual RimFormationNames* activeFormationNames() const;
virtual void addStatisticsContourMap( RimStatisticsContourMap* statisticsContourMap ) {}
virtual std::vector<RimStatisticsContourMap*> statisticsContourMaps() const { return {}; }
virtual RimEclipseStatisticsCase* createAndAppendStatisticsCase();
2026-02-13 08:28:34 +01:00
};