German
German
You are right. I acknowledge there are some corners to polish. PyMAPDL should probably re-detect MAPDL if the file cannot be found. I will look into that. I'm keeping this...
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,...
Because of discusion #3026, probably the `RDEC` command is not going to be updated.
> Hi German, > So it looks like the issue is calling *VREAD in a loop; at some point MAPDL crashes (still not sure if it is PyMAPDL or MAPDL)....
Error running Ayush code: ``` Server listening on : 0.0.0.0:50052 E0607 16:34:41.940439472 1545 proto_buffer_writer.h:67] assertion failed: !byte_buffer->Valid() forrtl: error (76): Abort trap signal Image PC Routine Line Source libc.so.6 00007FFFBEE19520...
* Check if there is a memory leak by running a script (with /clear, finish) many many times and check memory increase. Suggested by @koubaa
Running vm1 code as non-interactive, it got slow down, I kill python, and restart, and I saw this. ``` Current ANSYS Traceback: ender slout Mapdl::SendCommand slout Mapdl::SendCommand slout Mapdl::SendCommand slinquire...
> Hi German, > So it looks like the issue is calling *VREAD in a loop; at some point MAPDL crashes (still not sure if it is PyMAPDL or MAPDL)....
More info on this: ```
This can be overcomed by changing the env var ``PYMAPDL_MAX_MESSAGE_LENGTH``: ```bash export PYMAPDL_MAX_MESSAGE_LENGTH=471859200 ``` It set to ``-1`` it should remove any lenght limit. Ideally we would like a more...