Cyclic Voltammetry (CV) — run it, calculate it, report it

CV sweeps the potential up and back at a constant scan rate v and records the current. From the peak positions, peak currents, and how they change with v you get: redox potentials, reversibility, the mechanism (diffusion- vs surface-controlled), a diffusion coefficient, capacitance, and how all of these evolve over cycles.

Do the b-value check first. Randles–Ševčík (and a “diffusion coefficient”) only make sense if the current is actually diffusion-controlled. If b ≈ 1 the process is surface/capacitive and you should report capacitance, not D.


What CV tells you

Read From
Redox potentials E°′ ≈ (E_pa + E_pc)/2 peak positions
Reversibility ΔE_p, i_pa/i_pc, E_p vs scan rate
Diffusion- vs surface-controlled b-value (log i_p vs log v)
Diffusion coefficient D Randles–Ševčík (i_p vs √v)
Capacitive vs diffusive split at a potential Dunn method
Capacitance area of the CV loop
Stability / activation change over cycles

How to run it — choosing parameters


Calculations

Diffusion coefficient — Randles–Ševčík (reversible, 25 °C)

i_p = 2.69e5 · n^(3/2) · A · D^(1/2) · C · v^(1/2)

Plot i_p vs √v (a straight line through ~0 confirms diffusion control) and take the slope:

D = ( slope / (2.69e5 · n^(3/2) · A · C) )²

n electrons, A electrode area (cm²), C bulk concentration (mol cm⁻³; 1 mM = 1e-6), v (V s⁻¹). For quasi-reversible/irreversible systems this constant changes (use the α-dependent form).

Reversibility diagnostics

What controls the current — the b-value

i_p = a · v^b     → plot log(i_p) vs log(v);  b = slope

b ≈ 0.5 diffusion-controlled · b ≈ 1.0 surface / capacitive · in between = mixed.

Capacitive vs diffusive split — Dunn method

At a fixed potential, across scan rates:

i(V) = k1·v + k2·√v      (k1·v = capacitive,  k2·√v = diffusion)
i(V)/√v = k1·√v + k2      → fit vs √v to get k1, k2 ; integrate the capacitive part over the sweep

Capacitance from the CV loop

C = (∮ i dV) / (2 · v · ΔV)          C_specific = C / m

∮ i dV = area enclosed by one full loop; ΔV = window; m = active mass. (Factor 2 = charge+discharge.)


Running several cycles

Running several samples


Presentation


Caveats


References to read (start with 1–2)

  1. N. Elgrishi et al., “A Practical Beginner’s Guide to Cyclic Voltammetry,” J. Chem. Educ. 95, 197–206 (2018). The clearest student introduction. https://doi.org/10.1021/acs.jchemed.7b00361
  2. A. J. Bard & L. R. Faulkner, Electrochemical Methods: Fundamentals and Applications, Wiley. The reference text — CV theory, Randles–Ševčík, reversibility.
  3. J. Wang, B. Dunn et al., “Pseudocapacitive contributions to electrochemical energy storage in TiO₂ (anatase) nanoparticles,” J. Phys. Chem. C 111, 14925 (2007). The k1·v + k2·√v separation.
  4. The Randles–Ševčík equation — overview and the exact constant/derivation: https://en.wikipedia.org/wiki/Randles%E2%80%93Sevcik_equation
  5. For pseudocapacitance vs battery behaviour: T. Brousse, D. Bélanger, J. W. Long, “To Be or Not To Be Pseudocapacitive?” J. Electrochem. Soc. 162, A5185 (2015).

Script: cv.py (in the Resources downloads) computes D (Randles–Ševčík), the b-value, the Dunn split, and capacitance, and plots the CV overlay + i_p-vs-√v fit. Run python cv.py for a demo.