cpgrid/CartesianIndexMapper.hpp
Go to the documentation of this file.
1#ifndef OPM_CPGRIDCARTESIANINDEXMAPPER_HEADER
2#define OPM_CPGRIDCARTESIANINDEXMAPPER_HEADER
3
4#include <array>
5#include <cassert>
6#include <stdexcept>
7
9#include <opm/grid/CpGrid.hpp>
10
11namespace Dune
12{
13 template<>
15 {
16 public:
17 static const int dimension = 3 ;
18 protected:
19 typedef CpGrid Grid;
20 const Grid& grid_;
21 const int cartesianSize_;
22
24 {
25 int size = cartesianDimensions()[ 0 ];
26 for( int d=1; d<dimension; ++d )
27 size *= cartesianDimensions()[ d ];
28 return size;
29 }
30
31 public:
32 explicit CartesianIndexMapper( const Grid& grid )
33 : grid_( grid ),
34 cartesianSize_( computeCartesianSize() )
35 {
36 }
37
38 const std::array<int, dimension>& cartesianDimensions() const
39 {
40 return grid_.logicalCartesianSize();
41 }
42
43 int cartesianSize() const
44 {
45 return cartesianSize_;
46 }
47
48 int compressedSize() const
49 {
50 return grid_.globalCell().size();
51 }
52
54 {
55
56 return (*grid_.chooseData()[0]).size(0);
57 }
58
59 int cartesianIndex( const int compressedElementIndex ) const
60 {
61 assert( compressedElementIndex >= 0 && compressedElementIndex < compressedSize() );
62 return grid_.globalCell()[ compressedElementIndex ];
63 }
64
65 void cartesianCoordinate(const int compressedElementIndex, std::array<int,dimension>& coords) const
66 {
67 grid_.getIJK( compressedElementIndex, coords );
68 }
69
70 void cartesianCoordinateLevel(const int compressedElementIndexOnLevel, std::array<int,dimension>& coordsOnLevel, int level) const
71 {
72 if ((level < 0) || (level > grid_.maxLevel())) {
73 throw std::invalid_argument("Invalid level.\n");
74 }
75 (*grid_.chooseData()[level]).getIJK( compressedElementIndexOnLevel, coordsOnLevel);
76 }
77 };
78
79} // end namespace Opm
80#endif
int compressedLevelZeroSize() const
Definition: cpgrid/CartesianIndexMapper.hpp:53
const int cartesianSize_
Definition: cpgrid/CartesianIndexMapper.hpp:21
const Grid & grid_
Definition: cpgrid/CartesianIndexMapper.hpp:20
int cartesianSize() const
Definition: cpgrid/CartesianIndexMapper.hpp:43
int compressedSize() const
Definition: cpgrid/CartesianIndexMapper.hpp:48
const std::array< int, dimension > & cartesianDimensions() const
Definition: cpgrid/CartesianIndexMapper.hpp:38
CpGrid Grid
Definition: cpgrid/CartesianIndexMapper.hpp:19
int computeCartesianSize() const
Definition: cpgrid/CartesianIndexMapper.hpp:23
CartesianIndexMapper(const Grid &grid)
Definition: cpgrid/CartesianIndexMapper.hpp:32
void cartesianCoordinate(const int compressedElementIndex, std::array< int, dimension > &coords) const
Definition: cpgrid/CartesianIndexMapper.hpp:65
int cartesianIndex(const int compressedElementIndex) const
Definition: cpgrid/CartesianIndexMapper.hpp:59
void cartesianCoordinateLevel(const int compressedElementIndexOnLevel, std::array< int, dimension > &coordsOnLevel, int level) const
Definition: cpgrid/CartesianIndexMapper.hpp:70
Interface class to access the logical Cartesian grid as used in industry standard simulator decks.
Definition: common/CartesianIndexMapper.hpp:16
int compressedSize() const
return number of cells in the active grid
Definition: common/CartesianIndexMapper.hpp:41
const std::array< int, dimension > & cartesianDimensions() const
return Cartesian dimensions, i.e. number of cells in each direction
Definition: common/CartesianIndexMapper.hpp:28
static const int dimension
dimension of the grid
Definition: common/CartesianIndexMapper.hpp:19
[ provides Dune::Grid ]
Definition: CpGrid.hpp:238
const std::vector< int > & globalCell() const
int maxLevel() const
Return maximum level defined in this grid. Levels are 0 and 1, maxlevel = 1 (not counting leafview),...
const std::array< int, 3 > & logicalCartesianSize() const
void getIJK(const int c, std::array< int, 3 > &ijk) const
Extract Cartesian index triplet (i,j,k) of an active cell.
const std::vector< std::shared_ptr< Dune::cpgrid::CpGridData > > & chooseData() const
Returns either data_ or distributed_data_(if non empty).
The namespace Dune is the main namespace for all Dune code.
Definition: common/CartesianIndexMapper.hpp:10