Nektar++
PointsType.h
Go to the documentation of this file.
1 ///////////////////////////////////////////////////////////////////////////////
2 //
3 // File: PointsType.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 // Permission is hereby granted, free of charge, to any person obtaining a
14 // copy of this software and associated documentation files (the "Software"),
15 // to deal in the Software without restriction, including without limitation
16 // the rights to use, copy, modify, merge, publish, distribute, sublicense,
17 // and/or sell copies of the Software, and to permit persons to whom the
18 // Software is furnished to do so, subject to the following conditions:
19 //
20 // The above copyright notice and this permission notice shall be included
21 // in all copies or substantial portions of the Software.
22 //
23 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
24 // OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
25 // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
26 // THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
27 // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
28 // FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
29 // DEALINGS IN THE SOFTWARE.
30 //
31 // Description:
32 //
33 ///////////////////////////////////////////////////////////////////////////////
34 
35 #ifndef NEKTAR_LIB_UTILITIES_POINTS_TYPE_H
36 #define NEKTAR_LIB_UTILITIES_POINTS_TYPE_H
37 
38 #include <vector>
39 
40 namespace Nektar
41 {
42 namespace LibUtilities
43 {
44 
46 {
48  eGaussGaussLegendre, //!< 1D Gauss-Gauss-Legendre quadrature points
49  eGaussRadauMLegendre, //!< 1D Gauss-Radau-Legendre quadrature points,
50  //!< pinned at x=-1
51  eGaussRadauPLegendre, //!< 1D Gauss-Radau-Legendre quadrature points,
52  //!< pinned at x=1
53  eGaussLobattoLegendre, //!< 1D Gauss-Lobatto-Legendre quadrature points
54  eGaussGaussChebyshev, //!< 1D Gauss-Gauss-Chebyshev quadrature points
55  eGaussRadauMChebyshev, //!< 1D Gauss-Radau-Chebyshev quadrature points,
56  //!< pinned at x=-1
57  eGaussRadauPChebyshev, //!< 1D Gauss-Radau-Chebyshev quadrature points,
58  //!< pinned at x=1
59  eGaussLobattoChebyshev, //!< 1D Gauss-Lobatto-Legendre quadrature points
60  eGaussRadauMAlpha0Beta1, //!< Gauss Radau pinned at x=-1, \f$ \alpha = 0,
61  //!< \beta = 1 \f$
62  eGaussRadauMAlpha0Beta2, //!< Gauss Radau pinned at x=-1, \f$ \alpha = 0,
63  //!< \beta = 2 \f$
64  eGaussRadauMAlpha1Beta0, //!< Gauss Radau pinned at x=-1, \f$ \alpha = 1,
65  //!< \beta = 0 \f$
66  eGaussRadauMAlpha2Beta0, //!< Gauss Radau pinned at x=-1, \f$ \alpha = 2,
67  //!< \beta = 0 \f$
68  eGaussKronrodLegendre, //!< 1D Gauss-Kronrod-Legendre quadrature points
69  eGaussRadauKronrodMLegendre, //!< 1D Gauss-Radau-Kronrod-Legendre
70  //!< quadrature points, pinned at x=-1
71  eGaussRadauKronrodMAlpha1Beta0, //!< 1D Gauss-Radau-Kronrod-Legendre pinned
72  //!< at x=-1, \f$ \alpha = 1, \beta = 0
73  //!< \f$
74  eGaussLobattoKronrodLegendre, //!< 1D Lobatto Kronrod quadrature points
75  ePolyEvenlySpaced, //!< 1D Evenly-spaced points using Lagrange polynomial
76  eFourierEvenlySpaced, //!< 1D Evenly-spaced points using Fourier Fit
77  eFourierSingleModeSpaced, //!< 1D Non Evenly-spaced points for Single Mode
78  //!< analysis
79  eBoundaryLayerPoints, //!< 1D power law distribution for boundary layer
80  //!< points
81  eBoundaryLayerPointsRev, //!< 1D power law distribution for boundary layer
82  //!< points
83  eNodalTriElec, //!< 2D Nodal Electrostatic Points on a Triangle
84  eNodalTriFekete, //!< 2D Nodal Fekete Points on a Triangle
85  eNodalTriEvenlySpaced, //!< 2D Evenly-spaced points on a Triangle
86  eNodalTetEvenlySpaced, //!< 3D Evenly-spaced points on a Tetrahedron
87  eNodalTetElec, //!< 3D Nodal Electrostatic Points on a Tetrahedron
88  eNodalPrismEvenlySpaced, //!< 3D Evenly-spaced points on a Prism
89  eNodalPrismElec, //!< 3D electrostatically spaced points on a Prism
90  eNodalTriSPI, //!< 2D Nodal Symmetric positive internal triangle
91  //!< (Whitherden, Vincent)
92  eNodalTetSPI, //!< 3D Nodal Symmetric positive internal tet (Whitherden,
93  //!< Vincent)
94  eNodalPrismSPI, //!< 3D prism SPI
95  eNodalQuadElec, //!< 2D GLL for quad
96  eNodalHexElec, //!< 3D GLL for hex
97  SIZE_PointsType //!< Length of enum list
98 };
99 
100 static std::vector<LibUtilities::PointsType> NullPointsTypeVector;
101 } // namespace LibUtilities
102 } // namespace Nektar
103 
104 #endif
@ eNodalPrismEvenlySpaced
3D Evenly-spaced points on a Prism
Definition: PointsType.h:88
@ SIZE_PointsType
Length of enum list.
Definition: PointsType.h:97
@ eNodalTriFekete
2D Nodal Fekete Points on a Triangle
Definition: PointsType.h:84
@ eGaussRadauMLegendre
1D Gauss-Radau-Legendre quadrature points, pinned at x=-1
Definition: PointsType.h:49
@ eNodalPrismSPI
3D prism SPI
Definition: PointsType.h:94
@ eBoundaryLayerPoints
1D power law distribution for boundary layer points
Definition: PointsType.h:79
@ eGaussRadauMAlpha0Beta1
Gauss Radau pinned at x=-1,.
Definition: PointsType.h:60
@ eGaussRadauKronrodMLegendre
1D Gauss-Radau-Kronrod-Legendre quadrature points, pinned at x=-1
Definition: PointsType.h:69
@ eGaussLobattoChebyshev
1D Gauss-Lobatto-Legendre quadrature points
Definition: PointsType.h:59
@ eFourierEvenlySpaced
1D Evenly-spaced points using Fourier Fit
Definition: PointsType.h:76
@ eNodalTriElec
2D Nodal Electrostatic Points on a Triangle
Definition: PointsType.h:83
@ eGaussRadauPChebyshev
1D Gauss-Radau-Chebyshev quadrature points, pinned at x=1
Definition: PointsType.h:57
@ eNodalTriEvenlySpaced
2D Evenly-spaced points on a Triangle
Definition: PointsType.h:85
@ eNodalHexElec
3D GLL for hex
Definition: PointsType.h:96
@ eGaussRadauMChebyshev
1D Gauss-Radau-Chebyshev quadrature points, pinned at x=-1
Definition: PointsType.h:55
@ eGaussRadauKronrodMAlpha1Beta0
1D Gauss-Radau-Kronrod-Legendre pinned at x=-1,
Definition: PointsType.h:71
@ eGaussLobattoLegendre
1D Gauss-Lobatto-Legendre quadrature points
Definition: PointsType.h:53
@ eNodalQuadElec
2D GLL for quad
Definition: PointsType.h:95
@ eNodalTetEvenlySpaced
3D Evenly-spaced points on a Tetrahedron
Definition: PointsType.h:86
@ eGaussGaussChebyshev
1D Gauss-Gauss-Chebyshev quadrature points
Definition: PointsType.h:54
@ eNodalTetSPI
3D Nodal Symmetric positive internal tet (Whitherden, Vincent)
Definition: PointsType.h:92
@ eBoundaryLayerPointsRev
1D power law distribution for boundary layer points
Definition: PointsType.h:81
@ ePolyEvenlySpaced
1D Evenly-spaced points using Lagrange polynomial
Definition: PointsType.h:75
@ eGaussLobattoKronrodLegendre
1D Lobatto Kronrod quadrature points
Definition: PointsType.h:74
@ eGaussGaussLegendre
1D Gauss-Gauss-Legendre quadrature points
Definition: PointsType.h:48
@ eFourierSingleModeSpaced
1D Non Evenly-spaced points for Single Mode analysis
Definition: PointsType.h:77
@ eNodalPrismElec
3D electrostatically spaced points on a Prism
Definition: PointsType.h:89
@ eNodalTetElec
3D Nodal Electrostatic Points on a Tetrahedron
Definition: PointsType.h:87
@ eGaussRadauPLegendre
1D Gauss-Radau-Legendre quadrature points, pinned at x=1
Definition: PointsType.h:51
@ eNodalTriSPI
2D Nodal Symmetric positive internal triangle (Whitherden, Vincent)
Definition: PointsType.h:90
static std::vector< LibUtilities::PointsType > NullPointsTypeVector
Definition: PointsType.h:100
The above copyright notice and this permission notice shall be included.
Definition: CoupledSolver.h:2