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