Skip to content
Snippets Groups Projects
Commit 6ac8e4ff authored by Dominic Kempf's avatar Dominic Kempf
Browse files

Additional YaspGrid short cut for skeleton terms

parent 4602e945
No related branches found
No related tags found
No related merge requests found
...@@ -56,6 +56,11 @@ def decide_if_kernel_is_necessary(facedir_s, facemod_s, facedir_n, facemod_n): ...@@ -56,6 +56,11 @@ def decide_if_kernel_is_necessary(facedir_s, facemod_s, facedir_n, facemod_n):
if not get_option("diagonal_transformation_matrix"): if not get_option("diagonal_transformation_matrix"):
return True return True
# The PDELab machineries visit-once policy combined with Yasp avoids any visits
# with facemod_s being True
if facemod_s:
return False
# A codim1 entity can never be on the upper resp. lower side of the ref element # A codim1 entity can never be on the upper resp. lower side of the ref element
# in both inside and outside cell in a YaspGrid # in both inside and outside cell in a YaspGrid
if facemod_n == facemod_s: if facemod_n == facemod_s:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment