DifferentialPair#

class pyedb.grpc.database.net.differential_pair.DifferentialPair(pedb, core)#

Manages EDB functionalities for differential pair.

Overview#

delete

Delete the differential pair.

description

Description of the differential pair.

differential_pair

Differential pair Net objects. This property is also used to add or replace nets using the setter method.

id

ID of the differential pair.

is_null

Check if the differential pair is null.

is_power_ground

Check if the differential pair is a power or ground pair.

name

Name of the differential pair.

positive_net

Positive Net.

negative_net

Negative Net.

Import detail#

from pyedb.grpc.database.net.differential_pair import DifferentialPair

Property detail#

property DifferentialPair.description: str#

Description of the differential pair.

property DifferentialPair.differential_pair: tuple[pyedb.grpc.database.net.net.Net, pyedb.grpc.database.net.net.Net]#

Differential pair Net objects. This property is also used to add or replace nets using the setter method.

property DifferentialPair.id: int#

ID of the differential pair.

property DifferentialPair.is_null: bool#

Check if the differential pair is null.

property DifferentialPair.is_power_ground: bool#

Check if the differential pair is a power or ground pair.

property DifferentialPair.name: str#

Name of the differential pair.

property DifferentialPair.positive_net: pyedb.grpc.database.net.net.Net#

Positive Net.

property DifferentialPair.negative_net: pyedb.grpc.database.net.net.Net#

Negative Net.

Attribute detail#

DifferentialPair.core#

Method detail#

DifferentialPair.delete() → None#

Delete the differential pair.

Returns:
None