Skip to content

Commit

Permalink
Merge branch 'pbrubeck/cellwise-constant-grad' into pbrubeck/fix/form…
Browse files Browse the repository at this point in the history
…sum-weights
  • Loading branch information
pbrubeck committed Dec 23, 2024
2 parents 6d8989a + d3296f1 commit e1c1211
Show file tree
Hide file tree
Showing 2 changed files with 17 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
17 changes: 15 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,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):
element = expr.ufl_domain().ufl_coordinate_element()
return element.embedded_superdegree <= 1
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 e1c1211

Please sign in to comment.