Replies: 1 comment 1 reply
-
Hi @ay8tb Here is the script I used: from ansys.mapdl.core import launch_mapdl
import os
path = os.getcwd()
mapdl = launch_mapdl(run_location=path, additional_switches='-smp')
print(mapdl)
input = mapdl.input('SYS-30.anf')
mapdl.prep7()
mapdl.vplot() I'm running MAPDL 2023R2 and PyMAPDL 0.68.1. |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hi,
I'm facing an interesting issue where any .anf file with a void (whether full or partial) either fails to mesh (in the case of a full void) or fails to have any elements. I don't have this issue with other .anf files that have no voids or cuts. SYS-30 is an example of one that fails. Geom_trial_mm is an example of one that doesn't.
Geom_trial_mm.zip
SYS-30.zip
UserWarning: There are no elements to plot. warnings.warn("There are no elements to plot.")
As far as I can tell when opening it in Notepad, the file isn't empty and is exported the same way through Spaceclaim.
Beta Was this translation helpful? Give feedback.
All reactions