Background theory: Introduction to phonons¶
Go back to the interactive notebook
Source code: https://github.com/osscar-org/quantum-mechanics/tree/master/notebook/lattice-vibration/theory/theory_phonon_1d.ipynb
Introduction¶
Phonons are a quantum mechanical description of elemental vibrations in the solid. Like photons are quantized light waves, phonons can be thought of quantized sound waves. Arising from the elastic arrangement of atoms, phonons play an important role in the study of thermal and electrical properties of materials. They describe the vibrational motion of a lattice of atoms oscillating at a single frequency, analogous to normal modes in classical mechanics. Any lattice vibrations can then be described as a superposition of those normal modes.
1D monoatomic chain¶
$$\require{cancel}$$ $$\require{MathJax}$$
Let's now consider the case of a 1D monoatomic chain in which only the first neighbours interactions are considered. Let $R_n=na$ be the position of atom $n$, $R_{n+1}=(n+1)a$ the position of atom $n+1$, etc., as shown in Fig. 1. The classical equation of motion of the $n$-th atom of mass $M$ in position $R_n+u_n(t)$ under the force $F_n$ is:
\begin{equation}
M\ddot u_n = -C_1(u_{n-1}-u_{n})-C_1(u_{n+1}-u_n)=-C_1(2u_n-u_{n-1}-u_{n+1}) \qquad (1)
\end{equation}
where $n-1$ and $n+1$ are the two neighbouring atoms and $C_1$ the force constant between neighbours.
Solutions of the differential equation are in the form of traveling wave, periodic in space and time, of the type :
\begin{equation}
u_n(t)=Ae^{i(k\cdot R_n-\omega t)} \qquad (2)
\end{equation}
where $A$ is the amplitude of the displacement, $k$ is the phonon wave vector and $\omega$ its frequency.
Plugging Eq.2 into Eq.1results in
$$
\begin{align}
-M \omega^2 \cancel{e^{ikn}}\cancel{e^{-i\omega t}} & =-C_1(2\cancel{e^{ikn}}\cancel{e^{-i\omega t}}-\cancel{e^{ikn}}\cancel{e^{-i\omega t}}e^{-ika}-\cancel{e^{ikn}}\cancel{e^{-i\omega t}}e^{ika})\nonumber \\
M \omega^2 & =-C_1(2-e^{-ika}-e^{ika}) \qquad (3)
\end{align}
$$
Eq.3 gives us a direct relation between $\omega$ and $k$, which is called the dispersion relation.
1D diatomic chain¶
Let us now consider the case in which two atoms site in the unit cell, with mass $M_1$ and $M_2$. The positions are given by $R_n^{(1)}=na$ and $R_n^{(2)}=na+\frac{1}{2}a$. $u$ is the displacement of atom 1 and $v$ is the displacement of atom 2. The system of equations is then
\begin{align} M_1\ddot u_n & =-C_1(2u_n-v_{n-1}-v_{n+1}) \qquad (4) \\ M_2\ddot v_n & =-C_1(2v_n-u_{n-1}-u_{n+1})\qquad (5) \end{align} The solution of such a system is given by \begin{equation} u_n(t)=A_1e^{i(k\cdot R_n^{(1)}-\omega t)}\qquad \text{and}\qquad v_n(t)=A_2e^{i(k\cdot R_n^{(2)}-\omega t)} \qquad(6) \end{equation} Inserting Eq.6 into Eq.4 and Eq.5 gives : \begin{align} & -M_{1} \omega^{2} A_{1}=-C\left(2 A_{1}-A_{2} e^{-i k a / 2}-A_{2} e^{i k a / 2}\right) \\ & -M_{2} \omega^{2} A_{2}=-C\left(2 A_{2}-A_{1} e^{-i k a / 2}-A_{1} e^{i k a / 2}\right) \end{align} which is equal to solving the eigenvalue problem : \begin{equation} \mathbf{C}\vec{A}=\omega^2 \vec{A} \end{equation} where $\vec{A_\omega}=\begin{bmatrix}A_1\\A_2\end{bmatrix}$. $\vec{A_\omega}$ is the eigenvector corresponding to the eigenvalue $\omega$.
Further references¶
G. Grosso and G. Pastori Parravicini, Solid state physics, Second edition. Amsterdam: Academic Press, an imprint of Elsevier, 2014.