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
from ufl import (
Mesh,
tetrahedron,
FacetNormal,
ds,
)
from ufl.algorithms import compute_form_data
from ufl.finiteelement import FiniteElement
from ufl.pullback import identity_pullback
from ufl.sobolevspace import H1
domain = Mesh(FiniteElement("Lagrange", tetrahedron, 2, (3,), identity_pullback, H1))
# Define the facet normal
n = FacetNormal(domain)
# Define the boundary integral
c = n[0].dx(0).dx(0) * ds
A = compute_form_data(c)
The text was updated successfully, but these errors were encountered:
First referenced:
https://fenicsproject.discourse.group/t/ulf-issue-for-higher-order-derivatives-on-quadratic-elements/17075/2
Minimal reproducible example
The text was updated successfully, but these errors were encountered: