-
Hi all, I am interested in retrieving all the loads applied on an FE model in Pymapdl. Is there a command that returns nodal loads, surface loads, surface element loads and so on? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 3 replies
-
Hi @derne058 In the "Enriched Command Output" section of the PyMAPDL Documentation Page listing of the D (boundary conditions on nodes) and F (forces applied to nodes) have an extra method in their listing. To create a Python list of the node IDs and values, or a dataframe. It would be nice if this idea was extended to the other types of loads (hint @germa89). The CDBWRITE command has a "Load" option to write just the loading information. So answer could change depending on what you need to do. Mike |
Beta Was this translation helpful? Give feedback.
@derne058 well if you are resuming the original model it could have the original loads so you would not need to reapply them. Or write out the loads with cdwrite then read them in as needed with cdread (assuming here that the FEM is not changing including IDs).