• 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. SKILL command to get the schematic view associated with...

Stats

  • Locked Locked
  • Replies 1
  • Subscribers 143
  • Views 15617
  • 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

SKILL command to get the schematic view associated with a Symbol

Manikk0501
Manikk0501 over 9 years ago

Hi,

             Is there any SKILL which will fetch the Schematic view associated with the Symbol View?

Thanks and Regards,

Manikandan Kuzandhaivelu

  • Cancel
  • skillUser
    skillUser over 9 years ago

    Hi Manikandan,

    Yes, but the approach depends on a couple of things:

    1) what is your staring point, the symbol cellview (e.g. open in a window) or the library-level view (e.g. in the Library Browser) ?

    2) is the schematic view called "schematic", or do you need to allow for any name?

    Also, I will assume your version is IC6.1.x or ICADV12.x, and I'm assuming that the symbol and schematic reside in the same library (a reasonable assumption I think!)

    Assuming a symbol cellview starting point, e.g.

    symCv = dbOpenCellViewByType("mylib" "mycell" "symbol")

    You might find the schematic like this:

    ;; check that the schematic cellview exists (using the name "schematic" for the view name)
    when(ddGetObj(symCv~>libName symCv~>cellName "schematic")
    schCv = dbOpenCellViewByType(symCv~>libName symCv~>cellName "schematic")
    )

    The latter (schCv) is the cellview database id (cvId) of the schematic.
    Or, not assuming the name is "schematic" (but assuming there is just one such view), and assuming a library-level view starting point:

    
    schDd = car(
      setof(v ddGetObj("mylib" "mycell" "symbol")~>cell~>views
    member("sch.oa" v~>files~>name) ) )

    The latter (schDd) is the cell ddId of the schematic.

    Hopefully this gives you some ideas, and of course YMMV.

    Best regards,

    Lawrence.

    • 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