ExtendedNet#

class pyedb.grpc.database.net.extended_net.ExtendedNet(pedb, edb_object)#

Bases: ansys.edb.core.net.extended_net.ExtendedNet

Manages EDB functionalities for a primitives. It Inherits EDB Object properties.

Overview#

nets

Nets dictionary.

components

Dictionary of components.

rlc

Dictionary of RLC components.

serial_rlc

Dictionary of serial RLC components.

shunt_rlc

Dictionary of shunt RLC components.

Import detail#

from pyedb.grpc.database.net.extended_net import ExtendedNet

Property detail#

property ExtendedNet.nets: dict[str, pyedb.grpc.database.net.net.Net]#

Nets dictionary.

Returns:
Dict[str, Net]

Dict[net name, Net object].

property ExtendedNet.components: dict[str, any]#

Dictionary of components.

Returns:
Dict[str, Component].

Dict[net name, Component object].

property ExtendedNet.rlc: dict[str, any]#

Dictionary of RLC components.

Returns:
Dict[str, Component].

Dict[net name, Component object].

property ExtendedNet.serial_rlc: dict[str, any]#

Dictionary of serial RLC components.

Returns:
Dict[str, Component].

Dict[net name, Component object].

property ExtendedNet.shunt_rlc: dict[str, any]#

Dictionary of shunt RLC components.

Returns:
Dict[str, Component].

Dict[net name, Component object].