HomeEngineering & Automotive › Capacitors in Series and Parallel Calculator

Capacitors in Series and Parallel Calculator

Computes the total capacitance of a list of capacitors connected all in parallel (sum) and all in series (reciprocal of the sum of reciprocals), and optionally the energy stored at a given voltage.

When to use

You have two or more capacitor values and need the equivalent capacitance for a parallel or a series connection.

Do not use when: The network mixes series and parallel groups (reduce it group by group), the components are resistors (use resistors-series-parallel), or you need charging time (use rc-time-constant).

Formula

parallel_total_uf = C1 + C2 + …; 1 / series_total_uf = 1/C1 + 1/C2 + …; energy_j = ½ × C_farad × voltage_v²

Capacitors combine the opposite way to resistors: parallel adds plate area (capacitances add), series adds plate separation (reciprocals add). In series each capacitor carries the same charge, so the smallest one sees the largest share of the voltage.

Inputs

ParameterTypeUnitRequiredDescription
capacitances_ufnumber_listµFyesCapacitor values in microfarads, comma-separated (1 nF = 0.001 µF, 1 pF = 1e-6 µF). All values must be positive.
voltage_vnumberVnoOptional voltage across the combination; enables the stored-energy outputs (E = ½ C V²). Range: ≥ 0

Outputs

OutputTypeUnitDescription
capacitor_countintegerHow many values were combined.
parallel_total_ufnumberµFC1 + C2 + … (always larger than the largest capacitor).
series_total_ufnumberµF1 / (1/C1 + 1/C2 + …) (always smaller than the smallest capacitor).
parallel_total_nfnumbernFParallel total in nanofarads.
series_total_nfnumbernFSeries total in nanofarads.
energy_parallel_jnumberJ½ × parallel_total × V² (only when voltage_v is given).
energy_series_jnumberJ½ × series_total × V² (only when voltage_v is given).

Example

10, 22 and 47 µF at 12 V: {"capacitances_uf":[10,22,47],"voltage_v":12}{"capacitor_count":3,"parallel_total_uf":79,"series_total_uf":5.99768,"parallel_total_nf":79000,"energy_parallel_j":0.005688,"energy_series_j":0.000432}

Two 100 nF capacitors: {"capacitances_uf":[0.1,0.1]}{"capacitor_count":2,"parallel_total_uf":0.2,"series_total_uf":0.05,"series_total_nf":50}

GET https://tttkmbb.com/api/v1/calculate/capacitors-series-parallel?capacitances_uf=10%2C22%2C47&voltage_v=12

Machine access

Sources

FAQ

Why put capacitors in series at all?

To raise the voltage rating (the applied voltage divides across them) or to obtain a small, non-standard value. Balancing resistors are usually needed so the voltage shares equally.

Do the units matter?

Any unit works as long as all values use it; the calculator assumes microfarads and also reports nanofarads. Energy needs farads, which is handled internally.

Related calculators