techGetSpacingRuleTableEntry
techGetSpacingRuleTableEntry(d_techIDt_constraintNameg_index |l_index tx_layer1[tx_layer2] ) =>g_value/ nil
Description
Returns the value of the table constraint in the specified technology database that (a) is in the foundry constraint group, (b) is applied to the specified layer or layers, and (c) is the value for the table entry with the specified index or indexes.
After running the
cdb2oa translator on a CDBA table that contains table values of nil, the resultant OA table will display the CDBA nil values as OA default values when called by techGetSpacingRuleTableEntry().Arguments
Value Returned
|
The technology database does not exist or the spacing table constraint is not defined. |
Example
techGetSpacingRuleTableEntry(tfID "minSpacing" 0 "via")
=> 5.5
Returns the value (5.5) of the index 0 from the one-dimensional minSpacing table applied to layer via in the technology database identified by tfID.
techGetSpacingRuleTableEntry(tfID "minSpacing" list(0.0005 0.0005) "Metal2")
=> 0.14
Returns the value (0.14) of the index (0.0005 0.0005) from the two-dimensional minSpacing table applied to layer Metal1 in the technology database identified by tfID.
Return to top