enabled#

property SolutionCouplingNode.enabled: bool#

Enabled.

Enable/Disable coupling (A sweep disabled in HFSS/Layout cannot be enabled in EMIT).

Value should be ‘true’ or ‘false’.

Examples

>>> from ansys.aedt.core import Emit
>>> app = Emit()
>>> rev = app.results.get_revision()
>>> cpl = rev.get_coupling_data_node()
>>> sol = cpl.children[0]
>>> sol.enabled = True