-
Beta Was this translation helpful? Give feedback.
Answered by
germa89
Feb 20, 2024
Replies: 1 comment 6 replies
-
Hi @leoack00 I dont think you need to do Then something like: mapdl.post1()
for count in range(1, endcount, 2):
mapdl. set(nset = count)
uz = mapdl.prnsol ( item: "U", comp: "Z").to_array()
uz_min = uz.min()
uz_max = uz.max()
if uz_min - uz_max < 0:
Real = uz_max
else:
Real = uz_min
...
# etc |
Beta Was this translation helpful? Give feedback.
6 replies
Answer selected by
germa89
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hi @leoack00
I dont think you need to do
plnsol
for retriving data. I think you are good to go withMapdl.prnsol
[source].Then something like: