The Designer's Guide Community
Forum
Welcome, Guest. Please Login or Register. Please follow the Forum guidelines.
Apr 18th, 2024, 11:02pm
Pages: 1
Send Topic Print
Large capacitor values cause problems (Read 4820 times)
Lieutenant Columbo
Junior Member
**
Offline

Just one more thing
...

Posts: 19

Large capacitor values cause problems
Sep 08th, 2002, 1:06am
 
I would like to use very large capacitor values (c=1e19) to push the lowpass filter corner freq to DC and so as not to interfere with my loopgain sim.  Unfortunately, I cannot get Spectre to converge. I also tried 10e5 that did not work either. The highest value I can get it to work is 10e2, but at this value, my low-freq response is completely destroyed by the filter. What is going wrong? How can I fix it?
Back to top
 
 
View Profile WWW   IP Logged
Ken Kundert
Global Moderator
*****
Offline



Posts: 2384
Silicon Valley
Re: Large capacitor values cause problems
Reply #1 - Sep 8th, 2002, 1:11am
 
Here is the problem. Spectre uses a nodal formulation, where we add together the admittance of each component at a node. The admittance of the large capacitors is jwC, or at 10GHz with c=1e19 the admittance is Y=j1e29. When you add such a large number to a small number on a computer with finite precision, the small number will be lost. Such a large admittance would completely swamp out any other admittance connected to the same node.

You can avoid this problem by replacing the large capacitors with the an instance of the following subckt.

subckt bigcap (p n)
   parameters c
   T1 (p n a 0) transformer n1=1 n2=1
   C1 (a 0) capacitor c=c
ends

In this case, we separate the large capacitors from the other components and give them their own nodes. Then we count on the pivoting algorithms in the sparse matrix package to keep the errors under control.

Ken
Back to top
 
« Last Edit: Sep 14th, 2002, 12:06am by Ken Kundert »  
View Profile WWW   IP Logged
Ken Kundert
Global Moderator
*****
Offline



Posts: 2384
Silicon Valley
Re: Large capacitor values cause problems
Reply #2 - Sep 8th, 2002, 1:13am
 
One more thing. There are better ways to compute the loop gain of an opamp. See chapter 3 of my book (The Designer's Guide to SPICE and Spectre).

Ken
Back to top
 
 
View Profile WWW   IP Logged
Pages: 1
Send Topic Print
Copyright 2002-2024 Designer’s Guide Consulting, Inc. Designer’s Guide® is a registered trademark of Designer’s Guide Consulting, Inc. All rights reserved. Send comments or questions to editor@designers-guide.org. Consider submitting a paper or model.