escript  Revision_Unversioneddirectory
RectangularMesh.h
Go to the documentation of this file.
1 
2 /*****************************************************************************
3 *
4 * Copyright (c) 2003-2016 by The University of Queensland
5 * http://www.uq.edu.au
6 *
7 * Primary Business: Queensland, Australia
8 * Licensed under the Apache License, version 2.0
9 * http://www.apache.org/licenses/LICENSE-2.0
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 dim_t* numElements, const double* length,
32  const bool* periodic, int order, int reducedOrder,
33  bool useElementsOnFace, bool useFullElementOrder,
34  bool useMacroElements, bool optimize,
35  esysUtils::JMPI& mpi_info);
36 
37 Mesh* RectangularMesh_Hex8(const dim_t* numElements, const double* length,
38  const bool* periodic, int order, int reducedOrder,
39  bool useElementsOnFace, bool useFullElementOrder,
40  bool useMacroElements, esysUtils::JMPI& mpi_info);
41 
42 Mesh* RectangularMesh_Rec8(const dim_t* numElements, const double* length,
43  const bool* periodic, int order, int reducedOrder,
44  bool useElementsOnFace, bool useFullElementOrder,
45  bool useMacroElements, bool optimize,
46  esysUtils::JMPI& mpi_info);
47 
48 Mesh* RectangularMesh_Rec4(const dim_t* numElements, const double* length,
49  const bool* periodic, int order, int reducedOrder,
50  bool useElementsOnFace, bool useFullElementOrder,
51  bool useMacroElements, esysUtils::JMPI& mpi_info);
52 
53 }
54 
55 #endif // __FINLEY_RECTANGULARMESH_H__
56 
Definition: finley/src/Assemble.h:32
Mesh * RectangularMesh_Hex20(const dim_t *numElements, const double *Length, const bool *periodic, int order, int reduced_order, bool useElementsOnFace, bool useFullElementOrder, bool useMacroElements, bool optimize, esysUtils::JMPI &mpiInfo)
Definition: Mesh_hex20.cpp:36
Mesh * RectangularMesh_Rec8(const dim_t *numElements, const double *Length, const bool *periodic, int order, int reduced_order, bool useElementsOnFace, bool useFullElementOrder, bool useMacroElements, bool optimize, esysUtils::JMPI &mpiInfo)
Definition: Mesh_rec8.cpp:35
index_t dim_t
Definition: types.h:27
Mesh * RectangularMesh_Rec4(const dim_t *numElements, const double *Length, const bool *periodic, int order, int reduced_order, bool useElementsOnFace, bool useFullElementOrder, bool optimize, esysUtils::JMPI &mpiInfo)
Definition: Mesh_rec4.cpp:35
boost::shared_ptr< JMPI_ > JMPI
Definition: Esys_MPI.h:79
Mesh * RectangularMesh_Hex8(const dim_t *numElements, const double *Length, const bool *periodic, int order, int reduced_order, bool useElementsOnFace, bool useFullElementOrder, bool optimize, esysUtils::JMPI &mpiInfo)
Definition: Mesh_hex8.cpp:36