-
T. van der Sar authoredT. van der Sar authored
from matplotlib import pyplot as plt
import numpy as np
from math import pi
Solutions for lecture 13 exercises
Exercise 1: Energy, mass, velocity and cyclotron motion of electrons and holes
Electrons near the top of the valence band have a negative effective mass, their energy decreases as
Holes near the top of the valence band have a positive effective mass, their energy increases as
The equation of motion for an electron near the bottom of the conduction band is:
The solution to this equation is circular motion of cyclotron frequency of
A hole near the bottom of the conduction band will have the same chirality as an electron. The chirality would be just the opposite if we would consider the valence band (for both electrons and holes).
Exercise 2: holes in Drude and tight binding model
The Hall coefficient in the case where both electrons and holes are present in the system is
For electrons we find
The number of holes is defined as
??? hint "Small hint"
It is convenient to write the hole integral in terms of the electron energy.
Exercise 3: a 1D semiconductor
def dispersion(EG, tcb, tvb, N=100, kmax=np.pi/2):
a = 1
kx = np.linspace(-kmax, kmax, N)
Ecb = EG - 2*tcb*(np.cos(kx*a)-1)
Evb = 2*tvb*(np.cos(kx*a)-1)
# Plot dispersion
plt.figure(figsize=(6,5))
cb, = plt.plot(kx, Ecb, label="Conduction B.")
vb, = plt.plot(kx, Evb, label="Valence B.")
plt.xlabel('$k_x$', fontsize=20)
plt.ylabel('$E$', fontsize=20)
plt.title('E(k) for tcb:'+str(tcb)+' tvb:'+str(tvb))
plt.legend(handles=[cb, vb])
plt.show()
dispersion(10, 2, 8)
For the electrons in the conduction band we find
For the holes in the valence band we obtain
This approximation indicates the chemical potential is "well bellow" the conduction band and "well above" the valence band. This way, only a few electrons occupy the the states near the bottom of the conduction band and only a few holes occupy the states near the top of the valence band. This allows us the approximate the bottom of the conduction band and the top of the valence band as parabolic dispersions. In addition, the Fermi-Dirac distribution can be approximated as the Boltzman distribution.
The dispersions of the valence and conduction band are approximately equal to
For the density of states for both the electrons and holes we find
The electron density in the conduction band is given by
Analoguous, we find for the hole density
In the intrinsic regime