Electronic – Total capacitance for a ladder network with two capacitances

capacitancecircuit analysisladder

Is there a standard formula to determine the total capacitance of:

schematic

simulate this circuit – Schematic created using CircuitLab
Where C1 and C are different capacitances and for n number of C1 and C.
Maybe one can create an equivalent circuit design, but I can't quite see it.

Thanks!

Best Answer

For each segment, we have two capacitors in series which are then in parallel with a third, so we have a total capacitance of:

$$C_{leg} = C_1 + \frac{1}{\frac{1}{C_2} + \frac{1}{C_1}}$$

We can generalise this into an iterative formula for each leg if we assume that the leg consists of only the two capacitors, and the final leg consists of just \$C_1\$:

$$C_{leg}(m+1) = C_1 + \frac{1}{\frac{1}{C_2} + \frac{1}{C_{leg}(m)}} \quad\quad\quad\mathrm{where}\quad C_{leg}(0)=C_1$$

You can then simply iterate the formula \$n\$ times until you have the total capacitance - i.e. \$C_{total} = C_{leg}(n)\$.


Just for the fun of it, you will essentially you end up calculating iteratively something like this (example for n=4):

$$C_{total} = C_1 + \cfrac{1}{\frac{1}{C_2} + \cfrac{1}{C_1 + \cfrac{1}{\frac{1}{C_2} + \cfrac{1}{C_1 + \cfrac{1}{\frac{1}{C_2} + \cfrac{1}{C_1 + \cfrac{1}{\frac{1}{C_2} + \frac{1}{C_1}}}}}}}}$$