parameters#
- property Mapdl.parameters: Parameters#
Collection of MAPDL parameters.
Notes
See Specially named parameters for additional notes regarding parameter naming in MAPDL.
Examples
Simply list all parameters except for MAPDL MATH parameters.
>>> mapdl.parameters ARR : ARRAY DIM (3, 1, 1) PARM_FLOAT : 20.0 PARM_INT : 10.0 PARM_LONG_STR : "stringstringstringstringstringst" PARM_STR : "string" PORT : 50052.0
Get a parameter
>>> mapdl.parameters['PARM_FLOAT'] 20.0
Get an array parameter
>>> mapdl.parameters['ARR'] array([1., 2., 3.])