maxFloatingArea
spacings(
( maxFloatingArea
'routingLayers (tx_layer1 tx_layer2 … tx_layerN)
'singleLayer | 'connected | 'allConnected
'spacings
(
(( "layer" ))
(g_table)
)
f_area
)
) ;spacings
Defines the maximum allowed area for floating metal shapes on the specified routing layers.
Floating metal shapes are shapes on the current layer that cannot trace a path to a diffusion connection or polysilicon gate by using only same-layer or lower-layer connections. Grounded metal shapes are those that can connect to a diffusion connection or polysilicon gate by using same-layer or lower-layer connections.
Multiple maxFloatingArea constraints must be placed in an 'or constraint group.
Values
|
f_area
|
The area of floating metal shapes must be less than or equal to this value.
|
Parameters
|
'routingLayers (tx_layer1 tx_layer2 … tx_layerN)
|
|
|
List of routing layers to which the constraint applies.
Type: String (layer name) or Integer (layer number)
|
|
'singleLayer | 'connected | 'allConnected
|
|
|
The constraint can be applied as follows:
-
'singleLayer: The constraint applies to the area of each floating metal shape on each specified routing layer. Each shape must have an area that is less than or equal to area, or meet the minimum spacing requirements between floating and grounded metal shapes. -
'connected: The constraint applies to the sum of the areas of the connected floating metal shapes on each specified routing layer. The connected area on a layer must be less than or equal to area, or meet the minimum spacing requirements between the floating and grounded metal shapes. -
'allConnected: The constraint applies to the sum of the areas of all connected floating metal shapes on the specified routing layers. The total connected area on the current and lower layers must be less than or equal to area, or meet the minimum spacing requirements between the floating and grounded metal shapes.
Type: Boolean
|
|
'spacings( (( "layer" )) (g_table) )
|
|
|
"layer" identifies the index for table.
Each entry in g_table takes the following form:
tx_layer ( (f_minSpacing 0.0) (f_minParSpacing f_parallelLength) … )
where, minSpacing is the minimum spacing, minParSpacing is the minimum parallel spacing, and parallelLength is the minimum parallel run length, as shown in the figure above.
If the floating metal area for the current layer (and optionally for all lower connected layers) is greater than area, one of the following conditions must be met:
-
The distance between the floating and grounded shapes must be greater than or equal to the specified distance (minSpacing).
-
The floating metal shapes that are at a distance greater than or equal to minParSpacing from grounded metal shapes must have parallel run length greater than or equal to parallelLength at the minimum spacing distance.
The minParSpacing values must be defined in the decreasing order and must be smaller than the minSpacing values. Smaller minParSpacing spacing values require larger parallelLength values.
Type: A 1-D table indexed on "layer", specifying floating-point spacing and parallel run length values that apply to the shapes on each specified routing layer
|
Example
If the sum of areas of floating metal shapes is greater than 1000, the following conditions must be met:
-
For layer Metal1, the distance between a floating metal shape and a grounded metal shape must be greater than or equal to 1.0; otherwise,
-
If the distance between them is greater than or equal to 0.5, the parallel run length at minimum spacing must be at least 0.8.
-
If the distance between them is greater than or equal to 0.2, the parallel run length at minimum spacing must be at least 2.0. Spacing that is less than 0.2 is not allowed.
-
For Metal2 through Metal5, the distance between a floating metal shape and a grounded metal shape must be greater than or equal to 0.6; otherwise, if the distance between them is greater than or equal to 0.3, the parallel run length at the minimum spacing must be at least 0.8.
Return to top