minSideSpacing
Specifies the spacing between the shapes on the same layer for a given (short or long) edge.
minSideSpacing Quick Reference
Value Type
|
Specifies the minimum spacing between the edges of the two shapes. |
Required Parameters
|
Specifies the type of edges of both the shapes to be considered for spacing check.
Type: |
Optional Parameters
|
Specifies that the constraint applies only if the parallel run length between the edges of the shapes is equal to or greater than this value.
Type: |
|
|
Specifies that the constraint applies if the width of the first shape is in this range.
Type: |
|
|
Specifies that the constraint applies if width of the second shape is in this range.
Type: |
|
|
Specifies the measurement direction.
Type: |
|
Example—minSideSpacing Using Value
set_constraint_parameter -name spacingType -IntValue 1
set_constraint_parameter -name parallelRunLength -Value 0.0
set_constraint_parameter -name widthRangeArray \
-RangeArrayValue { "[0.6 0.8]" }
set_constraint_parameter -name otherWidthRangeArray \
-RangeArrayValue { "[0.9 1.0]" }
set_layer_constraint -constraint minSideSpacing -layer Metal1 -Value 0.4
Specifies that the minimum spacing between the two shapes on Metal1 must be greater than or equal to 0.4 user units under the following conditions:
- The spacing is measured from a short side of the first shape to a short side of the second shape.
- The parallel run length between the two shapes is greater than or equal to 0.0 user units.
- The width of the first shape is greater than or equal to 0.6 and less than or equal to 0.8 user units.
-
The width of the second shape is greater than or equal to 0.9 user units and less than 1.0 user units.

Related Topics
Return to top