Chapter 3: Butler-Volmer Kinetics
Understanding and implementing the Butler-Volmer equation for SPM battery simulation — the electrochemical reaction kinetics that govern lithium intercalation/deintercalation at particle surfaces.
Learning Materials
Three-Session Structure
| Session |
Topic |
Core Activity |
Output |
| 3.1 |
Physical Intuition |
Q&A on overpotential concept, dynamic equilibrium, j₀ dependence |
linear_approximation.png |
| 3.2 |
Mathematical Derivation |
Hand-derive arcsinh inversion, linear approximation, Newton iteration |
newton_bv_iteration.png |
| 3.3 |
Code Implementation |
Build BV function from scratch, visualize, verify |
bv_overpotential.png |
Key Concepts Covered
- Overpotential ($\eta$): Extra voltage needed to drive charge-transfer reactions across the interface energy barrier
- Butler-Volmer Forward: $j = j_0 \cdot [e^{\alpha F\eta/RT} - e^{-(1-\alpha)F\eta/RT}]$
- Exchange Current Density: $j_0 = k \cdot c_e^{1-\alpha} \cdot c_s^{\alpha} \cdot (c_{\max} - c_s)^{1-\alpha}$
- arcsinh Inversion ($\alpha$=0.5): $\eta = \frac{2RT}{F} \cdot \mathrm{arcsinh}(j / 2j_0)$
- Small-$\eta$ Linear Approximation: $\eta \approx \frac{RT}{F} \cdot \frac{j}{j_0}$ (valid for $|\eta| \ll RT/F$)
- Newton Iteration: Numerical solution for $\alpha \neq 0.5$ with quadratic convergence
Visualization Gallery
Next Chapter
→ Chapter 4: Full SPM Implementation & Voltage Coupling
Back to Roadmap
← Electrochemistry Study Home