Configuration#

There are some configuration options that are respected when loading an embedded instance of Mechanical into python. Currently - the only such option is whether to load ACT Addins. The class Configuration can be used to set up that configuration. This configuration can be supplied to the constructor of the class Configuration.

For example, to load an instance of Mechanical without any ACT Addins:

from ansys.mechanical.core import App
from ansys.mechanical.core.embedding import Configuration

config = Configuration()
config.no_act_addins = True
app = App(config=config)