add citation information
[LbmBenchmarkKernelsPublic.git] / src / Geometry.h
CommitLineData
10988083
MW
1// --------------------------------------------------------------------------
2//
3// Copyright
4// Markus Wittmann, 2016-2017
5// RRZE, University of Erlangen-Nuremberg, Germany
6// markus.wittmann -at- fau.de or hpc -at- rrze.fau.de
7//
8// Viktor Haag, 2016
9// LSS, University of Erlangen-Nuremberg, Germany
10//
11// This file is part of the Lattice Boltzmann Benchmark Kernels (LbmBenchKernels).
12//
13// LbmBenchKernels is free software: you can redistribute it and/or modify
14// it under the terms of the GNU General Public License as published by
15// the Free Software Foundation, either version 3 of the License, or
16// (at your option) any later version.
17//
18// LbmBenchKernels is distributed in the hope that it will be useful,
19// but WITHOUT ANY WARRANTY; without even the implied warranty of
20// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21// GNU General Public License for more details.
22//
23// You should have received a copy of the GNU General Public License
24// along with LbmBenchKernels. If not, see <http://www.gnu.org/licenses/>.
25//
26// --------------------------------------------------------------------------
27#ifndef __GEOMETRY_H__
28#define __GEOMETRY_H__
29
30#include "Lattice.h"
31
32
33typedef enum GEO_TYPES_ {
34 GEO_TYPE_MIN = 0,
35 GEO_TYPE_BOX = 0,
36 GEO_TYPE_CHANNEL = 1,
37 GEO_TYPE_PIPE = 2,
38 GEO_TYPE_BLOCKS = 3, // Expects a pointer to an integer, holding the
39 // value of the block size as type detail.
e3f82424
MW
40 GEO_TYPE_FLUID = 4,
41 GEO_TYPE_MAX = 4
10988083
MW
42} GEO_TYPES;
43
44
45void GeoCreateByType(GEO_TYPES type, void * typeDetails, int dims[3], int periodic[3], LatticeDesc * ld);
46
47void GeoCreateByStr(const char * geometryType, int dims[3], int periodic[3], LatticeDesc * ld);
48
49#endif // __GEOMETRY_H__
This page took 0.078708 seconds and 5 git commands to generate.