Skip to content

Empty Nodal Equivalent Stress #3279

Discussion options

You must be logged in to vote

Hi @AidanMcConneheyOVT
Distributed parallel MAPDL does not keep the results in memory (RAM) like shared memory parallel does. So after entering the post1 processor we have to use the SET command to read the results from the result file into the MAPDL database in memory.

sol_output = mapdl.solve()
mapdl.finish()

# ~~~ Post Processing ~~~ #
mapdl.post1()
mapdl.set('last')
mapdl.post_processing.plot_nodal_eqv_stress(lighting=False, show_edges=True, cmap="jet")

Mike

Replies: 1 comment 1 reply

Comment options

You must be logged in to vote
1 reply
@AidanMcConneheyOVT
Comment options

Answer selected by germa89
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
None yet
2 participants