Files
ResInsight/ApplicationCode/ReservoirDataModel/RigActiveCellInfo.h
T

85 lines
2.9 KiB
C++
Raw Normal View History

2013-02-11 15:12:53 +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-11 15:12:53 +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
#include "cvfBase.h"
#include "cvfObject.h"
#include "cvfVector3.h"
#include "cvfBoundingBox.h"
#include <vector>
class RigActiveCellInfo : public cvf::Object
2013-02-11 15:12:53 +01:00
{
public:
RigActiveCellInfo();
2014-08-08 10:45:52 +02:00
void setReservoirCellCount(size_t reservoirCellCount);
2014-08-08 10:27:29 +02:00
size_t reservoirCellCount() const;
size_t reservoirActiveCellCount() const;
size_t reservoirCellResultCount() const;
2014-04-03 10:58:29 +02:00
bool isCoarseningActive() const;
2013-02-11 15:12:53 +01:00
bool isActive(size_t reservoirCellIndex) const;
size_t cellResultIndex(size_t reservoirCellIndex) const;
void setCellResultIndex(size_t reservoirCellIndex, size_t globalResultCellIndex);
2013-02-11 15:12:53 +01:00
2013-02-12 07:11:32 +01:00
void setGridCount(size_t gridCount);
2013-03-22 09:32:42 +01:00
void setGridActiveCellCounts(size_t gridIndex, size_t activeCellCount);
void gridActiveCellCounts(size_t gridIndex, size_t& activeCellCount);
2013-02-12 07:11:32 +01:00
void computeDerivedData();
2013-02-11 15:12:53 +01:00
2013-03-22 09:32:42 +01:00
void setIJKBoundingBox(const cvf::Vec3st& min, const cvf::Vec3st& max);
void IJKBoundingBox(cvf::Vec3st& min, cvf::Vec3st& max) const;
2013-02-11 15:12:53 +01:00
2013-03-22 09:32:42 +01:00
cvf::BoundingBox geometryBoundingBox() const;
void setGeometryBoundingBox(cvf::BoundingBox bb);
2013-02-11 15:12:53 +01:00
void clear();
2013-02-11 15:12:53 +01:00
private:
class GridActiveCellCounts
{
public:
2013-03-22 09:32:42 +01:00
size_t activeCellCount() const;
void setActiveCellCount(size_t activeCellCount);
2013-02-11 15:12:53 +01:00
private:
2013-03-22 09:32:42 +01:00
size_t m_activeCellCount;
2013-02-11 15:12:53 +01:00
};
private:
2013-02-13 13:50:37 +01:00
std::vector<GridActiveCellCounts> m_perGridActiveCellInfo;
2013-03-22 09:32:42 +01:00
std::vector<size_t> m_cellIndexToResultIndex;
2013-02-11 15:12:53 +01:00
2014-08-08 10:45:52 +02:00
size_t m_reservoirActiveCellCount;
size_t m_reservoirCellResultCount;
2013-02-11 15:12:53 +01:00
cvf::Vec3st m_activeCellPositionMin;
cvf::Vec3st m_activeCellPositionMax;
2013-02-11 15:12:53 +01:00
2013-03-22 09:32:42 +01:00
cvf::BoundingBox m_activeCellsBoundingBox;
2013-02-11 15:12:53 +01:00
};