Skip to content
This repository has been archived by the owner on Feb 13, 2024. It is now read-only.

Commit

Permalink
removed exerimental gmsh flag Mesh.CharacteristicLengthFromCurvature
Browse files Browse the repository at this point in the history
  • Loading branch information
Jeff Baylor committed Apr 26, 2019
1 parent 03638c7 commit f065f6f
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion pycalculix/feamodel.py
Original file line number Diff line number Diff line change
Expand Up @@ -1779,7 +1779,8 @@ def __mesh_gmsh(self, size, meshmode, timeout=20):
geo.append('Mesh.CharacteristicLengthMin = 0;')
geo.append('Mesh.CharacteristicLengthMax = 1e+022;')
# use this so small circles are meshed finely
geo.append('Mesh.CharacteristicLengthFromCurvature = 1;')
# this is broken in Gmsh 4.3.0
# geo.append('Mesh.CharacteristicLengthFromCurvature = 1;')
geo.append('Mesh.CharacteristicLengthFromPoints = 1;')
# geo.append('Mesh.Algorithm = 2; //delauny') #okay for quads
geo.append('Mesh.Algorithm = 8; //delquad = delauny for quads')
Expand Down

0 comments on commit f065f6f

Please sign in to comment.