Solid-State Chemistry/Part 3/Metallic Bonding & Free Electron Model

3.2 Metallic Bonding & Free Electron Model

Metals exhibit high electrical and thermal conductivity, luster, and ductility. The free electron model treats valence electrons as a gas of non-interacting particles, providing surprisingly accurate predictions for many metallic properties.

Free Electron Model

In the free electron model (Sommerfeld model), conduction electrons move freely within the metal with the dispersion relation:

$$E = \frac{\hbar^2 k^2}{2m}$$

where $\hbar$ is the reduced Planck constant, $k$ is the wave vector, and $m$ is the electron mass.

Density of States

The number of electronic states per unit energy per unit volume in 3D is:

$$g(E) = \frac{V}{2\pi^2}\left(\frac{2m}{\hbar^2}\right)^{3/2}\sqrt{E}$$

The density of states grows as $\sqrt{E}$, meaning there are more available states at higher energies.

Fermi Energy

At $T = 0$, all states up to the Fermi energy $E_F$ are filled. The Fermi energy depends only on the electron density $n$:

$$E_F = \frac{\hbar^2}{2m}\left(3\pi^2 n\right)^{2/3}$$

Typical Fermi energies for metals are 2--12 eV, corresponding to Fermi temperatures$T_F = E_F/k_B$ of order $10^4$--$10^5$ K.

Fermi-Dirac Distribution

At finite temperature, electrons obey Fermi-Dirac statistics:

$$f(E) = \frac{1}{\exp\!\left(\frac{E - E_F}{k_BT}\right) + 1}$$

At $T = 0$, this is a step function: $f = 1$ for $E < E_F$ and$f = 0$ for $E > E_F$. At finite $T$, the step is smeared over an energy range $\sim k_BT$ around $E_F$.

Drude Model of Conductivity

The Drude model treats electrons as classical particles scattered with a mean free time $\tau$. The electrical conductivity is:

$$\sigma = \frac{ne^2\tau}{m}$$

The resistivity $\rho = 1/\sigma$ increases with temperature due to increased scattering (shorter $\tau$).

Electronic Heat Capacity

Only electrons near $E_F$ (within $\sim k_BT$) can be thermally excited. The electronic contribution to heat capacity is:

$$C_{el} = \gamma T = \frac{\pi^2}{2}\frac{Nk_B^2 T}{E_F}$$

This is much smaller than the classical prediction $\frac{3}{2}Nk_B$ because only a fraction $\sim k_BT/E_F$ of electrons participate in thermal excitation.

Video Lectures

17. Metals

Python: Fermi-Dirac Distribution & DOS

Visualization of the Fermi-Dirac distribution at different temperatures and the free-electron density of states with occupied state regions.

Fermi-Dirac Distribution & Density of States

Python

Plots f(E) at various temperatures and occupied DOS for copper

script.py82 lines

Click Run to execute the Python code

Code will be executed with Python 3 on the server

Fortran: Fermi Energy & Heat Capacity

Computes the Fermi energy, Fermi velocity, Fermi temperature, and electronic heat capacity coefficient for common metals using the free electron model.

Fermi Energy & Electronic Properties of Metals

Fortran

Free electron model calculations for Cu, Al, Ag, Au, Na, K

fermi_energy.f9066 lines

Click Run to execute the Fortran code

Code will be compiled with gfortran and executed on the server