Product Documentation
Virtuoso Schematic Editor SKILL Functions Reference
Product Version IC23.1, November 2023

schGetSplitInstTerms

schGetSplitInstTerms(
d_instTermId
)
=> l_splitInstTermIds / nil

Description

Returns a list of split instance terminals that have the same name as that of the given split-primary instance.

Arguments

d_instTermId

Split-primary instance terminal ID.

Value Returned

l_splitInstTermIds

Returns a list of split instance terminals.

nil

Returning the list was unsuccessful.

Examples

Returns a list of split instance terminals with the same name as the primary instance term name.

s1 = dbOpenCellViewByType("lib" "bga" "s1" "schematicSymbol" "r")
i0_s1 = schCreateInst(cvId s1 "I0" 0:1 "R0")
i0 = schGetSplitPrimaryInst(i0_s1)
primTerm = car(i0->instTerms)
schGetSplitInstTerms(primTerm)

Return to top
 ⠀
X