• 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. Finding all paths in a cell and increase width

Stats

  • Locked Locked
  • Replies 6
  • Subscribers 144
  • Views 16878
  • 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

Finding all paths in a cell and increase width

Lynks
Lynks over 11 years ago

I never used SKILL before but I decided to put one together to migrate a cell library. 

The final piece I am missing is finding all paths on a particular metal layer (e.g. M1) whose width is less than 0.1 um. Once found, I'd like to set the width of all those paths to be 0.1 um. I tried searching a bit but the solutions I found were assuming the paths are selected already. In my case, I am iterating through all the cells in my library and opening the layout view. By the way, when I mention 'paths', they show up as 'path segments' in Layout XL (created by using the wire command Ctrl+Shift+W). I am not sure what the difference is between these two.

Any help on the above (assuming I already have the appropriate cv opened through dbOpenCellViewByType()) would be great.

Aside from that, this forum provided nice solutions for changing metal layers and replacing vias with new ones, and I was able to use them in my migration script. 

  • Cancel
Parents
  • Andrew Beckett
    Andrew Beckett over 11 years ago

    thinPaths=setof(shape cv~>shapes member(shape~>objType '("path" "pathSeg")) && shape~>width<0.1)
    thinPaths~>width=0.1

    This will find all the shapes which are either path or pathSeg (the path segments you mention, which are the more modern way of handling connectivity) which are narrower than 0.1um. Then having found that list, it will set the width to 0.1um.

    Regards,

    Andrew.

    • Cancel
    • Vote Up 0 Vote Down
    • Cancel
Reply
  • Andrew Beckett
    Andrew Beckett over 11 years ago

    thinPaths=setof(shape cv~>shapes member(shape~>objType '("path" "pathSeg")) && shape~>width<0.1)
    thinPaths~>width=0.1

    This will find all the shapes which are either path or pathSeg (the path segments you mention, which are the more modern way of handling connectivity) which are narrower than 0.1um. Then having found that list, it will set the width to 0.1um.

    Regards,

    Andrew.

    • 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