Pyansys load_parameters (): Has the official API of parameters () been changed? If so, what has it been changed to?
When I ran the previous code, because the pyansys version at that time was very low (0.39.10), it may no longer be applicable in the current version, so I reported an error
I think that
load_parameters
has been replace by theparameters
method; see this section in the PyMAPDL documentation:https://mapdl.docs.pyansys.com/version/stable/api/_autosummary/ansys.mapdl.core.Mapdl.parameters.html
Sorry I can't even remember what
load_parameters
did, but if I had to guess it retrieved the MAPDL parameters to Python variables? If this is what you mean to use then you can use the following style, assuming here that the MAPDL parameter name isARG1
:Mike