get_conduction_paths#

Maxwell3d.get_conduction_paths()#

Get a dictionary of all conduction paths with relative objects. It works from AEDT 23R1.

Returns:
dict

Dictionary of all conduction paths with relative objects.

References

>>> oboundary.GetConductionPathObjects

Examples

>>> from ansys.aedt.core import Maxwell3d
>>> m3d = Maxwell3d()
>>> m3d.modeler.create_box(origin=[0, 0, 0], sizes=[10, 10, 1], name="box1", material="copper")
>>> m3d.modeler.create_box(origin=[0, 0, 0], sizes=[-10, 10, 1], name="box2", material="copper")
>>> m3d.modeler.create_box(origin=[-50, -50, -50], sizes=[1, 1, 1], name="box3", material="copper")
>>> cond_path = m3d.get_conduction_paths()
>>> m3d.release_desktop(True, True)