• 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. problem with dbFindProp()....?

Stats

  • Locked Locked
  • Replies 3
  • Subscribers 143
  • Views 13898
  • 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

problem with dbFindProp()....?

Prabhu The ICL
Prabhu The ICL over 15 years ago

Hi, All! I am using Cadence IC514 version.
I found a code which increases the parameters by a given factor in schematic.(i.e width and length etc...)
My problem is as follows...
I have two instances pch_25_mac with
              1)    "w"="5u" and "l"="500n" and                 2)    "w"="5u" and "l"="280n"(this is the default value for this parameter)
dbFindProp(inst prop) is returning it's id on first instance but it is not when the parameter value is default value.
How to resolve this problem...
Here is the code that I have got....

procedure(CCS_ModifyWL(lib cell factor "ttn")
let((cv new propId)
 cv = dbOpenCellViewByType( lib cell "schematic" "" "a")
 when( cv
   foreach(inst cv~>instances
     ;foreach(prop list("w" "l")
     cdf1=cdfGetInstCDF(inst)
     foreach(prop list("w" "wf" "l" "wr" "lr" "sumW" "sumL")
     if(member(prop cdf1~>parameters~>name) then
       ;when(propId=dbFindProp(inst prop)
   propId = cdf1~>prop
         new = sprintf(nil "%g" cdfParseFloatString(propId~>

value)*factor)
         printf("Changing instance %s property %s from %s to %s.\n"
           inst~>name propId~>name propId~>value new)
         dbReplaceProp(inst propId~>name "string" new)
       );when the prop exists
     );foreach prop
   );foreach inst
   ;dbCheck(cv)
   ;dbSave(cv)
   ;dbClose(cv)
 ); when the cellview was opened ok
);let
);procedure


Thanks in Advance

Prabhakar. K --- The Layout Engineer
SoCtronics

 

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

    This is correct behaviour. dbFindProp only deals with db property objects. When CDF is being used, the default values are not (normally) stored on the instance, and so there is no property object to find.

    One way to handle this is to use cdfGetInstCDF (as you have) and then replace the line:

       propId = cdf1~>prop

    with

       propId = get(cdf1 prop)

    I didn't test the code, but I think it should all work with that change

    Regards,

    Andrew.

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

    This is correct behaviour. dbFindProp only deals with db property objects. When CDF is being used, the default values are not (normally) stored on the instance, and so there is no property object to find.

    One way to handle this is to use cdfGetInstCDF (as you have) and then replace the line:

       propId = cdf1~>prop

    with

       propId = get(cdf1 prop)

    I didn't test the code, but I think it should all work with that change

    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