[SOLVED] [Spectre calculator] How to calculate input capacitance of a 2 ports network.

Status
Not open for further replies.

ktx2222

Member level 5
Joined
Jan 8, 2014
Messages
81
Helped
2
Reputation
4
Reaction score
2
Trophy points
8
Activity points
613
Hi everyone,

I am a newbie in Cadence spectre simulator. I have a 2 ports network and I try to plot the input equivalent capacitance vs. frequency. In ADS I use equation: Cin = imag(Y11)/2/pi/freq. But I don't know how to insert that equation into Cadence. I only used a basic SP analysis. I have read many thread but I cannot find the answer.

Please give me a detail instruction. I really appreciate your advice.

 

Hi, i usually measure cap with ac analysis in cadence, but your way is also working

So, i've created cellview:




ADE window -> Tools -> Calculator

Code:
value(imag(ypm('sp 1 1)) VAR("Freq")   )/(twoPi*VAR("Freq"))

You can place just freq value instead of VAR("Freq").

That's my result:
Code:
1.001E-12
 
Hi Sarge,

Thank for your help. Now I can get the discrete value.

Anyway, I have one more question: Can I do it with a range of frequency? Because I think most of circuit has the input capacitance depends on frequency. So I want to plot the Cin in a range of frequency.
 
if you want to plot frequency dependence of it in sp:
Code:
imag(ypm('sp 1 1))/(xval(imag(ypm('sp 1 1))) * twoPi )
 
Thank you so much, sarge! It really help me.
 

Status
Not open for further replies.
Cookies are required to use this site. You must accept them to continue using the site. Learn more…