Nektar++
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
TetGeom.h
Go to the documentation of this file.
1 ////////////////////////////////////////////////////////////////////////////////
2 //
3 // File: TetGeom.h
4 //
5 // For more information, please see: http://www.nektar.info/
6 //
7 // The MIT License
8 //
9 // Copyright (c) 2006 Division of Applied Mathematics, Brown University (USA),
10 // Department of Aeronautics, Imperial College London (UK), and Scientific
11 // Computing and Imaging Institute, University of Utah (USA).
12 //
13 // License for the specific language governing rights and limitations under
14 // Permission is hereby granted, free of charge, to any person obtaining a
15 // copy of this software and associated documentation files (the "Software"),
16 // to deal in the Software without restriction, including without limitation
17 // the rights to use, copy, modify, merge, publish, distribute, sublicense,
18 // and/or sell copies of the Software, and to permit persons to whom the
19 // Software is furnished to do so, subject to the following conditions:
20 //
21 // The above copyright notice and this permission notice shall be included
22 // in all copies or substantial portions of the Software.
23 //
24 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
25 // OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
26 // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
27 // THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
28 // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
29 // FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
30 // DEALINGS IN THE SOFTWARE.
31 //
32 // Description: Tetrahedral geometry information.
33 //
34 ////////////////////////////////////////////////////////////////////////////////
35 
36 #ifndef NEKTAR_SPATIALDOMAINS_TETGEOM
37 #define NEKTAR_SPATIALDOMAINS_TETGEOM
38 
41 #include <SpatialDomains/TriGeom.h>
42 
43 namespace Nektar
44 {
45  namespace SpatialDomains
46  {
47 
49  public Geometry3D
50  {
51  public:
55 
56  SPATIAL_DOMAINS_EXPORT static const int kNverts = 4;
57  SPATIAL_DOMAINS_EXPORT static const int kNedges = 6;
58  SPATIAL_DOMAINS_EXPORT static const int kNqfaces = 0;
59  SPATIAL_DOMAINS_EXPORT static const int kNtfaces = 4;
61  SPATIAL_DOMAINS_EXPORT static const std::string XMLElementType;
62 
63  protected:
64  virtual NekDouble v_GetLocCoords(
65  const Array<OneD, const NekDouble> &coords,
66  Array<OneD, NekDouble> &Lcoords);
67  virtual bool v_ContainsPoint(
68  const Array<OneD, const NekDouble> &gloCoord,
69  NekDouble tol = 0.0);
70  virtual bool v_ContainsPoint(
71  const Array<OneD, const NekDouble> &gloCoord,
72  Array<OneD, NekDouble> &locCoord,
73  NekDouble tol);
74  virtual bool v_ContainsPoint(
75  const Array<OneD, const NekDouble> &gloCoord,
76  Array<OneD, NekDouble> &locCoord,
77  NekDouble tol,
78  NekDouble &resid);
79  virtual int v_GetNumVerts() const;
80  virtual int v_GetNumEdges() const;
81  virtual int v_GetNumFaces() const;
82  virtual int v_GetVertexEdgeMap(
83  const int i, const int j) const;
84  virtual int v_GetVertexFaceMap(
85  const int i, const int j) const;
86  virtual int v_GetEdgeFaceMap(
87  const int i, const int j) const;
88  virtual int v_GetDir(
89  const int faceidx, const int facedir) const;
90 
91  private:
92  void SetUpLocalEdges();
93  void SetUpLocalVertices();
94  void SetUpEdgeOrientation();
95  void SetUpFaceOrientation();
96 
97  static const unsigned int VertexEdgeConnectivity[4][3];
98  static const unsigned int VertexFaceConnectivity[4][3];
99  static const unsigned int EdgeFaceConnectivity [6][2];
100  };
101 
102  typedef boost::shared_ptr<TetGeom> TetGeomSharedPtr;
103  typedef std::vector< TetGeomSharedPtr > TetGeomVector;
105  typedef std::map<int, TetGeomSharedPtr> TetGeomMap;
107  }; //end of namespace
108 }; //end of namespace
109 
110 #endif //NEKTAR_SPATIALDOMAINS_TETGEOM