Extra Resources
Distributed Elements
Semi-infinite (planar infinite length) Warburg
Describes linear diffusion from a medium with length which can be approximated as infinite.
Or
Where \(s = j \omega\) with \(j\) being the imaginary unit and \(\omega\) the angular frequency. \(A_{W}\) has units of \(\Omega s^{-0.5}\), \(R\) has units of Ohms (\(\Omega\)) and \(C\) has units of Farads (\(F\)). And
w = 2 * torch.pi * freq
s = 1j * w
Zw = Aw/torch.sqrt(w) * (1-1j)
# Or
Zw = torch.sqrt(Rd/s*Cd) * (torch.sqrt(Rd * s*Cd))
Finite length diffusion with reflective boundary
Describes the reaction of mobile active species distributed in a layer with finite length, terminated by an impermeable boundary.
Or
Where \(\phi\) = 0.5
w = 2 * torch.pi * freq
s = 1j * w
ZWs = torch.sqrt(Rd/s*Cd) * 1/torch.tanh(torch.sqrt(Rd * s*Cd))
Finite length diffusion with transmissive boundary
Describes the reaction of mobile active species distributed in a layer with finite length, terminated by an impermeable boundary.
Or
Where \(\phi\) = 0.5
w = 2 * torch.pi * freq
s = 1j * w
ZWs = torch.sqrt(Rd/s*Cd) * torch.tanh(torch.sqrt(Rd * s*Cd))
Resources on the web
1. Research Solutions and Resources LLC has a section on electrochemical impedance spectroscopy (EIS) which explains several concepts related to the study of impedance such as fitting equivalent circuits to EIS data, the constant phase element (CPE), diffusion, porous electrodes to mention a few. There are also links to several other resources.
Matt Lacey’s website provides an excellent description of diffusion impedance.
Books
Electrochemical Impedance Spectroscopy by Mark Orazem and Bernard Tribollet
Electrochemical Impedance Spectroscopy and its Applications by Andrzej Lasia
Videos
Sam Cooper’s Introduction to Electrochemical Impedance Spectroscopy (EIS: Maths and Theory)
Ramanathan’s NPTEL-NOC IITM lectures
Across the Nanoverse’s Introduction to EIS