• Skip to main content
  • Skip to search
  • Skip to footer
Cadence Home
  • This search text may be transcribed, used, stored, or accessed by our third-party service providers per our Cookie Policy and Privacy Policy.

  1. Community Forums
  2. Custom IC SKILL
  3. Get default via spacing and enclosures

Stats

  • Locked Locked
  • Replies 4
  • Subscribers 144
  • Views 15920
  • Members are here 0
This discussion has been locked.
You can no longer post new replies to this discussion. If you have a question you can start a new discussion

Get default via spacing and enclosures

TaherKotb
TaherKotb over 12 years ago

Hello,

I use dbCreateVia() function to create vias with variable cut Rows and Columns determined by the width of the path connected to the via in the layout view. In order to compute the cut Rows and Columns i need the via spacing and enclosure as inputs but these variables also change with the cut Rows and Columns values which i don't know.

Is there a skill function which allows to autmatically setup the array-side dependent via spacing rules and enclosures according to the input variable cut Rows and Cloumns? if not, is there any work around.

Thanks in advance 

Best Regards

Taher 

  • Cancel
Parents
  • theopaone
    theopaone over 12 years ago

     The values for the via spacing come from several constraints which you have to find from the techDB. The constraints I consider are minSpacing and minViaSpacing (for cutClass rules) for the "standard" spacing and viaSpacing for extra spacing for arrayed vias. I also get the width and length of the vias. Then I can calculate the number of vias in the rows and columns based on the "standard" spacing. If the rows and columns trigger the viaSpacing constraint, I change the spacing value and re-calculate.

    ROWS = fix( (areaWidth - viaWidth) / (viaWidth + viaHorizontalSpace) ) + 1

    COLUMNS = fix( (areaHieght - viaHeight ) / (viaHeight + viaVerticalSpace) ) + 1

     The viaSpacing is used if the number of adjacent cuts are greater than the constraint value. For a constraint value of 3, use the viaSpacing if ROWS > 1 and COLUMNS > 1. If the constraint value is 4, use the viaSpacing if the (ROWS > 1 && COLUMNS > 2) || (ROWS >  2 && COLUMNS > 1)

    Ted

    • Cancel
    • Vote Up 0 Vote Down
    • Cancel
Reply
  • theopaone
    theopaone over 12 years ago

     The values for the via spacing come from several constraints which you have to find from the techDB. The constraints I consider are minSpacing and minViaSpacing (for cutClass rules) for the "standard" spacing and viaSpacing for extra spacing for arrayed vias. I also get the width and length of the vias. Then I can calculate the number of vias in the rows and columns based on the "standard" spacing. If the rows and columns trigger the viaSpacing constraint, I change the spacing value and re-calculate.

    ROWS = fix( (areaWidth - viaWidth) / (viaWidth + viaHorizontalSpace) ) + 1

    COLUMNS = fix( (areaHieght - viaHeight ) / (viaHeight + viaVerticalSpace) ) + 1

     The viaSpacing is used if the number of adjacent cuts are greater than the constraint value. For a constraint value of 3, use the viaSpacing if ROWS > 1 and COLUMNS > 1. If the constraint value is 4, use the viaSpacing if the (ROWS > 1 && COLUMNS > 2) || (ROWS >  2 && COLUMNS > 1)

    Ted

    • Cancel
    • Vote Up 0 Vote Down
    • Cancel
Children
No Data

Community Guidelines

The Cadence Design Communities support Cadence users and technologists interacting to exchange ideas, news, technical information, and best practices to solve problems and get the most from Cadence technology. The community is open to everyone, and to provide the most value, we require participants to follow our Community Guidelines that facilitate a quality exchange of ideas and information. By accessing, contributing, using or downloading any materials from the site, you agree to be bound by the full Community Guidelines.

© 2025 Cadence Design Systems, Inc. All Rights Reserved.

  • Terms of Use
  • Privacy
  • Cookie Policy
  • US Trademarks
  • Do Not Sell or Share My Personal Information