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

Commit

Permalink
Merge pull request #62 from jeffbaylor/master
Browse files Browse the repository at this point in the history
removed exerimental gmsh flag Mesh.CharacteristicLengthFromCurvature
  • Loading branch information
spacether authored Jul 1, 2019
2 parents a42446d + f065f6f commit 01966c8
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 01966c8

Please sign in to comment.