add#

MapdlPool.add(mapdl)#

Add an existing MAPDL instance to the pool.

Parameters:
mapdlansys.mapdl.core.Mapdl

An existing MAPDL instance to add to the pool.

Return type:

None

Examples

>>> from ansys.mapdl.core import launch_mapdl, MapdlPool
>>> mapdl = launch_mapdl()
>>> pool = MapdlPool(1)
>>> pool.add(mapdl)