-
Could someone please explain to me the usage of these parameters related to MMG re-meshing in the .json file "fix_contour_model_parts" : [], The information avaiable online is not the most helpful :) ! Examples of the usage would be much better. fix_contour_model_parts: This is a list with the submodelparts of the contour where you desire to fix the nodes. fix_conditions_model_parts : The same, but applied for conditions fix_elements_model_parts : Idem, but in this case for elements Many Thanks Dave |
Beta Was this translation helpful? Give feedback.
Replies: 4 comments 7 replies
-
Is there a parameter keyword that can be included in the json that lists the fixed nodes - would appreciate some help on this ASAP please :) !! |
Beta Was this translation helpful? Give feedback.
-
@loumalouomega I think it would still be very useful to have a better explanation of this though please: A priori is fix_contour_model_parts. The name is inconsistent, but i added that in first place and then conditions and elements and I didn't want to break previous behaviour. is the usage "fix_contour_model_parts" : [101, 202, 303], where nodes 101, 202, 303 are the indices of the nodes that need fixing? |
Beta Was this translation helpful? Give feedback.
-
Maybe this is how I implement it in C++? for (auto& node : r_Model_Part.Nodes()) {
|
Beta Was this translation helpful? Give feedback.
-
So, I'll answer my own question - I can confirm that that works in C++ :) Thanks all. Dave |
Beta Was this translation helpful? Give feedback.
Maybe this is how I implement it in C++?
for (auto& node : r_Model_Part.Nodes()) {