escript  Revision_4925
RectangularMesh.h
Go to the documentation of this file.
1 
2 /*****************************************************************************
3 *
4 * Copyright (c) 2003-2014 by University of Queensland
5 * http://www.uq.edu.au
6 *
7 * Primary Business: Queensland, Australia
8 * Licensed under the Open Software License version 3.0
9 * http://www.opensource.org/licenses/osl-3.0.php
10 *
11 * Development until 2012 by Earth Systems Science Computational Center (ESSCC)
12 * Development 2012-2013 by School of Earth Sciences
13 * Development from 2014 by Centre for Geoscience Computing (GeoComp)
14 *
15 *****************************************************************************/
16 
17 
18 /****************************************************************************
19 
20  Finley: declaration of rectangular mesh generators in 1D, 2D, 3D.
21 
22 *****************************************************************************/
23 
24 #ifndef __FINLEY_RECTANGULARMESH_H__
25 #define __FINLEY_RECTANGULARMESH_H__
26 
27 #include "Mesh.h"
28 
29 namespace finley {
30 
31 Mesh* RectangularMesh_Hex20(const int*, const double*, const bool*, int, int, bool, bool, bool, bool);
32 Mesh* RectangularMesh_Hex8(const int*, const double*, const bool*, int, int, bool, bool, bool);
33 Mesh* RectangularMesh_Rec8(const int*, const double*, const bool*, int, int, bool, bool, bool, bool);
34 Mesh* RectangularMesh_Rec4(const int*, const double*, const bool*, int, int, bool, bool, bool);
35 
36 }
37 
38 #endif // __FINLEY_RECTANGULARMESH_H__
39 
Mesh * RectangularMesh_Hex20(const int *numElements, const double *Length, const bool *periodic, int order, int reduced_order, bool useElementsOnFace, bool useFullElementOrder, bool useMacroElements, bool optimize)
Definition: Mesh_hex20.cpp:33
Mesh * RectangularMesh_Rec4(const int *numElements, const double *Length, const bool *periodic, int order, int reduced_order, bool useElementsOnFace, bool useFullElementOrder, bool optimize)
Definition: Mesh_rec4.cpp:32
Mesh * RectangularMesh_Hex8(const int *numElements, const double *Length, const bool *periodic, int order, int reduced_order, bool useElementsOnFace, bool useFullElementOrder, bool optimize)
Definition: Mesh_hex8.cpp:33
Mesh * RectangularMesh_Rec8(const int *numElements, const double *Length, const bool *periodic, int order, int reduced_order, bool useElementsOnFace, bool useFullElementOrder, bool useMacroElements, bool optimize)
Definition: Mesh_rec8.cpp:32