Jump to content

Requests for technical support from the VASP team should be posted in the VASP Forum.

Electron-phonon potential from supercells

From VASP Wiki
Revision as of 14:48, 20 January 2025 by Mani (talk | contribs) (Add availability notice)

The computation of the electron-phonon potential, ν𝐪V(𝐫), is a prerequisite for the calculation of the electron-phonon matrix element:

gmn𝐤,ν𝐪ψm𝐤𝐪|ν𝐪V|ψn𝐤.

ν𝐪V is computed from a supercell calculation by means of Fourier interpolation while the Bloch orbitals, ψn𝐤(𝐫), are computed directly in the primitive cell. The supercell calculation and the primitive-cell calculation are performed in two separate VASP runs. This page provides an overview of the supercell calculation and how the electron-phonon potential can be calculated. For information regarding the electron-phonon calculation in the primitive cell, consult the documentation on phonon-induced bandstructure renormalization and on phonon-mediated transport.

Finite displacements in the supercell

The electron-phonon potential is computed from finite atomic displacements in a sufficiently large supercell. In this case, sufficient means that the effects of an atomic displacement become negligible at about half the supercell size. Usually, converging the phonon frequencies is a good way of finding a supercell that is sufficiently large. Polar materials can exhibit long-range electrostatic interactions that go beyond reasonable supercell sizes. In this case, a correction scheme exists that explicitly treats the long-range dipole interactions and works with smaller cells.

Currently, there are two complementary ways to calculate the electron-phonon potential. One relies solely on VASP, while the other uses VASP in combination with phelel. Both approaches calculate the derivative of the Kohn-Sham potential in real space via the displacement of atoms. However, they may differ in terms of flexibility and computational performance. Below, we describe the general workflow of each approach and highlight their advantages and disadvantages.

Regardless of which approach is chosen, the output is always written to the phelel_params.hdf5 binary file. This file can then be read during a VASP calculation in the primitive unit cell to compute electron-phonon interactions.

VASP internal driver

This way of calculating the electron-phonon potential is activated by setting ELPH_POT_GENERATE = True in the INCAR file. It utilizes the VASP-internal finite-difference driver that is activated by setting IBRION = 6 in the INCAR file. The atomic displacement directions are automatically determined by VASP. As usual, POTIM and NFREE can be used to control the displacement amount and finite-difference stencil, respectively. This is the same procedure used to calculate phonons from finite differences and many of the same considerations regarding performance and accuracy apply in this case. Therefore, phonon frequencies are a great way to test the convergence with respect to supercell size.

Once the electron-phonon potential is obtained, it is automatically mapped to the primitive cell. The results are stored in the phelel_params.hdf5 file. By default, the primitive cell is the one determined by VASP during the supercell calculation. You can find this information in the OUTCAR file. For example, here is the relevant section for a diamond structure:

----------------------------------------------------------------------------------------

                                     Primitive cell

  volume of cell :      11.1771

  direct lattice vectors                    reciprocal lattice vectors
     1.774598550  1.774598550  0.000000000     0.281753865  0.281753865 -0.281753865
     0.000000000  1.774598550  1.774598550    -0.281753865  0.281753865  0.281753865
     1.774598550  0.000000000  1.774598550     0.281753865 -0.281753865  0.281753865

  length of vectors
     2.509661338  2.509661338  2.509661338     0.488012009  0.488012009  0.488012009

  position of ions in fractional coordinates (direct lattice)
     0.000000000  0.000000000  0.000000000
     0.250000000  0.250000000  0.250000000

  ion indices of the primitive-cell ions
   primitive index   ion index
                 1           1
                 2           9

----------------------------------------------------------------------------------------

It is possible to choose a different primitive unit cell by explicitly specifying its lattice vectors using the ELPH_POT_LATTICE INCAR tag.

In order to map the electron-phonon potential from the supercell to the primitive cell, it is currently necessary to specify the FFT grid dimensions (NGX, NGY, NGZ) of the primitive cell that will be used in the final electron-phonon calculation. Once a suitable FFT grid has been determined for the primitive cell, it can be supplied via ELPH_POT_FFT_MESH. The electron-phonon potential is then Fourier interpolated onto the supplied FFT grid.

VASP and phelel

In this approach to calculating the electron-phonon potential, the ionic displacements are determined externally using phelel. For people who are familiar with phonon calculations using VASP and phonopy, this workflow will look very familiar. In general, this allows for greater flexibility. Here, we demonstrate a common workflow that suffices for most purposes. For a complete list of features, we refer to the documentation of phelel.

As an example,

phelel -d --dim 2 2 2 -c POSCAR-unitcell --pm

automatically determines displacement directions for a 2x2x2 supercell based on symmetry considerations.

For each displacement, phelel creates a corresponding supercell POSCAR file (POSCAR-XXX, where XXX labels the different displacements). In addition, the file SPOSCAR is created which contains the supercell geometry in equilibrium.

For each of the generated POSCAR files, create a separate directory and run VASP there with ELPH_PREPARE = True set in the INCAR file. This setting instructs VASP to write the potential as well as other important information to disk. Finally, run phelel to combine all the data from the individual directories to obtain the electron-phonon potential, for example,

phelel --fft-mesh 18 18 18 --cd perfect/ disp-001/ disp-002/

Here, perfect, disp-001 and disp-002 are the directories corresponding to the equilibrium and displaced supercell calculations, respectively. --fft-mesh specifies the FFT grid dimensions (NGX, NGY, NGZ) to be used in the final electron-phonon calculation in the primitive cell. The electron-phonon potential is Fourier interpolated from the FFT grid in the supercell to the supplied grid via a non-uniform FFT. The results are written to the phelel_params.hdf5 file.