delete_single_pin_rlc#

Components.delete_single_pin_rlc(deactivate_only: bool = False) list[source]#

Delete all RLC components with a single pin.

Parameters:
deactivate_onlybool, optional

Whether to only deactivate RLC components with a single point rather than delete them. The default is False, in which case they are deleted.

Returns:
list

List of deleted RLC components.

Examples

>>> from pyaedt import Edb
>>> edbapp = Edb("myaedbfolder")
>>> list_of_deleted_rlcs = edbapp.components.delete_single_pin_rlc()
>>> print(list_of_deleted_rlcs)