You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In an MAPDL input file the following commands:
type,11 $real,11 $mat,11
Will be translated to the following by the PyMAPDL convert_script:
mapdl.type("11 $real", "11 $mat", 11)
Would it be possible to instead translate them to a chain_commands style like so?
withmapdl.chain_commands:
mapdl.type(11)
mapdl.real(11)
mapdl.mat(11)
### Steps for implementing the featureDothatPythonscriptingthatyoudo....
### Useful links and references_Noresponse_
The text was updated successfully, but these errors were encountered:
Description of the feature
In an MAPDL input file the following commands:
type,11 $real,11 $mat,11
Will be translated to the following by the PyMAPDL convert_script:
Would it be possible to instead translate them to a chain_commands style like so?
The text was updated successfully, but these errors were encountered: