Bethe-Salpeter on top of quasiparticle energies

From The Yambo Project
Jump to navigation Jump to search

In this module, you will learn how to include GW-corrected (QP) energies in the calculation of the absorption spectrum. The energy differences on the diagonal of the excitonic Hamiltonian are added before the solution of the Bethe-Salpeter eigenproblem, therefore only that step needs to be repeated if we change the QP corrections.

Prerequisites

Previous modules You must have completed

You will need:

  • The SAVE databases for 3D hBN
  • The 3D_BSE directory containing the databases from the Static screening, Bethe-Salpeter kernel, Bethe-Salpeter solver: diagonalization modules thus containing the ndb.BS_Q1_CPU_0 and ndb.em1s* databases for 3D hBN
  • The GW_QP_database directory (provided) which contains the database with the GW corrections (you can also use the ndb.QP file produced in the GW tutorial)
  • yambo executable

Reading the QP corrections from a previous GW calculation

In the previous step we used a simple scissor operator to correct the Kohn-Sham DFT energies. Instead, in this part, we are taking the QP corrections from a previous Yambo GW calculation.

We create and edit the input:

$ yambo -F 03_3D_QP_BSE.in -y d -V qp -J 3D_BSE

We set all parameters as in the previous step, except for the part regarding the QP correction:

 KfnQPdb= "E < GW_QP_database/ndb.QP"              # [EXTQP BSK BSS] Database
 KfnQP_INTERP_NN= 1                   # [EXTQP BSK BSS] Interpolation neighbours
 % KfnQP_E
  0.000000 | 1.000000 | 1.000000 |        # [EXTQP BSK BSS] E parameters  (c/v) eV|adim|adim
%

Instead of setting the values for the scissor, we give the path to the database that contains the QP corrections (GW_QP_database/ndb.QP). The latter was created by running a GW calculation as in Step 3 of the GW tutorial. Run Yambo:

$ yambo -F 03_3D_QP_BSE.in -J "3D_QP_BSE,3D_BSE"

Note how we specified multiple directories, separated by a comma. This instructs Yambo to look for databases that may be already present from previous steps of the calculations in all the listed folders. If you completed the previous section of the tutorial, then you should have the 3D_BSE folder with ndb.dipoles_*, ndb.em1s* and ndb.BS_CPU* databases, which will not be recalculated by Yambo: the code will repeat only the diagonalization step - also reading the QP database - and print the resulting databases in the new folder 3D_QP_BSE. If you don't have the 3D_BSE folder, you have to repeat the entire BSE calculation, therefore you just need to give the option "-J 3D_QP_BSE,GW_QP_database".

This produces the following log in the standard output. Note Section 4 (regarding external QP corrections to the kernel):

<---> [04] External/Internal QP corrections
<---> E<GW_QP_database/ndb.QP[ PPA@E  27.21138 = XG 5 = Xb 1-40 = Scb 1-40]
<---> [dE_from_DB-Nearest K] Exact matches       :  100.0000 [o/o]

This tells you that the file was found, read correctly and that the k points found in the file matched the ones you are using for the current calculation (otherwise interpolation would be needed). It is crucial to check that the file has been read, since if not Yambo gives a warning but continues the calculation (with no QP corrections at all!). As in the calculation with the scissor shift the final results are the files with the macroscopic dielectric functions. Let's compare the results for the optical absorption spectrum with those obtained previously with a simple scissor:

$ gnuplot
...
plot 'o-3D_QP_BSE.eps_q1_diago_bse' u 1:2 w l t 'Explicit QP', 'o-3D_BSE.eps_q1_diago_bse' u 1:2 w l t 'Scissor' 
03 bse diago qp 2021.png

It is clear that this makes a difference in the peak positions, distribution and intensity. Note that besides a simple shift you can renormalise as well the bandwidth of the valence and conduction bands in KfnQP_E (respectively the third and second value). You can try as an exercise to set up a new calculation using e.g. 1.44 | 1.200000 | 0.900000 | for KfnQP_E.

Summary

From this tutorial you've learned:

  • How to compute the optical spectrum including quasiparticle corrections (full GW+BSE calculation).

Navigate