Open
Description
Description of the feature
As a developer, I want to assess the progress of an analysis, so that I can display it in a progress bar in a user interface. Given a running analysis, it would be great to interrogate the MAPDL server to get the percentage of completion. A get_completion_rate
method could return a value between 0 and 1.
Steps for implementing the feature
mapdl.solution()
mapdl.antype("STATIC")
mapdl.solve()
rate = mapdl.get_completion_rate()
Useful links and references
No response