Extra Resources

Distributed Elements

Semi-infinite (planar infinite length) Warburg

Describes linear diffusion from a medium with length which can be approximated as infinite.

\[Z_{W} = \frac{A_W}{\sqrt{w}}(1-j)\]

Or

\[Z_{W} = \sqrt{\frac{R_d}{s C_d}} (\sqrt{R_{d}~sC_{d}})\]

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

\[A_W = \frac{RT}{F^{2}C_{o}\sqrt{D_o}}\]
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.

\[Z_{Wo} = \sqrt{\frac{R_d}{s C_d}} \coth(\sqrt{R_{d}~sC_{d}})\]

Or

\[Z_{Wo} = R \frac{coth(j \omega \tau)^{\phi}}{(j \omega \tau)_{\phi}}\]

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.

\[Z_{Ws} = \sqrt{\frac{R_d}{s C_d}} \tanh(\sqrt{R_{d}~sC_{d}})\]

Or

\[Z_{Ws} = R \frac{tanh(j \omega \tau)^{\phi}}{(j \omega \tau)_{\phi}}\]

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.

  1. Matt Lacey’s website provides an excellent description of diffusion impedance.

Books

  1. Electrochemical Impedance Spectroscopy by Mark Orazem and Bernard Tribollet

  2. Electrochemical Impedance Spectroscopy and its Applications by Andrzej Lasia

Videos

  1. Sam Cooper’s Introduction to Electrochemical Impedance Spectroscopy (EIS: Maths and Theory)

    1. Ramanathan’s NPTEL-NOC IITM lectures

  2. Across the Nanoverse’s Introduction to EIS