• 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. dbConcatTransform calculation error

Stats

  • Locked Locked
  • Replies 2
  • Subscribers 143
  • Views 14610
  • 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

dbConcatTransform calculation error

NickA
NickA over 5 years ago

I'm tryinng to compute teh location of a pin which is several levels down in the hierarchy...

Top layout 

    -> Analog instantiated in top with rotation R0 at (0,0)

           -> General instantiated in Analog with R0 at(819.22,136.62)

                  -> Osc instantiated in General with MX rotation at (1811.96,2255.96).

Inside Osc there is a pin at local coords (101.485,1.625). In the top level this appears at (2733.665,2390.955), ie (819.22+1811.96+101.485 , 136.62+2255.96-1.625). However, when I combine the General and Osc coordinates with dbConcatTrasform, it returns the Osc location as 2631.18,2119.34. The x-coord is correct, but the Y is not. It appears to be getting confused by the MX rotation.

I'm using Result = dbConcaatTransform(Arg1 Arg2), with the below values

Arg1: ((819.22 136.62) "R0" 1.0)

Arg2: ((1811.96 2255.96) "MX" 1.0)

Result: ((2631.18 2119.34) "MX" 1.0)

Any idea what I'm doing wrong?

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

    You have the arguments to the dbConcatTransform the wrong way around. You need to start bottom-up (left to right):

    Result = dbConcaatTransform(Arg2 Arg1)

    ((2631.18 2392.58) "MX" 1.0)

    Then if you do:

    dbTransformPoint(pinLoc Result)

    it outputs:

    (2732.665 2390.955)

    Andrew

    • Cancel
    • Vote Up +1 Vote Down
    • Cancel
Reply
  • Andrew Beckett
    Andrew Beckett over 5 years ago

    You have the arguments to the dbConcatTransform the wrong way around. You need to start bottom-up (left to right):

    Result = dbConcaatTransform(Arg2 Arg1)

    ((2631.18 2392.58) "MX" 1.0)

    Then if you do:

    dbTransformPoint(pinLoc Result)

    it outputs:

    (2732.665 2390.955)

    Andrew

    • Cancel
    • Vote Up +1 Vote Down
    • Cancel
Children
  • NickA
    NickA over 5 years ago in reply to Andrew Beckett

    Yes, that worked. Thanks very much!

    • 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