Replies: 1 comment 3 replies
-
General comment from the APDL side: /SOLU is just used to go into the Solution processor. In a typical APDL script you don't expect any information to be returned for the /PREP7, /SOLU... So the mapdl.solution is a clear improvement. But to keep old APDLers happy, it would be nice to also have slashsolu (and then just go into the solution processor). |
Beta Was this translation helpful? Give feedback.
3 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
We have currently
mapdl.slashsolu
which in my opinion is an important command (it is used everywhere), but the "slash" part is reaally bothering me (probably I'm not the only one).Current implementation
Currently
mapdl.solution
return an object which provides some information about the solution for example, number of substeps, maximum number of DOF, etc.You can check the code here
Implementation
To compatibilise this, we could just implement the
__call__
submethod, this__call__
method will callmapdl.slashsolu()
.Do you think it is a good idea?
Pinging @ansys/pymapdl-developers @ansys/pymapdl-collaborators @ansys/pymapdl-maintainers
4 votes ·
Beta Was this translation helpful? Give feedback.
All reactions