DiffPair#

class pyedb.workflows.drc.drc.DiffPair(/, **data: Any)#

Bases: pydantic.BaseModel

Differential pair net definition.

Defines a single differential pair consisting of positive and negative nets.

Attributes:
positivestr

Positive net name in the differential pair.

negativestr

Negative net name in the differential pair.

Examples

>>> pair = DiffPair(positive="USB_DP", negative="USB_DN")
>>> pair.positive
'USB_DP'

Overview#

Import detail#

from pyedb.workflows.drc.drc import DiffPair

Attribute detail#

DiffPair.positive: str#
DiffPair.negative: str#