Product Documentation
Virtuoso Studio Design Environment SKILL Reference
Product Version IC23.1, November 2023

dbGetPinGroups

dbGetPinGroups(
d_cellView
) 
=> d_dpg d_dpg ... / nil

Description

(Virtuoso MultiTech Framework Only) Returns the pin groups defined in the specified cellview.

Arguments

d_cellView

The cellview to obtain the pin groups.

Value Returned

d_dpg

The list of pin groups in the cellview.

nil

The operation failed.

Example

A die footprint cell is modified by creating placeBounds and die pin groups. Subsequently, dbGetPinGroups is used to list the newly created pin groups.

dieFootprint = (dbOpenCellViewByType "testLib" "footprint" "base" "maskLayout" "w")
placeBound1 = (dbCreatePlaceBound dieFootprint "left" list(0:0 100:100) 0 100)
placeBound2 = (dbCreatePlaceBound dieFootprint "right" list(100:0 200:100) 50 100)
pinGroupLeftTop = (dbCreatePinGroup dieFootprint "left" "top")
pinGroupLeftBottom = (dbCreatePinGroup dieFootprint "left" "bottom")
pinGroupRightTop = (dbCreatePinGroup dieFootprint "right" "top")
pinGroupRightBottom = (dbCreatePinGroup dieFootprint "right" "bottom")
\i (sort (dbGetPinGroups dieFootprint)~>name nil)
\t ("left_PLACEBOUND_FACE_BOTTOM" "left_PLACEBOUND_FACE_TOP" "right_PLACEBOUND_FACE_BOTTOM" "right_PLACEBOUND_FACE_TOP")
\p > 
 

Related Topics

dbCreatePlaceBound

dbCreatePinGroup

dbAddPinToPinGroup

dbGetPinGroups

dbGetPinGroupPlaceBoundNameAndFace

License Requirements of Virtuoso RF Solution


Return to top
 ⠀
X