Phonons At X In Diamond Structure Crystals

by Pasquale Pavone for exciting neon

(Jupyter notebook by Jennifer Peschel, Mara Voiculescu, & Martin Kuban)


Purpose: In this tutorial, you will learn how to set up and execute a series of calculations for a crystal in the diamond structure, where the atoms are displaced according to a phonon pattern with the periodicity of the X point in the Brillouin zone. Additionally, it will be explained how to obtain the phonon frequency of TA, LA, LO, and TO modes at X, by calculating the derivatives of the energy-vs-displacement curves at zero displacement.



0. Before Starting

Read the following paragraphs before starting with the rest of this tutorial!

Before running any Jupyter tutorials, please refer to the 00_before_starting.md document on how to correctly set up the environment. This only needs to be done once. After which, the venv can be (re)activated from exciting's root directory:

source tools/excitingjupyter/venv/excitingvenv/bin/activate


1. Set Up the Calculations

i) Preparation of the Input File

The first step is to create a directory for each system that you want to investigate. In this tutorial, we consider as an example the calculation of the energy-vs-displacement curves for carbon in the diamond structure. Thus, we will create a directory run_diamond_phonon_x.

In [1]:
%%bash
mkdir -p run_diamond_phonon_x

Inside this directory, we create (or copy from a previous calculation) the file input.xml corresponding to a calculation for the equilibrium structure of diamond. This file could look like the following

<input>

   <title>Diamond: Phonons at X</title>

   <structure speciespath="$EXCITINGROOT/species">

      <crystal scale="6.7468">
         <basevect> 0.5  0.5  0.0 </basevect>
         <basevect> 0.5  0.0  0.5 </basevect>
         <basevect> 0.0  0.5  0.5 </basevect>
      </crystal>

      <species speciesfile="C.xml" rmt="1.25">
         <atom coord="0.00 0.00 0.00" />
         <atom coord="0.25 0.25 0.25" />
      </species>

   </structure>

   <groundstate 
      ngridk="2 2 2"
      xctype="GGA_PBE"
      swidth="0.0001"
      rgkmax="4.0"
      gmaxvr="14"
      tforce="true">
   </groundstate>

</input>

After creating the input file, set the path for the species file using the command

In [3]:
%%bash
cd run_diamond_phonon_x
python3 -m excitingscripts.setup.excitingroot
cd ..

ii) Periodicity of Phonons at the X Point

The perturbed crystal, formed by displacing the atoms according to a phonon pattern at the X point in the Brillouin zone, has a unit cell which size is doubled with respect to the unperturbed crystal. The new unit cell has four atoms and a tetragonal Bravais lattice with basis vectors

  • (1, 0, 0) a / √2;
  • (0, 1, 0) a / √2;
  • (0, 0, 1) a;

where a is the cubic lattice constant. Furthermore, the positions of the four atoms in the doubled unit cell are (notice that for tetragonal structures all crystal axes are parallel to Cartesian directions):

  1. (0, 0, 0);
  2. (0, 1/2, 1/4);
  3. (1/2, 1/2, 1/2);
  4. (1/2, 1, 3/4).

According to this, for performing the perturbed calculations, the input file showed above should be changed to take into account the new structure. This is done by the script excitingscripts.setup.diamond_phonon_x described in the next subsection. The script will generate input files with the new geometry. For instance, for vanishing displacement, the crystal and species elements of the new input look like this:

...
      <crystal scale="    4.7707080313">
         <basevect>    1.0000000000    0.0000000000    0.0000000000 </basevect>
         <basevect>    0.0000000000    1.0000000000    0.0000000000 </basevect>
         <basevect>    0.0000000000    0.0000000000    1.4142135624 </basevect>
      </crystal>
      <species speciesfile="C.xml" rmt="1.25">
         <atom coord="    0.0000000000    0.0000000000    0.0000000000"/>
         <atom coord="    0.0000000000    0.5000000000    0.2500000000"/>
         <atom coord="    0.5000000000    0.5000000000    0.5000000000"/>
         <atom coord="    0.5000000000    1.0000000000    0.7500000000"/>
      </species>
...

Furthermore, when setting up a new calculation for a tetragonal system, the values defined by the attribute ngridk in the element groundstate will be also changed according to the new geometry. The new values are chosen in such a way to keep the same density of k-points for both the unperturbed unit cell and the tetragonal supercell.

