Skip to content

Commit

Permalink
skip orientation test for face meshes to avoid warning
Browse files Browse the repository at this point in the history
  • Loading branch information
majosm committed Aug 14, 2024
1 parent 8d88ec0 commit 30ccbcf
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion meshmode/discretization/connection/face.py
Original file line number Diff line number Diff line change
Expand Up @@ -356,7 +356,10 @@ def make_face_restriction(
unit_nodes=bdry_unit_nodes)
bdry_mesh_groups.append(bdry_mesh_group)

bdry_mesh = make_mesh(bdry_vertices, bdry_mesh_groups)
bdry_mesh = make_mesh(
bdry_vertices, bdry_mesh_groups,
# Element orientation test doesn't work if dim != ambient_dim
skip_element_orientation_test=True)

bdry_discr = discr.copy(
actx=actx,
Expand Down

0 comments on commit 30ccbcf

Please sign in to comment.