PolyDiM
C++ library for POLYtopal DIscretization Methods
Loading...
Searching...
No Matches
I_VEM_PCC_3D_ReferenceElement.hpp
Go to the documentation of this file.
1// _LICENSE_HEADER_
2//
3// Copyright (C) 2019 - 2025.
4// Terms register on the GPL-3.0 license.
5//
6// This file can be redistributed and/or modified under the license terms.
7//
8// See top level LICENSE file for more details.
9//
10// This file can be used citing references in CITATION.cff file.
11
12#ifndef __I_VEM_PCC_3D_ReferenceElement_HPP
13#define __I_VEM_PCC_3D_ReferenceElement_HPP
14
15#include "Monomials_Data.hpp"
16#include "VEM_Quadrature_3D.hpp"
17
18namespace Polydim
19{
20namespace VEM
21{
22namespace PCC
23{
36
38{
39 public:
40 virtual VEM_PCC_3D_ReferenceElement_Data Create(const unsigned int order) const = 0;
41};
42
43} // namespace PCC
44} // namespace VEM
45} // namespace Polydim
46
47#endif
Definition I_VEM_PCC_3D_ReferenceElement.hpp:38
virtual VEM_PCC_3D_ReferenceElement_Data Create(const unsigned int order) const =0
Definition FEM_MCC_2D_LocalSpace.cpp:17
Definition Monomials_Data.hpp:23
Definition I_VEM_PCC_3D_ReferenceElement.hpp:25
unsigned int NumDofs2D
Definition I_VEM_PCC_3D_ReferenceElement.hpp:30
unsigned int Order
Definition I_VEM_PCC_3D_ReferenceElement.hpp:27
unsigned int NumDofs3D
Definition I_VEM_PCC_3D_ReferenceElement.hpp:31
unsigned int Dimension
Definition I_VEM_PCC_3D_ReferenceElement.hpp:26
unsigned int NumDofs1D
Definition I_VEM_PCC_3D_ReferenceElement.hpp:29
Utilities::Monomials_Data Monomials
Definition I_VEM_PCC_3D_ReferenceElement.hpp:33
Quadrature::VEM_QuadratureData_3D Quadrature
Definition I_VEM_PCC_3D_ReferenceElement.hpp:34
unsigned int NumDofs0D
Definition I_VEM_PCC_3D_ReferenceElement.hpp:28
Definition VEM_Quadrature_3D.hpp:26