Meshpy to Triangle switch #87
normanrichardson
started this conversation in
General
Replies: 2 comments 1 reply
-
Thanks for the comprehensive rundown @normanrichardson! This will be super helpful when we make the switch! |
Beta Was this translation helpful? Give feedback.
1 reply
-
Now that this has been merged into For interest, here is a casual benchmark I ran between |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
I've seen a good amount of discussion about switching away from using Meshpy and using Triangle for meshing. This got me curious about how sectionproperties uses Meshpy and what this switch would entail. I saw this is planned to happen post v2 so I thought I would make a discussion for this switch. Here is what I have learnt so far:
MeshInfo
dictionary
meshpy.triangle.build(mesh, min_angle=30, mesh_order=2, quality_meshing=True, attributes=True, volume_constraints=True)
triangle.triangulate(data, 'Qzpq30Aao2')
meshpy.triangle.build(mesh, mesh_order=2, quality_meshing=False, attributes=True)
triangle.triangulate(data, 'QzpAao2')
Some things that come to mind are:
Beta Was this translation helpful? Give feedback.
All reactions