Skip to content

Commit

Permalink
Update gmsh meshing options to pass on arm (#2940)
Browse files Browse the repository at this point in the history
  • Loading branch information
jorgensd authored and jhale committed Dec 26, 2023
1 parent 0e44fb5 commit 25db9a7
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion python/test/unit/mesh/test_higher_order_mesh.py
Original file line number Diff line number Diff line change
Expand Up @@ -608,7 +608,9 @@ def test_gmsh_input_2d(order, cell_type):
gmsh.option.setNumber("Mesh.CharacteristicLengthMax", res)

if cell_type == CellType.quadrilateral:
gmsh.option.setNumber("Mesh.Algorithm", 2 if order == 2 else 5)
gmsh.option.setNumber("Mesh.Algorithm", 2)
# Force mesh to have no triangles
gmsh.option.setNumber("Mesh.RecombinationAlgorithm", 3)

gmsh.model.occ.addSphere(0, 0, 0, 1, tag=1)
gmsh.model.occ.synchronize()
Expand Down

0 comments on commit 25db9a7

Please sign in to comment.