GEOS
StructuredGridUtilities.hpp
Go to the documentation of this file.
1 /*
2  * ------------------------------------------------------------------------------------------------------------
3  * SPDX-License-Identifier: LGPL-2.1-only
4  *
5  * Copyright (c) 2016-2024 Lawrence Livermore National Security LLC
6  * Copyright (c) 2018-2024 TotalEnergies
7  * Copyright (c) 2018-2024 The Board of Trustees of the Leland Stanford Junior University
8  * Copyright (c) 2023-2024 Chevron
9  * Copyright (c) 2019- GEOS/GEOSX Contributors
10  * All rights reserved
11  *
12  * See top level LICENSE, COPYRIGHT, CONTRIBUTORS, NOTICE, and ACKNOWLEDGEMENTS files for details.
13  * ------------------------------------------------------------------------------------------------------------
14  */
15 
16 #ifndef GEOS_MESH_UTILITIES_STRUCTUREDGRIDUTILITIES_HPP
17 #define GEOS_MESH_UTILITIES_STRUCTUREDGRIDUTILITIES_HPP
18 
19 #include "common/logger/Logger.hpp"
20 #include "common/GeosxMacros.hpp"
21 #include <vector>
22 
27 namespace structuredGrid
28 {
29 
35 template< int dim >
36 int dimpower( int n );
37 
39 
40 template<> inline int dimpower< 1 >( int n ) { return n; }
41 template<> inline int dimpower< 2 >( int n ) { return n*n; }
42 template<> inline int dimpower< 3 >( int n ) { return n*n*n; }
43 
45 
55 template< int dim >
56 void map_index( const int index,
57  const int nnx,
58  std::vector< int > & indices );
59 
61 
62 template<>
63 inline
64 void map_index< 1 >( const int index,
65  const int nnx,
66  std::vector< int > & indices )
67 {
68  GEOS_ASSERT_GT( nnx, index );
69  GEOS_DEBUG_VAR( nnx );
70  indices[0] = index;
71 }
72 
73 template<>
74 inline
75 void map_index< 2 >( const int index,
76  const int nnx,
77  std::vector< int > & indices )
78 {
79  GEOS_ASSERT_GT( nnx*nnx, index );
80  indices[0] = index % nnx;
81  indices[1] = index / nnx;
82 }
83 
84 template<>
85 inline
86 void map_index< 3 >( const int index,
87  const int nnx,
88  std::vector< int > & indices )
89 {
90  GEOS_ASSERT_GT( nnx*nnx*nnx, index );
91  indices[0] = index % nnx;
92  indices[1] = (index / nnx) % nnx;
93  indices[2] = index / (nnx*nnx);
94 }
95 
97 
98 } /* namespace structuredGrid */
99 
100 #endif /* GEOS_MESH_UTILITIES_STRUCTUREDGRIDUTILITIES_HPP */
#define GEOS_DEBUG_VAR(...)
Mark a debug variable and silence compiler warnings.
Definition: GeosxMacros.hpp:87
#define GEOS_ASSERT_GT(lhs, rhs)
Assert that one value compares greater than the other in debug builds.
Definition: Logger.hpp:440
void map_index(const int index, const int nnx, std::vector< int > &indices)
Given a lexicographical index, map back to the original i,j,k indices of the point....
int dimpower(int n)
Given n, compute n^dim, where dim is the spatial dimension.