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 30, 2024
1 parent c3ce9fe commit 68bcce7
Show file tree
Hide file tree
Showing 2 changed files with 16 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
16 changes: 14 additions & 2 deletions ufl/checks.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
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.geometry import GeometricQuantity, SpatialCoordinate
from ufl.sobolevspace import H1


Expand All @@ -34,7 +34,19 @@ 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):
return expr.ufl_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 68bcce7

Please sign in to comment.