short_component_pins#

Components.short_component_pins(component_name, pins_to_short=None, width=0.001)[source]#

Short pins of component with a trace.

Parameters:
component_namestr

Name of the component.

pins_to_shortlist, optional

List of pins to short. If None, all pins will be shorted.

widthfloat, optional

Short Trace width. It will be used in trace computation algorithm

Returns:
bool

True when successful, False when failed.

Examples

>>> from pyaedt import Edb
>>> edbapp = Edb("myaedbfolder")
>>> edbapp.components.short_component_pins("J4A2", ["G4", "9", "3"])