| Nektar++
    | 
Specialisation of the NodalUtil class to support nodal tetrahedral elements. More...
#include <NodalUtil.h>
| Public Member Functions | |
| NodalUtilTetrahedron (size_t degree, Array< OneD, NekDouble > r, Array< OneD, NekDouble > s, Array< OneD, NekDouble > t) | |
| Construct the nodal utility class for a tetrahedron.  More... | |
| virtual | ~NodalUtilTetrahedron () | 
|  Public Member Functions inherited from Nektar::LibUtilities::NodalUtil | |
| virtual | ~NodalUtil ()=default | 
| NekVector< NekDouble > | GetWeights () | 
| Obtain the integration weights for the given nodal distribution.  More... | |
| SharedMatrix | GetVandermonde () | 
| Return the Vandermonde matrix for the nodal distribution.  More... | |
| SharedMatrix | GetVandermondeForDeriv (size_t dir) | 
| Return the Vandermonde matrix of the derivative of the basis functions for the nodal distribution.  More... | |
| SharedMatrix | GetDerivMatrix (size_t dir) | 
| Return the derivative matrix for the nodal distribution.  More... | |
| SharedMatrix | GetInterpolationMatrix (Array< OneD, Array< OneD, NekDouble > > &xi) | 
| Construct the interpolation matrix used to evaluate the basis at the points xiinside the element.  More... | |
| Protected Member Functions | |
| virtual NekVector< NekDouble > | v_OrthoBasis (const size_t mode) override | 
| Return the value of the modal functions for the tetrahedral element at the nodal points m_xi for a given mode.  More... | |
| virtual NekVector< NekDouble > | v_OrthoBasisDeriv (const size_t dir, const size_t mode) override | 
| Return the value of the derivative of the modal functions for the tetrahedral element at the nodal points m_xi for a given mode.  More... | |
| virtual std::shared_ptr< NodalUtil > | v_CreateUtil (Array< OneD, Array< OneD, NekDouble > > &xi) override | 
| Construct a NodalUtil object of the appropriate element type for a given set of points.  More... | |
| virtual NekDouble | v_ModeZeroIntegral () override | 
| Return the value of the integral of the zero-th mode for this element.  More... | |
| virtual size_t | v_NumModes () override | 
| Calculate the number of degrees of freedom for this element.  More... | |
|  Protected Member Functions inherited from Nektar::LibUtilities::NodalUtil | |
| NodalUtil (size_t degree, size_t dim) | |
| Set up the NodalUtil object.  More... | |
| virtual NekVector< NekDouble > | v_OrthoBasis (const size_t mode)=0 | 
| Return the values of the orthogonal basis at the nodal points for a given mode.  More... | |
| virtual NekVector< NekDouble > | v_OrthoBasisDeriv (const size_t dir, const size_t mode)=0 | 
| Return the values of the derivative of the orthogonal basis at the nodal points for a given mode.  More... | |
| virtual std::shared_ptr< NodalUtil > | v_CreateUtil (Array< OneD, Array< OneD, NekDouble > > &xi)=0 | 
| Construct a NodalUtil object of the appropriate element type for a given set of points.  More... | |
| virtual NekDouble | v_ModeZeroIntegral ()=0 | 
| Return the value of the integral of the zero-th mode for this element.  More... | |
| virtual size_t | v_NumModes ()=0 | 
| Calculate the number of degrees of freedom for this element.  More... | |
| Protected Attributes | |
| std::vector< Mode > | m_ordering | 
| Mapping from the \( (i,j,k) \) indexing of the basis to a continuous ordering.  More... | |
| Array< OneD, Array< OneD, NekDouble > > | m_eta | 
| Collapsed coordinates \( (\eta_1, \eta_2, \eta_3) \) of the nodal points.  More... | |
|  Protected Attributes inherited from Nektar::LibUtilities::NodalUtil | |
| size_t | m_dim | 
| Dimension of the nodal element.  More... | |
| size_t | m_degree | 
| Degree of the nodal element.  More... | |
| size_t | m_numPoints | 
| Total number of nodal points.  More... | |
| Array< OneD, Array< OneD, NekDouble > > | m_xi | 
| Coordinates of the nodal points defining the basis.  More... | |
| Private Types | |
| typedef std::tuple< int, int, int > | Mode | 
Specialisation of the NodalUtil class to support nodal tetrahedral elements.
Definition at line 212 of file NodalUtil.h.
| 
 | private | 
