Skip to content

Commit

Permalink
Fix is_cellwise_constant(ReferenceGrad(x))
Browse files Browse the repository at this point in the history
  • Loading branch information
pbrubeck committed Dec 31, 2024
1 parent c3ce9fe commit ac5b9d4
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 4 deletions.
4 changes: 2 additions & 2 deletions test/test_change_to_local.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@
def test_change_to_reference_grad():
cell = triangle
domain = Mesh(FiniteElement("Lagrange", cell, 1, (2,), identity_pullback, H1))
U = FunctionSpace(domain, FiniteElement("Lagrange", cell, 1, (), identity_pullback, H1))
V = FunctionSpace(domain, FiniteElement("Lagrange", cell, 1, (2,), identity_pullback, H1))
U = FunctionSpace(domain, FiniteElement("Lagrange", cell, 3, (), identity_pullback, H1))
V = FunctionSpace(domain, FiniteElement("Lagrange", cell, 3, (2,), identity_pullback, H1))
u = Coefficient(U)
v = Coefficient(V)
Jinv = JacobianInverse(domain)
Expand Down
18 changes: 16 additions & 2 deletions ufl/checks.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,8 @@
from ufl.core.expr import Expr
from ufl.core.terminal import FormArgument
from ufl.corealg.traversal import traverse_unique_terminals
from ufl.geometry import GeometricQuantity
from ufl.domain import extract_unique_domain
from ufl.geometry import GeometricQuantity, SpatialCoordinate
from ufl.sobolevspace import H1


Expand All @@ -34,7 +35,20 @@ def is_true_ufl_scalar(expression):

def is_cellwise_constant(expr):
"""Return whether expression is constant over a single cell."""
# TODO: Implement more accurately considering e.g. derivatives?
from ufl.coefficient import Coefficient
from ufl.differentiation import ReferenceGrad

if isinstance(expr, ReferenceGrad):
(expr,) = expr.ufl_operands
if is_cellwise_constant(expr):
return True
elif isinstance(expr, SpatialCoordinate):
domain = extract_unique_domain(expr)
return domain.is_piecewise_linear_simplex_domain()
elif isinstance(expr, Coefficient):
element = expr.ufl_element()
return element.embedded_superdegree <= 1

return all(e.is_cellwise_constant() for e in traverse_unique_terminals(expr))


Expand Down

0 comments on commit ac5b9d4

Please sign in to comment.