Meshing issue using "prime.SizingType.MESHED" #731
Unanswered
cadfem-flh
asked this question in
Q&A
Replies: 2 comments
-
Hi @cadfem-flh . I suspect there could be small features present at that location, I would suggest the following course of actions
|
Beta Was this translation helpful? Give feedback.
0 replies
-
Hi @agvarghe . There are no small features present at that location as you can see in the image. Thank you. |
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
-
I would like to automatically mesh the remaining surfaces after I have already meshed some of them. To do this I use surface_mesh_with_size_controls().
However, if I configure the size_control object as shown:
size_control = model.control_data.create_size_control(prime.SizingType.MESHED) size_control.set_meshed_sizing_params( prime.MeshedSizingParams(model=model, growth_rate=1.2) ) size_control.set_suggested_name("meshed_control") size_control.set_scope(prime.ScopeDefinition(model=model))
and then carry out the networking using the function below:
mesh_util.surface_mesh_with_size_controls( size_control_names = "meshed_control", scope=scope, )
some of the zones at the edges are unnecessarily finely meshed. Does anyone already know about this "error"? How could it be fixed?
Beta Was this translation helpful? Give feedback.
All reactions