Nektar++
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
StdNodalTetExp.h
Go to the documentation of this file.
1 ///////////////////////////////////////////////////////////////////////////////
2 //
3 // File StdNodalTetExp.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: Header field for nodal tetrahedral routines built upon
33 // StdExpansion3D
34 //
35 ///////////////////////////////////////////////////////////////////////////////
36 
37 #ifndef STDNODALTETEXP_H
38 #define STDNODALTETEXP_H
39 
40 #include <StdRegions/StdTetExp.h>
41 
42 namespace Nektar
43 {
44  namespace StdRegions
45  {
46  class StdNodalTetExp: public StdTetExp
47  {
48  public:
51  const LibUtilities::BasisKey &Ba,
52  const LibUtilities::BasisKey &Bb,
53  const LibUtilities::BasisKey &Bc,
54  const LibUtilities::PointsType Ntype);
55  STD_REGIONS_EXPORT StdNodalTetExp(const StdNodalTetExp &T);
57 
58  //-------------------------------
59  // Nodal basis specific routines
60  //-------------------------------
62  const Array<OneD, const NekDouble>& inarray,
63  Array<OneD, NekDouble>& outarray);
65  const Array<OneD, const NekDouble>& inarray,
66  Array<OneD, NekDouble>& outarray);
68  const Array<OneD, const NekDouble>& inarray,
69  Array<OneD, NekDouble>& outarray);
71  Array<OneD, const NekDouble> &x,
72  Array<OneD, const NekDouble> &y,
73  Array<OneD, const NekDouble> &z);
75 
76  protected:
77  boost::shared_ptr<LibUtilities::PointsKey> m_nodalPointsKey;
78 
79 
80  //---------------------------------------
81  // Transforms
82  //---------------------------------------
83  STD_REGIONS_EXPORT virtual void v_BwdTrans(
84  const Array<OneD, const NekDouble>& inarray,
85  Array<OneD, NekDouble>& outarray);
87  const Array<OneD, const NekDouble>& inarray,
88  Array<OneD, NekDouble>& outarray);
89  STD_REGIONS_EXPORT virtual void v_FwdTrans(
90  const Array<OneD, const NekDouble>& inarray,
91  Array<OneD, NekDouble>& outarray);
92 
93 
94  //---------------------------------------
95  // Inner product functions
96  //---------------------------------------
98  const Array<OneD, const NekDouble>& inarray,
99  Array<OneD, NekDouble>& outarray);
101  const Array<OneD, const NekDouble>& inarray,
102  Array<OneD, NekDouble>& outarray);
104  const int dir,
105  const Array<OneD, const NekDouble>& inarray,
106  Array<OneD, NekDouble>& outarray);
108  const int dir,
109  const Array<OneD, const NekDouble>& inarray,
110  Array<OneD, NekDouble>& outarray);
111 
112 
113  //---------------------------------------
114  // Evaluation functions
115  //---------------------------------------
116  STD_REGIONS_EXPORT virtual void v_FillMode(
117  const int mode,
118  Array<OneD, NekDouble> &outarray);
119 
120 
121  //---------------------------------------
122  // Mapping functions
123  //---------------------------------------
125  const int localVertexId,
126  bool useCoeffPacking = false);
128  Array<OneD, unsigned int>& outarray);
130  Array<OneD, unsigned int>& outarray);
131 
132 
133  //---------------------------------------
134  // Wrapper functions
135  //---------------------------------------
137  const StdMatrixKey &mkey);
139  const StdMatrixKey &mkey);
140  };
141 
142  typedef boost::shared_ptr<StdNodalTetExp> StdNodalTetExpSharedPtr;
143  } //end of namespace
144 } //end of namespace
145 #endif //STDNODALTETEXP_H