Note that you do NOT need to modify the file input.xml by adding explicitly the configuration with 4 atoms in the super cell. The script excitingscripts.setup.diamond_phonon_x described in the next section will do it for you.

ii) Generation of Input Files for the Different Structures

In order to generate input files for a series of different structures you have to run the script excitingscripts.setup.diamond_phonon_x. Notice that the script excitingscripts.setup.diamond_phonon_x always generates a working directory containing input files for different atomic displacements. Results of the current calculations will be also stored in the working directory. The directory name can be specified by adding the name in the command line (in this example x_phonon_ta).

If the directory name is not given explicitly, the script excitingscripts.setup.diamond_phonon_x generates a directory called by default workdir.

Very important: The working directory is overwritten each time you execute the script excitingscripts.setup.diamond_phonon_x. Therefore, choose different names for different calculations.

The following command line arguments are also required:

  • The first argument (in our example 0.015) represents the absolute value of the maximum displacement (for each component, in crystal coordinates) for which we want to perform the calculation.
  • The second argument (31) is the number of structures equally spaced in the displacement of the second atom, which are generated between the maximum negative displacement and the maximum positive one.
  • The third (last) argument (TA) is the code of the phonon mode that one wants to investigate.
In [6]:
%%bash
cd run_diamond_phonon_x
python3 -m excitingscripts.setup.diamond_phonon_x 0.015 31 -w x_phonon_ta -p TA
cd ..


2. Execute the Calculations

To execute the series of calculations with input files created by excitingscripts.setup.diamond_phonon_x you have to run the script excitingscripts.execute.diamond_phonon. If a name for the working directory has been specified, then you must give it here, too.

In [ ]:
%%bash
cd run_diamond_phonon_x
python3 -m excitingscripts.execute.diamond_phonon -w x_phonon_ta
cd ..

After the complete run, inside the directory x_phonon_ta the results of the calculations are contained in the subdirectories displ_*d* where d corresponds to the displacement value. The data for the energy-vs-displacement curves are contained in the file phonon_results.json.


3. Post-Processing: Extract Energy Derivatives

In order to analyse the results of the calculations, you first have to move to the working directory. At this point, you can use the python script excitingscripts.checkfit.energy_vs_displacement for extracting the derivatives of the energy-vs-displacement curves at zero displacement.

The first argument (in our example 0.015) represents the absolute value of the maximum displacement for which we want to perform the analysis. The second argument (2) is the order of the derivative that we want to obtain. Finally, the third argument (12.01) is the atomic mass of carbon in units of [amu].

NOTICE that, in this example, the values which are given above as output on the screen are not directly the actual second derivative of the energy-vs-displacement curves, but the values of the frequency, i.e., combinations involving the square root of the derivative (see Section 5. for the explanation). The most accurate value for the frequency corresponds to the fit with the polynomial of the highest order (6 or 7, in this case).

The script excitingscripts.checkfit.energy_vs_displacement generates the output file checkfit_energy_results.json, which can be used in the post-processing analysis.

In [ ]:
%%bash
cd run_diamond_phonon_x/x_phonon_ta
python3 -m excitingscripts.checkfit.energy_vs_displacement 0.015 2 12.01
cd ../..

The output should look should look something like this:

This is the X-phonon-calculation:

 Fit data

 Maximum value of the displacement: 0.015
 Number of displacement values used: 31
 Fit results for the derivative of order: 2

 Polynomial of order  2  ==>   556.48 [cm-1]
 Polynomial of order  3  ==>   556.48 [cm-1]
 Polynomial of order  4  ==>   529.73 [cm-1]
 Polynomial of order  5  ==>   529.73 [cm-1]
 Polynomial of order  6  ==>   527.93 [cm-1]
 Polynomial of order  7  ==>   527.93 [cm-1]

 Polynomial of order  2  ==>   16.6828 [THz]
 Polynomial of order  3  ==>   16.6828 [THz]
 Polynomial of order  4  ==>   15.8808 [THz]
 Polynomial of order  5  ==>   15.8808 [THz]
 Polynomial of order  6  ==>   15.8268 [THz]
 Polynomial of order  7  ==>   15.8268 [THz]


4. Post-Processing: Visualization Tools

All scripts, except excitingscripts.plot.atomforce, which are used as visualization tools of in the tutorial Phonons at Γ in diamond-structure crystals, can be used for this tutorial, too. In the following, you can find some example of plot obtained with these tools.

i) excitingscripts.plot.energy

In [10]:
%%bash
cd run_diamond_phonon_x/x_phonon_ta
python3 -m excitingscripts.plot.energy
cd ../..

ii) excitingscripts.plot.checkderiv

In [11]:
%%bash
cd run_diamond_phonon_x/x_phonon_ta
python3 -m excitingscripts.plot.checkderiv energy
cd ../..

iii) excitingscripts.plot.status

In [12]:
%%bash
cd run_diamond_phonon_x/x_phonon_ta
python3 -m excitingscripts.plot.status displ_0.013
cd ../..


5. Post-Processing: How to Derive the Optical Phonon Frequency at the X Point

The total energy per unit cell of a crystal where the atoms are displaced by their equilibrium positions can be written as a Taylor series

$$ E({\mathbf{u}}) = E_0 + \frac{1}{2} \sum_{\mathbf{R, R'}}\mathbf{u}(\mathbf{R})\: \mathbf{\Phi} (\mathbf{R, R'}) \:\mathbf{u}(\mathbf{R'}) + O(\mathbf{u}^3) $$

where $E_0$ is the energy corresponding to the equilibrium structure, $\mathbf{u}(\mathbf{R})$ is an atomic displacement in the cell $\mathbf{R}$, $\mathbf{\Phi} (\mathbf{R, R'})$ is the inter-atomic force-constants matrix, and $O(\mathbf{u}^3)$ includes all orders higher than two in the displacements $\mathbf{u}$. For small displacements, terms beyond the harmonic approximation (which retains only terms that are quadratic in $\mathbf{u}$) can be neglected. For the diamond structure the displacements of the 4 atoms in the "doubled" unit cell corresponding to the phonon modes at the X point can be given as ($a$ is the cubic lattice constant):

TA phonon

  • $ \mathbf{u}_1 = a \: (0, u, 0)$
  • $ \mathbf{u}_2 = a \: (0, u, 0)$
  • $ \mathbf{u}_3 = a \: (0, -u, 0)$
  • $ \mathbf{u}_4 = a \:(0, -u, 0)$

LA phonon

  • $ \mathbf{u}_1 = a \:(0, 0, u)$
  • $ \mathbf{u}_2 = a\: (0, 0, u)$
  • $ \mathbf{u}_3 = a \:(0, 0, -u)$
  • $ \mathbf{u}_4 = a\: (0, 0, -u)$

TO phonon

  • $ \mathbf{u}_1 = a \:(0, u, 0)$
  • $ \mathbf{u}_2 = a \:(0, -u, 0)$
  • $ \mathbf{u}_3 = a\: (0, -u, 0)$
  • $ \mathbf{u}_4 = a\: (0, u, 0)$

LO phonon

  • $ \mathbf{u}_1 = a\: (0, 0, u)$
  • $ \mathbf{u}_2 = a\: (0, 0, -u)$
  • $ \mathbf{u}_3 = a \:(0, 0, -u)$
  • $ \mathbf{u}_4 = a \:(0, 0, u)$

Notice, that in the diamond structure the LA and LO phonons are degenerate (they have the same frequency).

For a phonon mode at the X point, the total energy per unit cell (containing 2 atoms) of the crystal can be written as (see details here):

$$E({\mathbf{u}}) = E_0 + m \: a^2 \: \omega(\mathbf{X})^2 \: u^2$$

Using appropriate values for m and a and their units, the phonon frequency is given directly from the square root of the second derivative of the energy-vs-displacement curves. This is the output of the fit procedure exposed above if the order of the derivative is taken equal to 2. The optical phonon frequency is obtained from the plateau value of the second-order derivative at zero displacement of the energy-vs-displacement curves. For more details on the procedure used for extracting numerical derivatives, see the tutorial Energy vs. strain calculations, where the same approach is used for calculating elastic constants.

Exercises

  • The frequency values which are obtained in this example using the quoted parameters, are not realistic. Check the convergence of the optical phonon frequency at the X point with respect of the value of the ngridk and rgkmax attributes using derivatives of the total energy.

  • Calculate all modes at the X point

    1. TA mode
    2. TO mode
    3. LA mode
    4. LO mode
  • Calculate all frequency modes for different values of the lattice constant.

  • Repeat all the calculations for Silicon.