German
German
If the input file you are executing, it is always the same. I would upload it and then do something like: ```py mapdl.run("/input,myapdl.inp") ``` So you bypass having to submit...
Hi... Can you try with ``mapdl.input('Mechanical.inp')``?? I believe running ``/INPUT`` does not work in gRPC mode.
mmhh... you could use ``mapdl.save`` and ``mapdl.resume`` instead of input again the file... that way you dont need to use ``mapdl.input`` more than once... ```py mapdl.input("mechanical.inp") ... # do changes...
It looks.... artistic I would say... ```py mapdl.vplot(cpos=(0,0,1)) ``` If I disable `show_lines`: ```py mapdl.vplot(cpos=(0,0,1), show_lines=False) ``` _Originally posted by @germa89 in https://github.com/ansys/pymapdl/issues/2417#issuecomment-1764537294_
## Usage of `PAUSE` over the gRPC interface Interestingly, it seems that the `PAUSE` command does not work on gRPC mode. ```py >> mapdl.run("pause") CRITICAL - pymapdl_global - logging -...
# Usage of `PAUSE` on Student version Additionally, it seems the command `PAUSE` does not work well in MAPDL student version (or maybe I'm using it wrong). But if you...
## License error showing on the student version Also it seems that launching student version shows the ``Maximum licensed number of demo users already reached.`` error before starting successfully: ```...
Wrapping `PAUSE` on a `non_interactive` context (which uses `input`) does not help to avoid the error message shown above. ``` *** WARNING *** CP = 3.962 TIME= 11:51:49 PAUSE is...
Let's keep the discussion in #2550 for the moment.
Keeping this open until the discussion comes up with an issue/solution