German
German
Interesting... it seems to work for me: ```pycon >>> mapdl.mat(1) >>> mapdl.mp("SONC", 1, 1500) # sonc in m/s >>> mapdl.mp("DENS", 1, 1000) # Density in kg/m3 >>> mapdl.mpcopy(1, 2) COPY...
For reference: https://github.com/ansys/pymapdl/discussions/3026#discussion-6554930 GitHubWhat should we do with the undocumented arguments (``--``) ? · ansys pymapdl · Discussion #3026Given this APDL command: MPCOPY,--,matf,matt where: -- is an "unused" field or,...
This issue is locked until https://github.com/ansys/pymapdl/discussions/3026 gets closure. GitHubWhat should we do with the undocumented arguments (``--``) ? · ansys pymapdl · Discussion #3026Given this APDL command: MPCOPY,--,matf,matt where: --...
Hi @PaulCreusy I haven't work much on packing PyMAPDL in an executable using pyinstaller. Can you share the code you use to create the compiled executable (aka the pyinstaller commands...
Probably you can replace the versions in the hardcoded paths using: ```py try: import importlib.metadata as importlib_metadata except ModuleNotFoundError: # pragma: no cover import importlib_metadata __version__ = importlib_metadata.version("ansys-mapdl-core") ``` Or...
Hi @PaulCreusy I am re-reading your issue: > When using pymapdl and starting a MAPDL instance using the function launch_mapdl, MAPDL runs in the background and does not display any...
Reference: https://stackoverflow.com/questions/2935704/running-shell-commands-without-a-shell-window Stack OverflowRunning shell commands without a shell windowWith either subprocess.call or subprocess.Popen, executing a shell command makes a shell window quicky appear and disappear. How can I run...
Oh.. OK you want the MAPDL window to be minimized. I see. Well, I guess we could add [subprocess.CREATE_NO_WINDOW](https://docs.python.org/3/library/subprocess.html#subprocess.CREATE_NO_WINDOW) to the subprocess call. But I will need to check side...
Is this still a draft? @clatapie
For reference: https://dev.docs.pyansys.com/how-to/contributing.html#commit-naming-conventions Contributing — PyAnsys developer's guide