To get layout default mos parameters value for pcell ??

V

vijayraj

Guest
Is there any command to get the pcell parameter value in layout. Actually I have a code to do it.. but for default values its showing as nill. If we change the value of user defined parameters it print the value. How to get those default values??
---
vijayraj
 
On 02/15/14 14:36, vijayraj wrote:
Is there any command to get the pcell parameter value in layout.
Actually I have a code to do it.. but for default values its showing
as nill. If we change the value of user defined parameters it print
the value. How to get those default values??
---
vijayraj

If you have an instance Id, you'd do:

instId~>master~>superMaster~>parameters~>w

for example to get the default pcell "w" parameter. To get all of them,
you could use:

foreach(mapcar prop instId~>master~>superMaster~>parameters~>value
list(prop~>name prop~>value)
)

This will return a list of name-value pairs.

Regards,

Andrew.
 

Welcome to EDABoard.com

Sponsor

Back
Top