create_mesh issue on a two materials foil #428
-
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 1 reply
-
Hi @jbocreative I had a play around with your geometry and could not get it to work, I suspect the issue is the extremely sharp angle between the fairing and the structural geometry. I believe the meshing algorithm first meshes this area and then eats away the holes later, so I think it is probably having an issue in this area. I also tried changing the ![]() If you are only interested in geometric and plastic properties, the mesh converges by setting You could "artificially" improve the mesh by introducing more nodes in your geometry, which would be forced to be within the mesh but this would be a bit more pre-processing work for you. Probably the best solution would be to change your geometry so that you don't have such a sharp junction, e.g. square it off - I haven't tried this but suspect it would work. The results should not be vastly different. Sorry I don't have a better answer! Best of luck! |
Beta Was this translation helpful? Give feedback.
-
Hi |
Beta Was this translation helpful? Give feedback.
Hi @jbocreative I had a play around with your geometry and could not get it to work, I suspect the issue is the extremely sharp angle between the fairing and the structural geometry. I believe the meshing algorithm first meshes this area and then eats away the holes later, so I think it is probably having an issue in this area. I also tried changing the
min_angle
parameter ofcreate_mesh()
to no avail.If you are only interested in geometric and plastic properties, the mesh converges by setting
coarse=True
, however you have no real control over the mesh density and may get inaccurate results for warping analyses (which is mesh dependent unlike the other two analyses).You could "artific…