August 31, 2023 at 6:51 am
Ansys Employee
Hi
There is a post there from our team with some suggestions on how to use the command (so ‘file’ can not have the .sat extension in it) https://github.com/ansys/pymapdl/issues/2285
Use the below code that works:
filepath = ‘C:\\Users\\HertingerT\\Desktop\\GestufteLagerung’
file = ‘33213’ # no .sat extension here!
#### Launch pymapdl
mapdl = launch_mapdl(run_location= here,override=True)
mapdl.aux15()
mapdl.satin(name = file , extension = ‘sat’, path = filepath, entity = ‘ALL’, noan = 0)
mapdl.allsel()
mapdl.vplot()
mapdl.exit()