CfgPinPairModel#

class pyedb.configuration.cfg_components.CfgPinPairModel(/, **data: Any)#

Bases: pydantic.BaseModel

Represent one pin-pair RLC model entry.

Overview#

Import detail#

from pyedb.configuration.cfg_components import CfgPinPairModel

Attribute detail#

CfgPinPairModel.first_pin: str#
CfgPinPairModel.second_pin: str#
CfgPinPairModel.resistance: str | float | None = None#
CfgPinPairModel.inductance: str | float | None = None#
CfgPinPairModel.capacitance: str | float | None = None#
CfgPinPairModel.is_parallel: bool = False#
CfgPinPairModel.resistance_enabled: bool = False#
CfgPinPairModel.inductance_enabled: bool = False#
CfgPinPairModel.capacitance_enabled: bool = False#