Nektar++
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
HexGeom.h
Go to the documentation of this file.
1 ////////////////////////////////////////////////////////////////////////////////
2 //
3 // File: HexGeom.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: Hexahedral geometry information.
33 //
34 ////////////////////////////////////////////////////////////////////////////////
35 
36 #ifndef NEKTAR_SPATIALDOMAINS_HEXGEOM_H
37 #define NEKTAR_SPATIALDOMAINS_HEXGEOM_H
38 
42 
43 namespace Nektar
44 {
45  namespace SpatialDomains
46  {
47  class HexGeom : public Geometry3D
48  {
49  public:
52  const QuadGeomSharedPtr faces[]);
53  /*
54  SPATIAL_DOMAINS_EXPORT HexGeom(
55  const QuadGeomSharedPtr faces[],
56  const Array<OneD, StdRegions::StdExpansion3DSharedPtr> &xMap);
57  */
59 
60  SPATIAL_DOMAINS_EXPORT static const int kNverts = 8;
61  SPATIAL_DOMAINS_EXPORT static const int kNedges = 12;
62  SPATIAL_DOMAINS_EXPORT static const int kNqfaces = 6;
63  SPATIAL_DOMAINS_EXPORT static const int kNtfaces = 0;
65  SPATIAL_DOMAINS_EXPORT static const std::string XMLElementType;
66 
67  protected:
68  virtual void v_GenGeomFactors();
69  virtual NekDouble v_GetLocCoords(
70  const Array<OneD, const NekDouble> &coords,
71  Array<OneD, NekDouble> &Lcoords);
72  virtual bool v_ContainsPoint(
73  const Array<OneD, const NekDouble> &gloCoord,
74  NekDouble tol = 0.0);
75  virtual bool v_ContainsPoint(
76  const Array<OneD, const NekDouble> &gloCoord,
77  Array<OneD, NekDouble> &locCoord,
78  NekDouble tol);
79  virtual bool v_ContainsPoint(
80  const Array<OneD, const NekDouble> &gloCoord,
81  Array<OneD, NekDouble> &locCoord,
82  NekDouble tol,
83  NekDouble &resid);
84  virtual int v_GetNumVerts() const;
85  virtual int v_GetNumEdges() const;
86  virtual int v_GetNumFaces() const;
87  virtual int v_GetVertexEdgeMap(
88  const int i, const int j) const;
89  virtual int v_GetVertexFaceMap(
90  const int i, const int j) const;
91  virtual int v_GetEdgeFaceMap(
92  const int i, const int j) const;
93  virtual int v_GetDir(const int faceidx, const int facedir) const;
94 
95  private:
96  void SetUpLocalEdges();
97  void SetUpLocalVertices();
98  void SetUpEdgeOrientation();
99  void SetUpFaceOrientation();
100 
101  static const unsigned int VertexEdgeConnectivity[ 8][3];
102  static const unsigned int VertexFaceConnectivity[ 8][3];
103  static const unsigned int EdgeFaceConnectivity [12][2];
104  };
105 
106  typedef boost::shared_ptr<HexGeom> HexGeomSharedPtr;
107  typedef std::vector<HexGeomSharedPtr> HexGeomVector;
109  typedef std::map<int, HexGeomSharedPtr> HexGeomMap;
111  }; //end of namespace
112 }; //end of namespace
113 
114 #endif //NEKTAR_SPATIALDOMAINS_HEXGEOM_H