Definition at line 214 of file NodalUtil.h.
| Nektar::LibUtilities::NodalUtilTetrahedron::NodalUtilTetrahedron | ( | size_t | degree, | 
| Array< OneD, NekDouble > | r, | ||
| Array< OneD, NekDouble > | s, | ||
| Array< OneD, NekDouble > | t | ||
| ) | 
Construct the nodal utility class for a tetrahedron.
The constructor of this class sets up two member variables used in the evaluation of the orthogonal basis:
| degree | Polynomial order of this nodal tetrahedron | 
| r | \( \xi_1 \)-coordinates of nodal points in the standard element. | 
| s | \( \xi_2 \)-coordinates of nodal points in the standard element. | 
| t | \( \xi_3 \)-coordinates of nodal points in the standard element. | 
Definition at line 412 of file NodalUtil.cpp.
References Nektar::NekConstants::kNekZeroTol, Nektar::LibUtilities::NodalUtil::m_degree, m_eta, Nektar::LibUtilities::NodalUtil::m_numPoints, m_ordering, and Nektar::LibUtilities::NodalUtil::m_xi.
| 
 | inlinevirtual | 
Definition at line 222 of file NodalUtil.h.
| 
 | inlineoverrideprotectedvirtual | 
Construct a NodalUtil object of the appropriate element type for a given set of points.
This function is used inside NodalUtil::GetInterpolationMatrix so that the (potentially non-square) Vandermonde matrix can be constructed to create the interpolation matrix at an arbitrary set of points in the domain.
| xi | Distribution of nodal points to create utility with. | 
Implements Nektar::LibUtilities::NodalUtil.
Definition at line 239 of file NodalUtil.h.
References Nektar::MemoryManager< DataType >::AllocateSharedPtr(), and Nektar::LibUtilities::NodalUtil::m_degree.
| 
 | inlineoverrideprotectedvirtual | 
Return the value of the integral of the zero-th mode for this element.
Note that for the orthogonal basis under consideration, all modes integrate to zero asides from the zero-th mode. This function is used in NodalUtil::GetWeights to determine integration weights.
Implements Nektar::LibUtilities::NodalUtil.
Definition at line 246 of file NodalUtil.h.
References tinysimd::sqrt().
| 
 | inlineoverrideprotectedvirtual | 
Calculate the number of degrees of freedom for this element.
Implements Nektar::LibUtilities::NodalUtil.
Definition at line 251 of file NodalUtil.h.
References Nektar::LibUtilities::NodalUtil::m_degree.
| 
 | overrideprotectedvirtual | 
Return the value of the modal functions for the tetrahedral element at the nodal points m_xi for a given mode.
In a tetrahedron, we use the orthogonal basis
\[ \psi_{m(ijk)} = \sqrt{8} P^{(0,0)}_i(\xi_1) P_j^{(2i+1,0)}(\xi_2) P_k^{(2i+2j+2,0)}(\xi_3) (1-\xi_2)^i (1-\xi_3)^{i+j} \]
where \( m(ijk) \) is the mapping defined in m_ordering and \( J_n^{(\alpha,\beta)}(z) \) denotes the standard Jacobi polynomial.
| mode | The mode of the orthogonal basis to evaluate. | 
Implements Nektar::LibUtilities::NodalUtil.
Definition at line 487 of file NodalUtil.cpp.
References Polylib::jacobfd(), m_eta, Nektar::LibUtilities::NodalUtil::m_numPoints, m_ordering, and tinysimd::sqrt().
| 
 | overrideprotectedvirtual | 
Return the value of the derivative of the modal functions for the tetrahedral element at the nodal points m_xi for a given mode.
Note that this routine must use the chain rule combined with the collapsed coordinate derivatives as described in Sherwin & Karniadakis (2nd edition), pg 152.
| dir | Coordinate direction in which to evaluate the derivative. | 
| mode | The mode of the orthogonal basis to evaluate. | 
Implements Nektar::LibUtilities::NodalUtil.
Definition at line 528 of file NodalUtil.cpp.
References Polylib::jacobd(), Polylib::jacobfd(), m_eta, Nektar::LibUtilities::NodalUtil::m_numPoints, m_ordering, and tinysimd::sqrt().
Collapsed coordinates \( (\eta_1, \eta_2, \eta_3) \) of the nodal points.
Definition at line 233 of file NodalUtil.h.
Referenced by NodalUtilTetrahedron(), v_OrthoBasis(), and v_OrthoBasisDeriv().
| 
 | protected | 
Mapping from the \( (i,j,k) \) indexing of the basis to a continuous ordering.
Definition at line 229 of file NodalUtil.h.
Referenced by NodalUtilTetrahedron(), v_OrthoBasis(), and v_OrthoBasisDeriv().