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 authored and inducer committed Aug 25, 2024
1 parent 4b722a3 commit a55a915
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 a55a915

Please sign in to comment.