MinLineWidth#

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

Bases: pydantic.BaseModel

Minimum trace width constraint rule.

This rule validates that all trace widths meet or exceed a specified minimum value on selected layers.

Attributes:
namestr

Rule identifier for reporting violations.

valuestr

Minimum acceptable width with unit (e.g., "3.5mil", "0.1mm").

Examples

>>> rule = MinLineWidth(name="signal_width", value="3.5mil")
>>> rule.name
'signal_width'

Overview#

Import detail#

from pyedb.workflows.drc.drc import MinLineWidth

Attribute detail#

MinLineWidth.name: str#
MinLineWidth.value: str#