happystar
Newbie level 6
Hi All
I am working on extracting parameters of an Cap model.
The model.inc file defines all the parasitic component values. Once I set the dimension value, the parasitics are calculated. But they are made by many many equations. It's hard for me to get the value immediately.
I include the model.inc in my .sp file, and define other connections. How can I output the values that calculated inside the model file? Everytime I run it, it gives me the error: command exited with non-zero status 1 , and with no further details. Could anyone tell me what's wrong with my file?
Thanks!!
The following is my .sp file
.LIB 'models/skew.file' stats
* Include global switch and corner parameter input file
.INCLUDE 'models/hspice.param'
* Include mosfet fixed corner parameter input file
.INCLUDE 'models/fixed_corner'
* Include device models
.INCLUDE 'models/mimcap.inc'
v1 in 0 dc 0 ac 1
.param l=6u w=6u c=-0.5 est=1 tlev1=2 tlev2=1 setind=-2 rsx=50 dtemp=0 par=1 bp=3
XMIMCAP in 0 0 mimcap l=l w=w c=c est=est tlev1=tlev1 tlev2=tlev2 setind=setind rsx=rsx dtemp=dtemp par=par bp=bp
* I pick out one param that is defined in mimcap.inc file.
.param r1='max(0.001,prbot)'
.AC DEC 10 1M 20G
*.options post
.probe AC r1
.END
I am working on extracting parameters of an Cap model.
The model.inc file defines all the parasitic component values. Once I set the dimension value, the parasitics are calculated. But they are made by many many equations. It's hard for me to get the value immediately.
I include the model.inc in my .sp file, and define other connections. How can I output the values that calculated inside the model file? Everytime I run it, it gives me the error: command exited with non-zero status 1 , and with no further details. Could anyone tell me what's wrong with my file?
Thanks!!
The following is my .sp file
.LIB 'models/skew.file' stats
* Include global switch and corner parameter input file
.INCLUDE 'models/hspice.param'
* Include mosfet fixed corner parameter input file
.INCLUDE 'models/fixed_corner'
* Include device models
.INCLUDE 'models/mimcap.inc'
v1 in 0 dc 0 ac 1
.param l=6u w=6u c=-0.5 est=1 tlev1=2 tlev2=1 setind=-2 rsx=50 dtemp=0 par=1 bp=3
XMIMCAP in 0 0 mimcap l=l w=w c=c est=est tlev1=tlev1 tlev2=tlev2 setind=setind rsx=rsx dtemp=dtemp par=par bp=bp
* I pick out one param that is defined in mimcap.inc file.
.param r1='max(0.001,prbot)'
.AC DEC 10 1M 20G
*.options post
.probe AC r1
.END