Correcting polynomial space

This commit is contained in:
Stowell, Mark L
2024-10-14 10:37:28 -04:00
parent e160e5cfaf
commit f181ceb58d
+1 -1
View File
@@ -1655,7 +1655,7 @@ void H1_FuentesPyramidElement::calcGradBasis(const int p,
H1_BergotPyramidElement::H1_BergotPyramidElement(const int p, const int btype)
: NodalFiniteElement(3, Geometry::PYRAMID,
(p + 1) * (p + 2) * (2 * p + 3) / 6, // Bergot (JSC)
p, FunctionSpace::Qk)
p, FunctionSpace::Uk)
{
const real_t *cp = poly1d.ClosedPoints(p, VerifyNodal(VerifyClosed(btype)));