Tuesday, January 06, 2009     Register | Login | Search | Contact Us
     

Many of you already received communications about the move of the Cadence user community into cadence.com. And many of you have already joined, with over 4000 registrations in the first two weeks.

The new Cadence Community enhances the ability of Cadence users to connect and collaborate. In addition to moving the community into cadence.com -- enabling single sign-on for community, Sourcelink and Cadence events -- the new site is organized around nine technology segments, giving you easy access to product information, training, forums and blogs. Some of the new features include:
  • Ability to respond to posts via e-mail
  • Technology-specific blogs
  • Latest Web 2.0 social networking capabilities
  • Public profile options
  • Private messaging
  • Friends lists
Visit the new Cadence Community today at www.cadence.com/community and join the discussions!

Registration note: Due to the scope of the enhancements and the new SSO registration system, we were not able to migrate existing cdnusers.org member accounts. So new registrations are required, but this enables a broader set of functionality we think you'll enjoy.

Forum note: Under the guidance of forum moderators, we have taken the 20+ cdnusers.org forums and consolidated them into 11 forums on the new site. Posts have been brought over so you can leverage that posting history. CDNusers forums will be set to read only starting 7/30, and cdnusers.org will be redirected to the new community on 8/4.

Best regards,
Mike and Tom

Michael A. Catrambone - Steering Committee Chairman
Distinguished Engineer
PCB/Mechanical
UTStarcom, Inc.

Tom Diederich
Cadence Community Manager
Home
Forums
Subject: Finding pin locations
Posting to forums is available to community members only.
Login or Register
Rate this topic:
   
Author Messages
ChrisS
Posts: 1
Online: User is Offline
3/13/2006 3:25 AM  
Hi, I use this to find an instance location: set instPtr [dbGetInstByName $instName] set loc [dbInstBox $instPtr] set llx [dbDBUToMicrons [lindex $loc 0]] set lly [dbDBUToMicrons [lindex $loc 1]] set urx [dbDBUToMicrons [lindex $loc 2]] set ury [dbDBUToMicrons [lindex $loc 3]] But, How do I find a pin location? Thanks Chris
elvis
Posts: 13
Online: User is Offline
3/13/2006 7:02 AM  
Hi Chris,

You can use:

dbForEachCellFterm

To go through each cell pin.

You can then pass each ftermPtr from dbForEachCellFterm to:

dbFtermLoc

To get the pin location.

set pinLoc [dbFtermLoc $ftermPtr]

Then lindex into pinLoc:

set x_loc [lindex $pinLoc 0]
set y_loc [lindex $pinLoc 1]

You'll also want to convert from db units to microns like you did in your cell example.

Good luck!

Elvis
lisiang
Moderator
Posts: 48
Online: User is Offline
3/13/2006 8:51 AM  
you can use the following tcl procedure to zoom into a instance pin

usage: z2ip some_hier/some_instance/some_pin


proc z2ip { instName {pinName ""} } {
        if { $pinName == "" } {
                set pinName [file tail $instName]
                set instName [file dirname $instName]
        } else {
                set instName $instName
        }
        set instPtr [dbGetInstByName $instName]
        set termPtr [dbGetTermByName $instPtr $pinName]
        set termInst [dbTermInst $termPtr]
        set termName [dbTermName $termPtr]
        set termInstName [dbTermInstName $termPtr]
        set termLoc [dbTermLoc $termPtr]
        set termBox [dbTermBox $termPtr]
        set termBox0 [expr [lindex $termBox 0] *[dbHeadMicronPerDBU] ]
        set termBox1 [expr [lindex $termBox 1] *[dbHeadMicronPerDBU] ]
        set termBox2 [expr [lindex $termBox 2] *[dbHeadMicronPerDBU] ]
        set termBox3 [expr [lindex $termBox 3] *[dbHeadMicronPerDBU] ]
        set termBox [list $termBox0 $termBox1 $termBox2 $termBox3]
        set termWidth [expr $termBox2 - $termBox0]
        set termHeight [expr $termBox3 - $termBox1]
        set termLayer [dbTermLayer $termPtr]
        set termLoc_X [expr [lindex $termLoc 0] *[dbHeadMicronPerDBU] ]
        set termLoc_Y [expr [lindex $termLoc 1] *[dbHeadMicronPerDBU] ]
        set x0 [expr $termLoc_X - 1]
        set y0 [expr $termLoc_Y - 1]
        set x1 [expr $x0 + 2]
        set y1 [expr $y0 + 2]
        zoomBox $x0 $y0 $x1 $y1
        set netPtr [dbTermNet $termPtr]
        puts "$instName pinLoc: $termLoc_X $termLoc_Y ; width: $termWidth height: $termHeight "
}

li siang


Posting to forums is available to community members only.
Login or Register



ActiveForums 3.6
     
Copyright 2006 Cadence Design Systems, Inc.