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
41{
42
44{
46 eGaussGaussLegendre, //!< 1D Gauss-Gauss-Legendre quadrature points
47 eGaussRadauMLegendre, //!< 1D Gauss-Radau-Legendre quadrature points,
48 //!< pinned at x=-1
49 eGaussRadauPLegendre, //!< 1D Gauss-Radau-Legendre quadrature points,
50 //!< pinned at x=1
51 eGaussLobattoLegendre, //!< 1D Gauss-Lobatto-Legendre quadrature points
52 eGaussGaussChebyshev, //!< 1D Gauss-Gauss-Chebyshev quadrature points
53 eGaussRadauMChebyshev, //!< 1D Gauss-Radau-Chebyshev quadrature points,
54 //!< pinned at x=-1
55 eGaussRadauPChebyshev, //!< 1D Gauss-Radau-Chebyshev quadrature points,
56 //!< pinned at x=1
57 eGaussLobattoChebyshev, //!< 1D Gauss-Lobatto-Legendre quadrature points
58 eGaussRadauMAlpha0Beta1, //!< Gauss Radau pinned at x=-1, \f$ \alpha = 0,
59 //!< \beta = 1 \f$
60 eGaussRadauMAlpha0Beta2, //!< Gauss Radau pinned at x=-1, \f$ \alpha = 0,
61 //!< \beta = 2 \f$
62 eGaussRadauMAlpha1Beta0, //!< Gauss Radau pinned at x=-1, \f$ \alpha = 1,
63 //!< \beta = 0 \f$
64 eGaussRadauMAlpha2Beta0, //!< Gauss Radau pinned at x=-1, \f$ \alpha = 2,
65 //!< \beta = 0 \f$
66 eGaussKronrodLegendre, //!< 1D Gauss-Kronrod-Legendre quadrature points
67 eGaussRadauKronrodMLegendre, //!< 1D Gauss-Radau-Kronrod-Legendre
68 //!< quadrature points, pinned at x=-1
69 eGaussRadauKronrodMAlpha1Beta0, //!< 1D Gauss-Radau-Kronrod-Legendre pinned
70 //!< at x=-1, \f$ \alpha = 1, \beta = 0
71 //!< \f$
72 eGaussLobattoKronrodLegendre, //!< 1D Lobatto Kronrod quadrature points
73 ePolyEvenlySpaced, //!< 1D Evenly-spaced points using Lagrange polynomial
74 eFourierEvenlySpaced, //!< 1D Evenly-spaced points using Fourier Fit
75 eFourierSingleModeSpaced, //!< 1D Non Evenly-spaced points for Single Mode
76 //!< analysis
77 eBoundaryLayerPoints, //!< 1D power law distribution for boundary layer
78 //!< points
79 eBoundaryLayerPointsRev, //!< 1D power law distribution for boundary layer
80 //!< points
81 eNodalTriElec, //!< 2D Nodal Electrostatic Points on a Triangle
82 eNodalTriFekete, //!< 2D Nodal Fekete Points on a Triangle
83 eNodalTriEvenlySpaced, //!< 2D Evenly-spaced points on a Triangle
84 eNodalTetEvenlySpaced, //!< 3D Evenly-spaced points on a Tetrahedron
85 eNodalTetElec, //!< 3D Nodal Electrostatic Points on a Tetrahedron
86 eNodalPrismEvenlySpaced, //!< 3D Evenly-spaced points on a Prism
87 eNodalPrismElec, //!< 3D electrostatically spaced points on a Prism
88 eNodalTriSPI, //!< 2D Nodal Symmetric positive internal triangle
89 //!< (Whitherden, Vincent)
90 eNodalTetSPI, //!< 3D Nodal Symmetric positive internal tet (Whitherden,
91 //!< Vincent)
92 eNodalPrismSPI, //!< 3D prism SPI
93 eNodalQuadElec, //!< 2D GLL for quad
94 eNodalHexElec, //!< 3D GLL for hex
95 SIZE_PointsType //!< Length of enum list
96};
97
98static std::vector<LibUtilities::PointsType> NullPointsTypeVector;
99} // namespace Nektar::LibUtilities
100
101#endif
@ eNodalPrismEvenlySpaced
3D Evenly-spaced points on a Prism
Definition: PointsType.h:86
@ SIZE_PointsType
Length of enum list.
Definition: PointsType.h:95
@ eNodalTriFekete
2D Nodal Fekete Points on a Triangle
Definition: PointsType.h:82
@ eGaussRadauMLegendre
1D Gauss-Radau-Legendre quadrature points, pinned at x=-1
Definition: PointsType.h:47
@ eNodalPrismSPI
3D prism SPI
Definition: PointsType.h:92
@ eBoundaryLayerPoints
1D power law distribution for boundary layer points
Definition: PointsType.h:77
@ eGaussRadauMAlpha0Beta1
Gauss Radau pinned at x=-1,.
Definition: PointsType.h:58
@ eGaussRadauKronrodMLegendre
1D Gauss-Radau-Kronrod-Legendre quadrature points, pinned at x=-1
Definition: PointsType.h:67
@ eGaussLobattoChebyshev
1D Gauss-Lobatto-Legendre quadrature points
Definition: PointsType.h:57
@ eFourierEvenlySpaced
1D Evenly-spaced points using Fourier Fit
Definition: PointsType.h:74
@ eNodalTriElec
2D Nodal Electrostatic Points on a Triangle
Definition: PointsType.h:81
@ eGaussRadauPChebyshev
1D Gauss-Radau-Chebyshev quadrature points, pinned at x=1
Definition: PointsType.h:55
@ eNodalTriEvenlySpaced
2D Evenly-spaced points on a Triangle
Definition: PointsType.h:83
@ eNodalHexElec
3D GLL for hex
Definition: PointsType.h:94
@ eGaussRadauMChebyshev
1D Gauss-Radau-Chebyshev quadrature points, pinned at x=-1
Definition: PointsType.h:53
@ eGaussRadauKronrodMAlpha1Beta0
1D Gauss-Radau-Kronrod-Legendre pinned at x=-1,
Definition: PointsType.h:69
@ eGaussLobattoLegendre
1D Gauss-Lobatto-Legendre quadrature points
Definition: PointsType.h:51
@ eNodalQuadElec
2D GLL for quad
Definition: PointsType.h:93
@ eNodalTetEvenlySpaced
3D Evenly-spaced points on a Tetrahedron
Definition: PointsType.h:84
@ eGaussGaussChebyshev
1D Gauss-Gauss-Chebyshev quadrature points
Definition: PointsType.h:52
@ eNodalTetSPI
3D Nodal Symmetric positive internal tet (Whitherden, Vincent)
Definition: PointsType.h:90
@ eBoundaryLayerPointsRev
1D power law distribution for boundary layer points
Definition: PointsType.h:79
@ ePolyEvenlySpaced
1D Evenly-spaced points using Lagrange polynomial
Definition: PointsType.h:73
@ eGaussLobattoKronrodLegendre
1D Lobatto Kronrod quadrature points
Definition: PointsType.h:72
@ eGaussGaussLegendre
1D Gauss-Gauss-Legendre quadrature points
Definition: PointsType.h:46
@ eFourierSingleModeSpaced
1D Non Evenly-spaced points for Single Mode analysis
Definition: PointsType.h:75
@ eNodalPrismElec
3D electrostatically spaced points on a Prism
Definition: PointsType.h:87
@ eNodalTetElec
3D Nodal Electrostatic Points on a Tetrahedron
Definition: PointsType.h:85
@ eGaussRadauPLegendre
1D Gauss-Radau-Legendre quadrature points, pinned at x=1
Definition: PointsType.h:49
@ eNodalTriSPI
2D Nodal Symmetric positive internal triangle (Whitherden, Vincent)
Definition: PointsType.h:88
static std::vector< LibUtilities::PointsType > NullPointsTypeVector
Definition: PointsType.h:98