Go to the source code of this file.
|
template<int dim> |
int | structuredGrid::dimpower (int n) |
| Given n, compute n^dim, where dim is the spatial dimension. More...
|
|
template<int dim> |
void | structuredGrid::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. The first variation here assumes a uniform number of points nnx in all coordinate directions. More...
|
|
◆ dimpower()
template<int dim>
int structuredGrid::dimpower |
( |
int |
n | ) |
|
Given n, compute n^dim, where dim is the spatial dimension.
- Parameters
-
[in] | n | the input integer whose power is computed here |
- Returns
- the power of n
◆ map_index()
template<int dim>
void structuredGrid::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. The first variation here assumes a uniform number of points nnx in all coordinate directions.
- Template Parameters
-
dim | the number of spatial dimensions |
- Parameters
-
[in] | index | the lexicographical index |
[in] | nnx | the number of points in all coordinate directions |
[out] | indices | the original (i,j,k) indices of the point |