• 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. How to size transistors using SKILL

Stats

  • Locked Locked
  • Replies 6
  • Subscribers 143
  • Views 17869
  • 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

How to size transistors using SKILL

KrishnaPraveen
KrishnaPraveen over 15 years ago

Hi!

 I wanted to know how one can size a transistor schematic using SKILL.

 I am using these commands but I want to know how I can size the transistors, I read the CDSDOC but could not figure out:

windowID = dbOpenCellViewByType("test_schematic" "skillSchematic" "schematic" "schematic" "w")

masterID = dbOpenCellViewByType("analogLib" "nmos4" "symbol")

dbCreateInst(windowID masterID "I0" 1:1 "R0" 1)

These commands creates an nmos in the schematic view but I want to be able to size it.

 I tried doing this which I read in some code (though it does not make sense to me) :

windowID~>w="10u"

windowID~>l="130u"

 I think I am doing something fundamentally wrong.

I want to be able to size the transistors as I place them in the shematic.

 Any help is highly appreciated.

 

Thank You.

Krishna

 

  

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

    Krishna,

    You appear to be getting confused about what ID does what.

    First of all, the result of dbOpenCellViewByType is not a window id. It's a cellView id. Whilst the variable name doesn't matter, calling it windowID is just confusing.

    Secondly, you would want to set the w and l on an instance id (i.e. the return value ofdbCreateInst). Setting it on a cellView id makes no sense.

    So you probably want:

    cellViewID = dbOpenCellViewByType("test_schematic" "skillSchematic" "schematic" "schematic" "w")

    masterID = dbOpenCellViewByType("analogLib" "nmos4" "symbol")

    instID=dbCreateInst(cellViewID masterID "I0" 1:1 "R0" 1)

    instID~>w="10u"

    instID~>l=" 130u"

    For example.

    Regards,

    Andrew.

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

    Krishna,

    You appear to be getting confused about what ID does what.

    First of all, the result of dbOpenCellViewByType is not a window id. It's a cellView id. Whilst the variable name doesn't matter, calling it windowID is just confusing.

    Secondly, you would want to set the w and l on an instance id (i.e. the return value ofdbCreateInst). Setting it on a cellView id makes no sense.

    So you probably want:

    cellViewID = dbOpenCellViewByType("test_schematic" "skillSchematic" "schematic" "schematic" "w")

    masterID = dbOpenCellViewByType("analogLib" "nmos4" "symbol")

    instID=dbCreateInst(cellViewID masterID "I0" 1:1 "R0" 1)

    instID~>w="10u"

    instID~>l=" 130u"

    For example.

    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