Skip to content

Electrons in metals II

Exercises

Preliminary provocations

  1. Write down the expression for the total energy of particles with the density of states and the occupation number .

  2. Explain what happens if a material is heated up to its Fermi temperature (assuming that material where this is possible exists).

    The electronic heat capacity approaches .

  3. Why can we not use the Sommerfeld expansion with a Fermi energy of the order of the thermal energy?

    Thermal smearing is too significant and we can not accurately approximate the fraction of the excited electron with triangles anymore. Thus the Sommerfeld expansion breaks down.

  4. Is the heat capacity of a solid at temperatures near dominated by electrons or vibrations?

    Electrons.

Exercise 1: potassium

The Sommerfeld model provides a good description of free electrons in alkali metals such as potassium (element K), which has a Fermi energy of eV (data from Ashcroft, N. W. and Mermin, N. D., Solid State Physics, Saunders, 1976.).

  1. Check the Fermi surface database. Explain why potassium and (most) other alkali metals can be described well with the Sommerfeld model.

    Alkali metals mostly have a spherical Fermi surface. Their energy depends only on the magnitude of the Fermi wavevector.

  2. Calculate the Fermi temperature, Fermi wave vector and Fermi velocity for potassium.

  3. Why is the Fermi temperature much higher than room temperature?

    Electrons are fermions and obey the Pauli exclusion principle. As electrons cannot occupy the same state, they are forced to occupy higher energy states resulting in high Fermi energy and high Fermi temperature.

  4. Calculate the free electron density in potassium.

  5. Compare this with the actual electron density of potassium, which can be calculated by using the density, atomic mass and atomic number of potassium. What can you conclude from this?

    where is the density, is the Avogadro's constant, is molar mass and is the valence of potassium atom. Comparing total and free electron density, only few electrons are available for conduction which is roughly 1 free electron per potassium atom.

Exercise 2: a hypothetical material

A hypothetical metal has a Fermi energy and a density of states .

  1. Give an integral expression for the total energy of the electrons in this hypothetical material in terms of the density of states , the temperature and the chemical potential .

  2. Find the ground state energy at .

  3. In order to obtain a good approximation of the integral for non-zero , one can make use of the Sommerfeld expansion (the first equation is all you need and you can neglect the term). Using this expansion, find the difference between the total energy of the electrons for with that of the ground state.

  4. Now, find this difference in energy by calculating the integral found in 1 numerically. Compare your result with 3.

    Hint

    You can do numerical integration in python with scipy.integrate.quad(func, xmin, xmax)

  5. Calculate the heat capacity for in eV/K.

  6. Numerically compute the heat capacity by approximating the derivative of energy difference found in 4 with respect to . To this end, make use of the fact that Compare your result with 5.

mu = 5.2
kB = 8.617343e-5
T = 1000 #kelvin

import numpy as np
from scipy import integrate

np.seterr(over='ignore')

# Fermi-Dirac distribution
def f(E, T):
    return 1 / (np.exp((E - mu)/(kB*T)) + 1)

# Density of states
def g(E):
    return 2e10 * np.sqrt(E)

#integration function
def integral(E, T):
    return f(E, T)*g(E)*E

## Solve integral numerically using scipy's integrate
dE = integrate.quad(integral, 0, 1e1, args=(T))[0] - 0.8e10 * 5.2**(5./2)

dT = 0.001
dEplus = integrate.quad(integral, 0, 1e1, args=(T+dT))[0] - 0.8e10 * 5.2**(5./2)
dEmin = integrate.quad(integral, 0, 1e1, args=(T-dT))[0] - 0.8e10 * 5.2**(5./2)

CV = (dEplus - dEmin) / (2*dT);

print(f'dE = {dE:.4e} eV')
print(f'Cv = {CV:.4e} eV/K')

Exercise 3: graphene

One of the most famous recently discovered materials is graphene. It consists of carbon atoms arranged in a 2D honeycomb structure. In this exercise, we will focus on the electrons in bulk graphene. Unlike in metals, electrons in graphene cannot be treated as 'free'. However, close to the Fermi level, the dispersion relation can be approximated by a linear relation: Note that the here means that there are two energy levels at a specified . The Fermi level is set at .

  1. Make a sketch of the dispersion relation. What other well-known particles have a linear dispersion relation?

    import numpy as np
    import matplotlib.pyplot as plt
    x = np.linspace(-1, 1, 100)
    fig, ax = plt.subplots(figsize=(7, 5))
    ax.plot(x, x, 'b')
    ax.plot(x,-x, 'b')
    
    ax.spines['left'].set_position('center')
    ax.spines['bottom'].set_position(('data', 0.0))
    
    # Eliminate upper and right axes
    ax.spines['right'].set_color('none')
    ax.spines['top'].set_color('none')
    
    ax.set_xticks([])
    ax.set_yticks([])
    
    ax.set_xlabel(r'$\mid \vec k \mid$', fontsize=14)
    ax.set_ylabel(r'$\varepsilon$', fontsize=18, rotation='horizontal')
    ax.yaxis.set_label_coords(0.5,1)
    ax.xaxis.set_label_coords(1.0, 0.49)
    
  2. Using the dispersion relation and assuming periodic boundary conditions, derive an expression for the density of states of graphene. Do not forget spin degeneracy, and take into account that graphene has an additional two-fold 'valley degeneracy' (hence there is a total of a fourfold degeneracy instead of two). Your result should be linear with .

    Hint

    It is convenient to first start by only considering the positive energy contributions and calculate the density of states for it. Then account for the negative energy contributions by adding it to the density of states for the positive energies. You can also make use of .

    where is the spin degeneracy and is the valley degeneracy. If we account for the negative energies as well, we obtain

  3. At finite temperatures, assume that electrons close to the Fermi level (i.e. not more than below the Fermi level) will get thermally excited, thereby increasing their energy by . Calculate the difference between the energy of the thermally excited state and that of the ground state . To do so, show first that the number of electrons that will get excited is given by

    vs is a linear plot. Here, the region marked by is a triangle whose area gives the number of electrons that can be excited: From this it follows that the energy difference is given by

  4. Calculate the heat capacity as a function of the temperature .


Last update: October 30, 2023

Comments