ansys.mapdl.core.Information#

class ansys.mapdl.core.Information(mapdl)#

This class provide some MAPDL information from /STATUS MAPDL command.

It is also the object that is called when you issue print(mapdl), which means print calls mapdl.info.__str__().

Notes

You cannot directly modify the values of this class.

Some of the results are cached for later calls.

Examples

>>> mapdl.info
Product:             Ansys Mechanical Enterprise
MAPDL Version:       21.2
ansys.mapdl Version: 0.62.dev0
>>> print(mapdl)
Product:             Ansys Mechanical Enterprise
MAPDL Version:       21.2
ansys.mapdl Version: 0.62.dev0
>>> mapdl.info.product
'Ansys Mechanical Enterprise'
>>> info = mapdl.info
>>> info.mapdl_version
'RELEASE  2021 R2           BUILD 21.2      UPDATE 20210601'

Methods

Attributes

Information.aux_capabilities

Retrieve the aux capabilities from the MAPDL instance.

Information.boundary_condition_information

Retrieve the boundary condition information from the MAPDL instance.

Information.config_values

Retrieve the config values from the MAPDL instance.

Information.database_status

Retrieve the database status from the MAPDL instance.

Information.global_status

Retrieve the global status from the MAPDL instance.

Information.job_information

Retrieve the job information from the MAPDL instance.

Information.load_step_options

Retrieve the load step options from the MAPDL instance.

Information.mapdl_version

Retrieve the MAPDL version from the MAPDL instance.

Information.mapdl_version_build

Retrieve the MAPDL version build from the MAPDL instance.

Information.mapdl_version_release

Retrieve the MAPDL version release from the MAPDL instance.

Information.mapdl_version_update

Retrieve the MAPDL version update from the MAPDL instance.

Information.model_information

Retrieve the model information from the MAPDL instance.

Information.post_capabilities

Retrieve the post capabilities from the MAPDL instance.

Information.preprocessing_capabilities

Retrieve the preprocessing capabilities from the MAPDL instance.

Information.product

Retrieve the product from the MAPDL instance.

Information.products

Retrieve the products from the MAPDL instance.

Information.pymapdl_version

Retrieve the PyMAPDL version from the MAPDL instance.

Information.routine_information

Retrieve the routine information from the MAPDL instance.

Information.scratch_memory_status

Retrieve the scratch memory status from the MAPDL instance.

Information.solution_options

Retrieve the solution options from the MAPDL instance.

Information.solution_options_configuration

Retrieve the solution options configuration from the MAPDL instance.

Information.stitles

Retrieve or set the value for the MAPDL stitle (subtitles).

Information.title

Retrieve and set the title from the MAPDL instance.

Information.titles

Retrieve the titles from the MAPDL instance.

Information.units

Retrieve the units from the MAPDL instance.