SolderBallsInfo#
- class pyedb.workflows.sipi.hfss_auto_configuration.SolderBallsInfo#
Solder ball configuration for component modeling.
This dataclass stores geometric parameters for solder ball definitions used in HFSS port creation and component modeling.
- Attributes:
- ref_des
str Reference designator of the component. The default is
"".- shape
str Geometric shape of the solder ball:
"cylinder","sphere", or"spheroid". The default is"cylinder".- diameter
strorfloatorNone Nominal diameter of the solder ball. The default is
None.- mid_diameter
strorfloatorNone Middle diameter for spheroid shapes only. The default is
None.- height
strorfloatorNone Height of the solder ball. The default is
None.
- ref_des
Examples
>>> ball = SolderBallsInfo(ref_des="U1", shape="cylinder", diameter="0.3mm", height="0.2mm") >>> ball.ref_des 'U1' >>> ball.diameter '0.3mm'
Overview#
Import detail#
from pyedb.workflows.sipi.hfss_auto_configuration import SolderBallsInfo