This commit switches to constructing Box instances from a GridDims and two call-back functions instead of taking an EclipseGrid directly. The two call-back functions are a predicate for active cells and a translation from Cartesian to active cell indices respectively. This is intended to simplify working with nested boxes, such as those that occur for local grid refinement.
117 lines
3.3 KiB
C++
117 lines
3.3 KiB
C++
/*
|
|
Copyright 2014 Statoil ASA.
|
|
|
|
This file is part of the Open Porous Media project (OPM).
|
|
|
|
OPM 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.
|
|
|
|
OPM 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 for more details.
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
along with OPM. If not, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
#ifndef BOX_HPP_
|
|
#define BOX_HPP_
|
|
|
|
#include <opm/input/eclipse/EclipseState/Grid/GridDims.hpp>
|
|
|
|
#include <array>
|
|
#include <cstddef>
|
|
#include <functional>
|
|
#include <vector>
|
|
|
|
namespace Opm {
|
|
class DeckRecord;
|
|
}
|
|
|
|
namespace Opm
|
|
{
|
|
class Box
|
|
{
|
|
public:
|
|
using IsActive = std::function<bool(const std::size_t globalIdx)>;
|
|
using ActiveIdx = std::function<std::size_t(const std::size_t globalIdx)>;
|
|
|
|
struct cell_index
|
|
{
|
|
std::size_t global_index;
|
|
std::size_t active_index;
|
|
std::size_t data_index;
|
|
|
|
cell_index(std::size_t g,std::size_t a, std::size_t d)
|
|
: global_index(g)
|
|
, active_index(a)
|
|
, data_index(d)
|
|
{}
|
|
|
|
// This constructor should is used by the global_index_list() member
|
|
// which will return a list of *all* the cells in the box. In this
|
|
// case the active_index will be set to the global_index. This is a
|
|
// hack to simplify the treatment of global fields in the FieldProps
|
|
// implementation.
|
|
cell_index(std::size_t g, std::size_t d)
|
|
: global_index(g)
|
|
, active_index(g)
|
|
, data_index(d)
|
|
{}
|
|
};
|
|
|
|
explicit Box(const GridDims& gridDims,
|
|
IsActive isActive,
|
|
ActiveIdx activeIdx);
|
|
|
|
Box(const GridDims& gridDims,
|
|
IsActive isActive,
|
|
ActiveIdx activeIdx,
|
|
int i1, int i2,
|
|
int j1, int j2,
|
|
int k1, int k2);
|
|
|
|
void update(const DeckRecord& deckRecord);
|
|
void reset();
|
|
|
|
bool isGlobal() const;
|
|
std::size_t size() const;
|
|
std::size_t getDim(std::size_t idim) const;
|
|
|
|
const std::vector<cell_index>& index_list() const;
|
|
const std::vector<cell_index>& global_index_list() const;
|
|
|
|
bool operator==(const Box& other) const;
|
|
bool equal(const Box& other) const;
|
|
|
|
int I1() const;
|
|
int I2() const;
|
|
int J1() const;
|
|
int J2() const;
|
|
int K1() const;
|
|
int K2() const;
|
|
|
|
private:
|
|
GridDims m_globalGridDims_{};
|
|
IsActive m_globalIsActive_{};
|
|
ActiveIdx m_globalActiveIdx_{};
|
|
|
|
std::array<std::size_t, 3> m_dims{};
|
|
std::array<std::size_t, 3> m_offset{};
|
|
|
|
std::vector<cell_index> m_active_index_list;
|
|
std::vector<cell_index> m_global_index_list;
|
|
|
|
void init(int i1, int i2, int j1, int j2, int k1, int k2);
|
|
void initIndexList();
|
|
int lower(int dim) const;
|
|
int upper(int dim) const;
|
|
};
|
|
}
|
|
|
|
|
|
#endif
|