You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Seems there is actually a bug in element_quad0.py. np.ones(X.shape[1]) should be replaced with, e.g., np.zeros_like(X[0]) + 1. Maybe np.ones(X.shape[1:]) would also work. The thing is that X has different shape in InteriorBasis and FacetBasis.
We have
ElementTriP0
,ElementQuad0
#266,ElementTetP0
, but notElementLineP0
(or the hexahedron).The text was updated successfully, but these errors were encountered: