Skip to content

No SMISC result, model specific #2415

Answered by mikerife
mikerife asked this question in Q&A
Oct 13, 2023 · 1 comments · 17 replies
Discussion options

You must be logged in to vote

Hi @ShaileshFle
Ok - if the TECS is current on any of the licenses then next time go ahead and open an technical support call in the typical manner. On the support case make it clear that while you are using PyMAPDL, you have a MAPDL question.

Here is the modified input file for you to review:

model1_input09.txt

And the PyMAPDL script to do what you want:

from ansys.mapdl.core import launch_mapdl
import os
path = os.getcwd()

mapdl = launch_mapdl(run_location = path)

mapdl.clear()
_ = mapdl.input(r"model1_input09.txt")

mapdl.allsel()
mapdl.finish()
mapdl.slashsolu()
mapdl.outres('erase')
mapdl.outres('all', 'all')
for i in range(1,5):
    mapdl.time(i)
    mapdl.solve()

mapdl.finish()

N…

Replies: 1 comment 17 replies

Comment options

You must be logged in to vote
17 replies
@ShaileshFle
Comment options

@mikerife
Comment options

mikerife Oct 18, 2023
Maintainer Author

@ShaileshFle
Comment options

@mikerife
Comment options

mikerife Oct 19, 2023
Maintainer Author

Answer selected by germa89
@ShaileshFle
Comment options

@mikerife
Comment options

mikerife Oct 19, 2023
Maintainer Author

@ShaileshFle
Comment options

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