Weak Thermal-Mechanical Coupling #4058
-
Hi, I’m working with a quadratic mesh imported from Workbench into PyMAPDL using mapdl.input(). My goal is to perform a weakly coupled thermal-structural simulation. Here's my current approach: Thermal step
Structural step
However, while the thermal results look fine, the displacement field from the structural simulation doesn't match the results in Workbench. I suspect the issue may be due to the contact definitions not being properly reestablished when the input file is loaded. So I have a few specific questions:
Thank you in advance! |
Beta Was this translation helpful? Give feedback.
Replies: 5 comments 6 replies
-
Hi @gcassianno Regarding your questions:
Regarding your issue about the displacements. Which elements types are you using for both, structural and thermal analysis? |
Beta Was this translation helpful? Give feedback.
-
Hi @gcassianno the ETCHG command only changes the element type and not any keyopts (or real constant, section definition etc) of the element. So you need to change the contact element keyopt so that the degrees-of-freedom are correct. I.E. after etchg of the thermal model the contact elements still have temp as a DOF. And so we need to change keyopt 1 to make them structural contact elements. |
Beta Was this translation helpful? Give feedback.
-
@gcassianno what R can define, and so RMODIF can chage, depends on the element type. Each element type has its own specific set of real constant(s), if any, and you can find out what they are in the MAPDL Element Guide (of the Help). |
Beta Was this translation helpful? Give feedback.
-
Hi @mikerife Thank you for the additional information. I’ll try making some changes to my example based on your comments, and I’ll come back with the results I get. Also, is there a command to select only midiside nodes? |
Beta Was this translation helpful? Give feedback.
-
Thank you very much @mikerife and @germa89. It worked! |
Beta Was this translation helpful? Give feedback.
Hi @gcassianno the ETCHG command only changes the element type and not any keyopts (or real constant, section definition etc) of the element. So you need to change the contact element keyopt so that the degrees-of-freedom are correct. I.E. after etchg of the thermal model the contact elements still have temp as a DOF. And so we need to change keyopt 1 to make them structural contact elements.
mike