HArD::Core3D
Hybrid Arbitrary Degree::Core 3D - Library to implement 3D schemes with vertex, edge, face and cell polynomials as unknowns
Loading...
Searching...
No Matches
max_degrees_quadratures.hpp
Go to the documentation of this file.
1// Maximal degrees of quadratures for cell, faces and edges
2//
3// Author: Jerome Droniou (jerome.droniou@monash.edu)
4//
5
6/*
7*
8* This library was developed around HHO methods, although some parts of it have a more
9* general purpose. If you use this code or part of it in a scientific publication,
10* please mention the following book as a reference for the underlying principles
11* of HHO schemes:
12*
13* The Hybrid High-Order Method for Polytopal Meshes: Design, Analysis, and Applications.
14* D. A. Di Pietro and J. Droniou. Modeling, Simulation and Applications, vol. 19.
15* Springer International Publishing, 2020, xxxi + 525p. doi: 10.1007/978-3-030-37203-3.
16* url: https://hal.archives-ouvertes.fr/hal-02151813.
17*
18*/
19
20
21
22#ifndef MAX_DEGREES_QUADRATURES_HPP
23#define MAX_DEGREES_QUADRATURES_HPP
24
25
26namespace HArDCore3D {
27
33 static constexpr size_t MAX_DOE_CELL = 14;
34 static constexpr size_t MAX_DOE_FACE = 20;
35 static constexpr size_t MAX_DOE_EDGE = 20;
36
38}
39
40#endif /* MAX_DEGREES_QUADRATURES_HPP */
static constexpr size_t MAX_DOE_CELL
Maximum degree of the cell quadrature rules.
Definition max_degrees_quadratures.hpp:33
static constexpr size_t MAX_DOE_FACE
Maximum degree of the face quadrature rules.
Definition max_degrees_quadratures.hpp:34
static constexpr size_t MAX_DOE_EDGE
Maximum degree of the edge quadrature rules.
Definition max_degrees_quadratures.hpp:35
Definition ddr-magnetostatics.hpp:41