Skip to content
Snippets Groups Projects
Commit 8fe2f948 authored by Anton Akhmerov's avatar Anton Akhmerov
Browse files

Use \varepsilon, remove DOS, add Fermi sea

parent 436e8b2e
No related branches found
No related tags found
1 merge request!87lecture_4
Pipeline #51870 passed
......@@ -47,11 +47,11 @@ Because of the periodic boundary conditions, $\mathbf{k}$ must take discrete val
The plane waves have eigenenergies given by the dispersion relation
$$
\epsilon(\mathbf{k}) = \frac{\hbar^2 \mathbf{k}^2}{2m},
\varepsilon(\mathbf{k}) = \frac{\hbar^2 \mathbf{k}^2}{2m},
$$
with $m$ being the mass of the electron.
Let us plot $\epsilon(k)$ as a function of $k$ for a 1D system:
Let us plot $\varepsilon(k)$ as a function of $k$ for a 1D system:
```python
kf = 3;
......@@ -72,7 +72,7 @@ ax.set_xlim(-3.75, 3.75);
ax.set_ylim(0.0, 11);
ax.set_xlabel(r"$k \: \left[ \frac{2 \pi}{L} \right]$");
ax.set_ylabel(r"$\epsilon$");
ax.set_ylabel(r"$\varepsilon$");
ax.set_xticklabels([""] + ks.tolist() + [""]);
ax.set_yticks([]);
......@@ -86,16 +86,16 @@ In addition to having a quadratic dispersion and not linear dispersion, electron
As a result, the occupation of electron states is described by the Fermi-Dirac distribution
$$
n_{F}(\beta(\epsilon-\mu)) = \frac{1}{e^{\beta(\epsilon-\mu)}+1}.
n_{F}(\beta(\varepsilon-\mu)) = \frac{1}{e^{\beta(\varepsilon-\mu)}+1}.
$$
Here $\beta = 1/k_{B}T$, $\epsilon$ is the energy, and $\mu$ the _chemical potential_ of an electron.
Here $\beta = 1/k_{B}T$, $\varepsilon$ is the energy, and $\mu$ the _chemical potential_ of an electron.
The Fermi-Dirac distribution defines the number of electrons in the system:
$$
\begin{align}
N &= 2 \sum_{\mathbf{k}} n_{F}(\beta(\epsilon-\mu))\\
&= 2 \left( \frac{L}{2 \pi} \right)^3 \int n_{F}(\beta(\epsilon-\mu))\mathrm{d} \mathbf{k}.
N &= 2 \sum_{\mathbf{k}} n_{F}(\beta(\varepsilon-\mu))\\
&= 2 \left( \frac{L}{2 \pi} \right)^3 \int n_{F}(\beta(\varepsilon-\mu))\mathrm{d} \mathbf{k}.
\end{align}
$$
......@@ -109,7 +109,7 @@ The factor 2 here accounts for the number of distinct electron states per $\math
Similar to the tota energy of phonons in the Debye model, the expression for the total energy of electrons is
$$
E = 2_s \left( \frac{L}{2 \pi} \right)^3 \int \epsilon(\mathbf{k}) n_{F}(\beta(\epsilon-\mu)) \mathrm{d} \mathbf{k}.
E = 2_s \left( \frac{L}{2 \pi} \right)^3 \int \varepsilon(\mathbf{k}) n_{F}(\beta(\varepsilon-\mu)) \mathrm{d} \mathbf{k}.
$$
There are only two differences: the distribution is $n_{F}$ instead of $n_B$ and the degeneracy is 2 instead of 3.
......@@ -117,9 +117,9 @@ In the table below we summarize the properties of both phonons and electrons.
| | Phonons | Electrons |
| - | - | - |
| Dispersion relation | $\omega = v_s \lvert\mathbf{k}\rvert$ | $\epsilon = \frac{\hbar^2\mathbf{k}^2}{2m}$ |
| Dispersion relation | $\omega = v_s \lvert\mathbf{k}\rvert$ | $\varepsilon = \frac{\hbar^2\mathbf{k}^2}{2m}$ |
| Statistics | Bose-Einstein | Fermi-Dirac |
| $n(\epsilon) =$ | $1/(e^{\beta \epsilon} - 1)$ | $1/(e^{\beta(\epsilon - \mu)} + 1)$ |
| $n(\varepsilon) =$ | $1/(e^{\beta \varepsilon} - 1)$ | $1/(e^{\beta(\varepsilon - \mu)} + 1)$ |
| Degeneracy per $\mathbf{k}$ | 3 (polarization) | 2 (spin) |
| Total particle number | temperature-dependent | constant |
......@@ -131,9 +131,9 @@ The number of electrons, on the other hand, stays the same: the electrons may no
To determine the chemical potential $\mu$ let us consider a 2D system with zero temperature and a finite number of electrons.
At $T=0$, the Fermi-Dirac distribution becomes a step function
$$
n_{F}(\beta(\epsilon-\mu)) = \Theta(-(\epsilon-\epsilon_F)).
n_{F}(\beta(\varepsilon-\mu)) = \Theta(-(\varepsilon-\varepsilon_F)).
$$
The chemical potential at $T=0$ is called the _Fermi energy_ $\epsilon_F$.
The chemical potential at $T=0$ is called the _Fermi energy_ $\varepsilon_F$.
All electron states with lower energies are occupied, and all the states with higher energies are empty.
In the reciprocal space, the occupied $\mathbf{k}$-states form a circle (in 1D it is a line and in 3D a sphere).
......@@ -162,17 +162,9 @@ draw_classic_axes(ax, xlabeloffset = .8, ylabeloffset = 0.2);
```
For $T > 0$ the chemical potential is called the Fermi level and is not denoted as $\epsilon_F$.
Another way to describe $\epsilon_F$ is as the energy of the highest occupied state at $T = 0$.
All states occupied up until the Fermi energy are a part of a _Fermi sea_.
In a similar fashion, we define the _Fermi wavevector_ $\mathbf{k}_F$.
This is a wavevector that corresponds to $\epsilon_F$ through the dispersion relation:
$$
\epsilon_F = \frac{\hbar^2 \mathbf{k}_F^2}{2m}.
$$
To get a better understanding of these concepts, we have plotted the energy as a function of $k$ for a 1D system at $T=0$.
We see that all states up until $k_F$ are occupied and all states beyond that are empty.
A good metaphor for describing this state of many electrons is a sea: electrons occupy a finite area in reciprocal space, starting from the "deepest" points with the lowest energy all the way up to the chemical potential—also called Fermi level.
The border of the Fermi sea is called the Fermi surface (you should notice a pattern here), and in the free electron model it is a sphere with the radius equal to *Fermi momentum*.
To clarify the relation between these concepts let us take a look at the dispersion relation in 1D:
```python
kf = 3.0;
......@@ -207,6 +199,11 @@ ax.set_ylim(0.0, kf*kf*extrapol);
draw_classic_axes(ax, xlabeloffset=.6);
```
By using the dispersion relation, we arrive to the relation
$$
\varepsilon_F = \frac{\hbar^2 \mathbf{k}_F^2}{2m}.
$$
We mentioned earlier that the occupied states at $T = 0$ form a circle in the reciprocal space (or sphere or line depending on the dimensionality of the system).
This circle is called the _Fermi surface_.
The shape of the Fermi surface is determined by the dispersion relation.
......@@ -222,11 +219,12 @@ $$
## Density of states
Our aim is to compute the density of states (often written as DOS).
Our aim is to compute the density of states.
The density of states is the number of states per energy interval.
Therefore, the density of states is related to the *total* number of states $N(\epsilon)$ through
Therefore, the density of states is related to the *total* number of states $N(\varepsilon)$ through
$$
g(\epsilon) = \frac{dN}{d\epsilon}.
g(\varepsilon) = \frac{dN}{d\varepsilon}.
$$
Let us calculate the density of states for a 3D system.
Because the dispersion of the free electron is isotropic[^2], spherical symmetry can be assumed.
......@@ -240,31 +238,31 @@ N &\overset{\mathrm{3D}}{=}2_s \left(\frac{L}{2\pi}\right)^3\int\mathrm{d}{\math
$$
where $\left(\frac{L}{2\pi}\right)^3$ is once again the density of points in k-space.
We rewrite the expression above by substituting $k=\frac{\sqrt{2m\epsilon}}{\hbar}$ and $\mathrm{d}k=\sqrt{\frac{m}{2 \epsilon}}\frac{1}{\hbar}$:
We rewrite the expression above by substituting $k=\frac{\sqrt{2m\varepsilon}}{\hbar}$ and $\mathrm{d}k=\sqrt{\frac{m}{2 \varepsilon}}\frac{1}{\hbar}$:
$$
\begin{align}
N &=\frac{V}{\pi^2}\int\frac{2m \epsilon}{\hbar^3}\sqrt{\frac{m}{2\epsilon}}\mathrm{d}\epsilon\\
&=\frac{Vm^{3/2}}{\pi^2\hbar^3}\int\sqrt{2\epsilon}\ \mathrm{d}\epsilon
N &=\frac{V}{\pi^2}\int\frac{2m \varepsilon}{\hbar^3}\sqrt{\frac{m}{2\varepsilon}}\mathrm{d}\varepsilon\\
&=\frac{Vm^{3/2}}{\pi^2\hbar^3}\int\sqrt{2\varepsilon}\ \mathrm{d}\varepsilon
\end{align}
$$
Therefore we find for the density of states:
$$
\begin{align}
g(\epsilon) &= \frac{ \mathrm{d}N}{ \mathrm{d}\epsilon}\\
& =\frac{Vm^{3/2}\sqrt{2\epsilon}}{\pi^2\hbar^3} \propto\sqrt{\epsilon}
g(\varepsilon) &= \frac{ \mathrm{d}N}{ \mathrm{d}\varepsilon}\\
& =\frac{Vm^{3/2}\sqrt{2\varepsilon}}{\pi^2\hbar^3} \propto\sqrt{\varepsilon}
\end{align}
$$
We observe that the density of states of a 3D solid scales with a square root of energy:
$$
g(\epsilon) \propto\sqrt{\epsilon}
g(\varepsilon) \propto\sqrt{\varepsilon}
$$
In a similar fashion, we find that the density of states for a 1D and 2D system is:
* 1D: $g(\epsilon) = \frac{2 L}{\pi} \frac{ \mathrm{d}k}{ \mathrm{d}\epsilon} \propto 1/\sqrt{\epsilon}$
* 2D: $g(\epsilon) = \frac{k L^2}{\pi} \frac{ \mathrm{d}k}{ \mathrm{d}\epsilon} \propto \text{constant}$
* 1D: $g(\varepsilon) = \frac{2 L}{\pi} \frac{ \mathrm{d}k}{ \mathrm{d}\varepsilon} \propto 1/\sqrt{\varepsilon}$
* 2D: $g(\varepsilon) = \frac{k L^2}{\pi} \frac{ \mathrm{d}k}{ \mathrm{d}\varepsilon} \propto \text{constant}$
Below we have plotted the density of states for a 1D, 2D and 3D system.
......@@ -277,28 +275,28 @@ ax.plot(E, 1/np.sqrt(E), label = '1D')
ax.plot(E, 9*np.ones(len(E)), label = '2D')
ax.plot(E, 15*np.sqrt(E), label = '3D')
ax.set_ylabel(r"$g(\epsilon)$")
ax.set_xlabel(r"$\epsilon$")
ax.set_ylabel(r"$g(\varepsilon)$")
ax.set_xlabel(r"$\varepsilon$")
ax.legend()
draw_classic_axes(ax, xlabeloffset=.2)
```
## Relationship between the Fermi energy and the system parameters
We would like to relate the Fermi energy $\epsilon_{F}$ to the system parameters the number of electrons in the system ($N$) and the volume of the box $V = L^3$.
We would like to relate the Fermi energy $\varepsilon_{F}$ to the system parameters the number of electrons in the system ($N$) and the volume of the box $V = L^3$.
To do so, we calculate the number of electrons in the system at $T = 0$ using the previously found density of states:
$$
\begin{align}
N &= \int \limits_0^{\infty} n_{F}(\beta(\epsilon-\mu)) g(\epsilon) \mathrm{d}\epsilon\\
&\overset{\mathrm{T = 0}}{=}\int \limits_0^{\epsilon_F}g(\epsilon)\mathrm{d}\epsilon \\
&\overset{\mathrm{3D}}{=} \frac{V}{3\pi^2\hbar^3}(2m\epsilon_F)^{3/2}.
N &= \int \limits_0^{\infty} n_{F}(\beta(\varepsilon-\mu)) g(\varepsilon) \mathrm{d}\varepsilon\\
&\overset{\mathrm{T = 0}}{=}\int \limits_0^{\varepsilon_F}g(\varepsilon)\mathrm{d}\varepsilon \\
&\overset{\mathrm{3D}}{=} \frac{V}{3\pi^2\hbar^3}(2m\varepsilon_F)^{3/2}.
\end{align}
$$
Inverting the above equation yields:
$$
\epsilon_{F} = \frac{\hbar^2}{2m}\left( 3\pi^2\frac{N}{V} \right)^{\frac{2}{3}}.
\varepsilon_{F} = \frac{\hbar^2}{2m}\left( 3\pi^2\frac{N}{V} \right)^{\frac{2}{3}}.
$$
We use the dispersion relation ($\epsilon(\mathrm{k}) = \frac{\hbar^2 \mathbf{k}^2}{2m}$) to express the Fermi wavevector $k_{F}$:
We use the dispersion relation ($\varepsilon(\mathrm{k}) = \frac{\hbar^2 \mathbf{k}^2}{2m}$) to express the Fermi wavevector $k_{F}$:
$$
k_F = \left( 3\pi^2\frac{N}{V} \right)^{\frac{1}{3}}.
$$
......@@ -307,10 +305,10 @@ Using the Fermi wavevector, we calculate _Fermi wavelength_ $\lambda_F\equiv 2\p
## Extension to finite temperatures
We now extend our discussion to $T > 0$ by taking a close look at the Fermi-Dirac distribution
$$
n_{F}(\beta(\epsilon-\mu)) = \frac{1}{e^{\beta(\epsilon-\mu)}+1}.
n_{F}(\beta(\varepsilon-\mu)) = \frac{1}{e^{\beta(\varepsilon-\mu)}+1}.
$$
The Fermi-Dirac distribution $n_{F}(\beta(\epsilon-\mu))$ for $T = 0$ and $T > 0$ are shown below.
For both cases we have the same chemical potential $\mu = \epsilon_F$.
The Fermi-Dirac distribution $n_{F}(\beta(\varepsilon-\mu))$ for $T = 0$ and $T > 0$ are shown below.
For both cases we have the same chemical potential $\mu = \varepsilon_F$.
```python
fig = pyplot.figure()
......@@ -321,20 +319,20 @@ beta = 20
ax.plot(xvals, xvals < mu, ls='dashed', label='$T=0$')
ax.plot(xvals, 1/(np.exp(beta * (xvals-mu)) + 1),
ls='solid', label='$T>0$')
ax.set_xlabel(r'$\epsilon$')
ax.set_ylabel(r'$n_{F}(\epsilon, T)$')
ax.set_xlabel(r'$\varepsilon$')
ax.set_ylabel(r'$n_{F}(\varepsilon, T)$')
ax.set_yticks([0, 1])
ax.set_yticklabels(['$0$', '$1$'])
ax.set_xticks([mu])
ax.set_xticklabels([r'$\mu = \epsilon_{F}$'])
ax.set_xticklabels([r'$\mu = \varepsilon_{F}$'])
ax.set_ylim(-.1, 1.1)
ax.legend()
draw_classic_axes(ax)
pyplot.tight_layout()
```
We observe that at finite temperature $T>0$, thermal excitations _smear out_ $n_{F}(\beta(\epsilon-\mu))$.
Below we plot $g(\epsilon) n_{F}(\beta(\epsilon-\mu))$ at $T = 0$ (blue + orange shaded area) and $T > 0$ (orange shaded area) alongside the 3D solid density of states to further illustrate the smearing effect.
We observe that at finite temperature $T>0$, thermal excitations _smear out_ $n_{F}(\beta(\varepsilon-\mu))$.
Below we plot $g(\varepsilon) n_{F}(\beta(\varepsilon-\mu))$ at $T = 0$ (blue + orange shaded area) and $T > 0$ (orange shaded area) alongside the 3D solid density of states to further illustrate the smearing effect.
```python
E = np.linspace(0, 2, 500)
......@@ -362,13 +360,13 @@ ax.set_xlabel(r"$ε$")
draw_classic_axes(ax, xlabeloffset=.2)
```
In order to estimate the fraction of thermally excited electrons, we approximate the blue and orange areas by triangles.
The validity of the approximation depends on the ratio between the thermal energy $E_{\mathrm{T}} = k_{B}T$ and the Fermi energy $\epsilon_{F}$.
The validity of the approximation depends on the ratio between the thermal energy $E_{\mathrm{T}} = k_{B}T$ and the Fermi energy $\varepsilon_{F}$.
If the ratio is large, there is a lot of thermal smearing and the approximation breaks down because the area cannot be accurately approximated by triangles.
However, if the ratio is small, there is barely any thermal smearing, and $n_{F}(\beta(\epsilon-\mu))$ is approximately a step function.
However, if the ratio is small, there is barely any thermal smearing, and $n_{F}(\beta(\varepsilon-\mu))$ is approximately a step function.
In such a case, the approximation holds.
The approximation was first used by Sommerfeld, hence the name *Sommerfeld expansion*.
**Example**: Copper's Fermi energy is $\epsilon_{F} ~ 7$ eV.
**Example**: Copper's Fermi energy is $\varepsilon_{F} ~ 7$ eV.
The electron temperature would need to be $\sim 70 000$K in order to gain similar energy through thermal excitations!
Therefore at room temperature ($T = 300 \: \rm{K}$) there is barely any thermal smearing.
Hence, the Sommerfeld expansion is very accurate in this case.
......@@ -379,15 +377,15 @@ Hence, the Sommerfeld expansion is very accurate in this case.
We now use the Sommerfeld expansion to approximate the electronic contribution to the heat capacity $C_e$.
At finite temperature, the electrons from the top triangle (blue) excite to the bottom triangle (orange).
The base of the triangle scales with $k_\mathrm{B}T$ and the height with $ g(\epsilon_F)$.
Hence the number of excited electrons is $N_\mathrm{exc} \approx g(\epsilon_F)k_\mathrm{B}T$ (neglecting constants not depending on $\epsilon_{F}$).
The base of the triangle scales with $k_\mathrm{B}T$ and the height with $ g(\varepsilon_F)$.
Hence the number of excited electrons is $N_\mathrm{exc} \approx g(\varepsilon_F)k_\mathrm{B}T$ (neglecting constants not depending on $\varepsilon_{F}$).
These electrons gain $k_\mathrm{B}T$ of thermal energy, such that the total extra energy is
$$
\begin{align}
E(T) &= E(T = 0) + N_\mathrm{exc}k_\mathrm{B}T\\
&\approx E(T = 0) + g(\epsilon_F)k_\mathrm{B}^2T^2.
&\approx E(T = 0) + g(\varepsilon_F)k_\mathrm{B}^2T^2.
\end{align}
$$
......@@ -401,7 +399,7 @@ C_e &= \frac{ \mathrm{d}E}{ \mathrm{d}T}\\
&\propto T,
\end{align}
$$
where we used $N=\frac{2}{3}\epsilon_Fg(\epsilon_F)$ and defined the _Fermi temperature_ $T_F \equiv \frac{\epsilon_F}{k_\mathrm{B}}$.
where we used $N=\frac{2}{3}\varepsilon_Fg(\varepsilon_F)$ and defined the _Fermi temperature_ $T_F \equiv \frac{\varepsilon_F}{k_\mathrm{B}}$.
How does $C_e$ relate to the phonon contribution $C_\mathrm{p}$?
......@@ -411,25 +409,25 @@ How does $C_e$ relate to the phonon contribution $C_\mathrm{p}$?
## Useful trick: scaling of $C$
The behavior of $C$ can be quickly memorized and understood using the following mnemonic rule:
> Particles within an energy range of ~$k_{B}T$ to the Fermi energy $\epsilon_F$ become thermally excited, and each carry an extra energy $k_{B}T$.
> Particles within an energy range of ~$k_{B}T$ to the Fermi energy $\varepsilon_F$ become thermally excited, and each carry an extra energy $k_{B}T$.
The contribution to the energy through thermal excitations can be calculated by triangulating the thermal smearing of the density of states around the Fermi energy $\epsilon_F$.
The contribution to the energy through thermal excitations can be calculated by triangulating the thermal smearing of the density of states around the Fermi energy $\varepsilon_F$.
The triangulated area is proportional to the number of excited electrons $N_{exc}$.
Let us illustrate this with two examples:
### Example 1: 3D free electrons
In 3D, $g(\epsilon_F)$ is roughly constant.
Thus the total energy obtained through thermal excitation is proportional to $T \times \left( T\times g(\epsilon_F) \right)$, from which it follows that $C_e \propto T$.
In 3D, $g(\varepsilon_F)$ is roughly constant.
Thus the total energy obtained through thermal excitation is proportional to $T \times \left( T\times g(\varepsilon_F) \right)$, from which it follows that $C_e \propto T$.
### Example 2: graphene
Graphene has a Fermi energy of $\epsilon_F = 0$ and a density of states $g(\epsilon) \propto \epsilon$.
Therefore, within the energy range of $k_BT$, $g(\epsilon) \propto k_BT$.
Graphene has a Fermi energy of $\varepsilon_F = 0$ and a density of states $g(\varepsilon) \propto \varepsilon$.
Therefore, within the energy range of $k_BT$, $g(\varepsilon) \propto k_BT$.
Thus the total energy is proportional to $T \times T^2$ and the heat capacity $C_e \propto T^2$.
## Conclusions
1. The Sommerfeld free electron model treats electrons as free particles with energy dispersion $\epsilon = \frac{\hbar^2k^2}{2m}$.
2. The density of states (DOS) can be derived from the dispersion relation.
1. The Sommerfeld free electron model treats electrons as free particles with energy dispersion $\varepsilon = \frac{\hbar^2k^2}{2m}$.
2. The density of states $g(\varepsilon)$ can be derived from the dispersion relation.
This procedure is general, and analogous to e.g. that for phonons.
3. The Fermi-Dirac distribution describes the probability of an electron state to be occupied.
4. The electronic contribution to the heat capacity is linear with $T$.
......@@ -440,13 +438,13 @@ Thus the total energy is proportional to $T \times T^2$ and the heat capacity $C
### Warm-up questions
1. List the differences between electrons and phonons from your memory.
2. Write down the expression for the total energy of particles with the density of states $g(\epsilon)$ and the occupation number $n_{F}(\beta(\epsilon - \mu))$.
2. Write down the expression for the total energy of particles with the density of states $g(\varepsilon)$ and the occupation number $n_{F}(\beta(\varepsilon - \mu))$.
3. Explain what happens if a material is heated up to its Fermi temperature (assuming that material where this is possible exists).
4. Why can we not use the Sommerfeld expansion with a Fermi energy of the order of the thermal energy?
5. Is the heat capacity of a solid at temperatures near $T=0$ dominated by electrons or phonons?
### 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 $\epsilon_{F} = 2.12$ eV (data from Ashcroft, N. W. and Mermin, N. D., Solid State Physics, Saunders, 1976.).
The Sommerfeld model provides a good description of free electrons in alkali metals such as potassium (element K), which has a Fermi energy of $\varepsilon_{F} = 2.12$ eV (data from Ashcroft, N. W. and Mermin, N. D., Solid State Physics, Saunders, 1976.).
1. Check the [Fermi surface database](http://www.phys.ufl.edu/fermisurface/). Explain why potassium and (most) other alkali metals can be described well with the Sommerfeld model.
2. Calculate the Fermi temperature, Fermi wave vector and Fermi velocity for potassium.
......@@ -455,7 +453,7 @@ The Sommerfeld model provides a good description of free electrons in alkali met
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?
### Exercise 2: the $n$-dimensional free electron model.
In the lecture, it has been explained that the density of states (DOS) of the free electron model is proportional to $1/\sqrt{\epsilon}$ in 1D, constant in 2D and proportional to $\sqrt{\epsilon}$ in 3D. In this exercise, we are going to derive the DOS of the free electron model for an arbitrary number of dimensions.
In the lecture, it has been explained that the density of states of the free electron model is proportional to $1/\sqrt{\varepsilon}$ in 1D, constant in 2D and proportional to $\sqrt{\varepsilon}$ in 3D. In this exercise, we are going to derive the density of states of the free electron model for an arbitrary number of dimensions.
Suppose we have a $n$-dimensional hypercube with length $L$ for each side that houses free electrons.
1. What is the distance between nearest-neighbour points in $\mathbf{k}$-space? Assume periodic boundary conditions.
......@@ -473,14 +471,14 @@ Using the answer for 1, find $g(k)$ for 1D, 2D and 3D.
??? hint
Check [Wikipedia](https://en.wikipedia.org/wiki/Particular_values_of_the_gamma_function) to find out how to deal with half-integer values in the gamma function.
5. Using the expression in 3, calculate the DOS (do not forget the spin degeneracy).
6. Give an integral expression for the total number of electrons and for their total energy in terms of the DOS, the temperature $T$ and the chemical potential $\mu$ (_you do not have to work out these integrals_).
5. Using the expression in 3, calculate the density of states (do not forget the spin degeneracy).
6. Give an integral expression for the total number of electrons and for their total energy in terms of the density of states, the temperature $T$ and the chemical potential $\mu$ (_you do not have to work out these integrals_).
7. Work out these integrals for $T = 0$.
### Exercise 3: a hypothetical material
A hypothetical metal has a Fermi energy $\epsilon_F = 5.2 \, \mathrm{eV}$ and a DOS per unit volume $g(\epsilon) = 2 \times 10^{10} \, \mathrm{eV}^{-\frac{3}{2}} \sqrt{\epsilon}$.
A hypothetical metal has a Fermi energy $\varepsilon_F = 5.2 \, \mathrm{eV}$ and a density of states per unit volume $g(\varepsilon) = 2 \times 10^{10} \, \mathrm{eV}^{-\frac{3}{2}} \sqrt{\varepsilon}$.
1. Give an integral expression for the total energy of the electrons in this hypothetical material in terms of the DOS $g(\epsilon)$, the temperature $T$ and the chemical potential $\mu = \epsilon_F$.
1. Give an integral expression for the total energy of the electrons in this hypothetical material in terms of the density of states $g(\varepsilon)$, the temperature $T$ and the chemical potential $\mu = \varepsilon_F$.
2. Find the ground state energy at $T = 0$.
3. In order to obtain a good approximation of the integral for non-zero $T$, one can make use of the [Sommerfeld expansion](https://en.wikipedia.org/wiki/Sommerfeld_expansion) (the first equation is all you need and you can neglect the $O\left(\frac{1}{\beta \mu}\right)^{4}$ term).
Using this expansion, find the difference between the total energy of the electrons for $T = 1000 \, \mathrm{K}$ with that of the ground state.
......@@ -496,17 +494,17 @@ Using this expansion, find the difference between the total energy of the electr
One of the most famous recently discovered materials is [graphene](https://en.wikipedia.org/wiki/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:
$ \epsilon(\mathbf{k}) = \pm c|\mathbf{k}|.$ Note that the $\pm$ here means that there are two energy levels at a specified $\mathbf{k}$.
The Fermi level is set at $\epsilon_F = 0$.
$ \varepsilon(\mathbf{k}) = \pm c|\mathbf{k}|.$ Note that the $\pm$ here means that there are two energy levels at a specified $\mathbf{k}$.
The Fermi level is set at $\varepsilon_F = 0$.
1. Make a sketch of the dispersion relation.
What other well-known particles have a linear dispersion relation?
2. Using the dispersion relation and assuming periodic boundary conditions, derive an expression for the DOS of graphene.
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 $|\epsilon|$.
Your result should be linear with $|\varepsilon|$.
??? hint
It is convenient to first start by only considering the positive energy contributions $\epsilon(\mathbf{k}) = + c|\mathbf{k}|$ and calculate the DOS for it. Then account for the negative energy contributions $\epsilon(\mathbf{k}) = - c|\mathbf{k}|$ by adding it to the DOS for the positive energies. You can also make use of $\frac{\rm{d} |k|}{\rm{d}k} = \frac{k}{|k|}$.
It is convenient to first start by only considering the positive energy contributions $\varepsilon(\mathbf{k}) = + c|\mathbf{k}|$ and calculate the density of states for it. Then account for the negative energy contributions $\varepsilon(\mathbf{k}) = - c|\mathbf{k}|$ by adding it to the density of states for the positive energies. You can also make use of $\frac{\rm{d} |k|}{\rm{d}k} = \frac{k}{|k|}$.
3. At finite temperatures, assume that electrons close to the Fermi level (i.e. not more than $k_B T$ below the Fermi level) will get thermally excited, thereby increasing their energy by $k_B T$. Calculate the difference between the energy of the thermally excited state and that of the ground state $E(T)-E_0$. To do so, show first that the number of electrons that will get excited is given by $$n_{ex} = \frac{1}{2} g(-k_B T) k_B T.$$
4. Calculate the heat capacity $C_e$ as a function of the temperature $T$.
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment