EDBExtendedNetData#

class pyedb.dotnet.database.edb_data.nets_data.EDBExtendedNetData(core_app, raw_extended_net=None)#

Bases: pyedb.dotnet.database.dotnet.database.ExtendedNetDotNet

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

Examples

>>> from pyedb import Edb
>>> edb = Edb("myedb", edbversion="2026.1")
>>> edb_extended_net = edb.nets.extended_nets["GND"]
>>> edb_extended_net.name  # Class Property

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.dotnet.database.edb_data.nets_data import EDBExtendedNetData

Property detail#

property EDBExtendedNetData.nets: dict[str, EDBNetsData]#

Nets dictionary.

property EDBExtendedNetData.components: dict[str, pyedb.dotnet.database.cell.hierarchy.component.EDBComponent]#

Dictionary of components.

property EDBExtendedNetData.rlc: dict[str, pyedb.dotnet.database.cell.hierarchy.component.EDBComponent]#

Dictionary of RLC components.

property EDBExtendedNetData.serial_rlc: dict[str, pyedb.dotnet.database.cell.hierarchy.component.EDBComponent]#

Dictionary of serial RLC components.

property EDBExtendedNetData.shunt_rlc: dict[str, pyedb.dotnet.database.cell.hierarchy.component.EDBComponent]#

Dictionary of shunt RLC components.