• 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. Moving pCell Layout to 0:0 Origin

Stats

  • Locked Locked
  • Replies 4
  • Subscribers 143
  • Views 2522
  • 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

Moving pCell Layout to 0:0 Origin

Ynishant
Ynishant over 2 years ago

Hi, 

    I just created a pCell and it's doing everything it's supposed to do. However, I've discovered that the origin of the pCell in the layout is not at 0:0. This creates minor issues as when the pCell is instantiated and placed in the layout, it's inconvenient for the user to align it with existing shapes. Is there a way in SKILL to move the pCell origin to 0:0 without having to rewrite a significant amount of code? Since this is a pCell, I'd like to avoid using le commands. 

Regards,

Nishant

  • Cancel
  • Andrew Beckett
    Andrew Beckett over 2 years ago

    Hi Nishant,

    Well, the origin actually is at 0:0, but I assume what you really mean is that some point in the resulting layout isn't at 0:0 and you want it to be?

    You could use a loop over the ~>shapes (and maybe ~>instances - maybe other objects too; depends on your PCell code) and call dbMoveFig on each object with an appropriate transform to shift to the origin. If the coordinate the point that you want to be at the origin is x:y then the transformation would be list(-x:-y "R0" 1)

    Andrew

    • Cancel
    • Vote Up 0 Vote Down
    • Cancel
  • Ynishant
    Ynishant over 2 years ago

    I know that in AEL (used in ADS) there's a nice convenience function called deSetOrigin() which sets the origin for your pcell after you've coded everything (to force the origin of your pCell layout to 0:0)

    • Cancel
    • Vote Up 0 Vote Down
    • Cancel
  • Andrew Beckett
    Andrew Beckett over 2 years ago in reply to Ynishant
    Ynishant said:
    there's a nice convenience function called deSetOrigin()

    Well, there's a convenience function in SKILL too, leMoveCellViewOrigin, but it's not intended for PCells. The assumption is that in PCells you think about the coordinates as part of the design process, but adding the loop I mentioned previously is easy enough too.

    Andrew

    • Cancel
    • Vote Up +1 Vote Down
    • Cancel
  • Ynishant
    Ynishant over 2 years ago in reply to Andrew Beckett

    Hi Andrew, 

                    Thank you, you have the answer as always! This seems to work:

                     current_center = centerBox(cvId~>bBox)
                     foreach(shape cvId~>shapes dbMoveFig(shape cvId list(-nth(0,current_center):-nth(1,current_center) "R0")))

    Regards,

    Nishant. 

    • Cancel
    • Vote Up 0 Vote Down
    • Cancel

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