83 lines
2.0 KiB
C++
83 lines
2.0 KiB
C++
/*
|
|
Copyright 2016 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 OPM_PARSER_GRIDDIMS_HPP
|
|
#define OPM_PARSER_GRIDDIMS_HPP
|
|
|
|
#include <array>
|
|
#include <stdexcept>
|
|
#include <vector>
|
|
|
|
namespace Opm {
|
|
class Deck;
|
|
class DeckKeyword;
|
|
|
|
class GridDims
|
|
{
|
|
public:
|
|
|
|
GridDims();
|
|
explicit GridDims(std::array<int, 3> xyz);
|
|
GridDims(size_t nx, size_t ny, size_t nz);
|
|
|
|
static GridDims serializeObject();
|
|
|
|
explicit GridDims(const Deck& deck);
|
|
|
|
size_t getNX() const;
|
|
|
|
size_t getNY() const;
|
|
size_t getNZ() const;
|
|
size_t operator[](int dim) const;
|
|
|
|
const std::array<int, 3> getNXYZ() const;
|
|
|
|
size_t getGlobalIndex(size_t i, size_t j, size_t k) const;
|
|
|
|
const std::array<int, 3> getIJK(size_t globalIndex) const;
|
|
|
|
size_t getCartesianSize() const;
|
|
|
|
void assertGlobalIndex(size_t globalIndex) const;
|
|
|
|
void assertIJK(size_t i, size_t j, size_t k) const;
|
|
|
|
bool operator==(const GridDims& data) const;
|
|
|
|
template<class Serializer>
|
|
void serializeOp(Serializer& serializer)
|
|
{
|
|
serializer(m_nx);
|
|
serializer(m_ny);
|
|
serializer(m_nz);
|
|
}
|
|
|
|
protected:
|
|
size_t m_nx;
|
|
size_t m_ny;
|
|
size_t m_nz;
|
|
|
|
private:
|
|
void init(const DeckKeyword& keyword);
|
|
void binary_init(const Deck& deck);
|
|
};
|
|
}
|
|
|
|
#endif /* OPM_PARSER_GRIDDIMS_HPP */
|