BSE solvers overview: Difference between revisions
No edit summary |
|||
Line 10: | Line 10: | ||
Diagonalization of the full Hamiltonian using the standard LAPACK library. (ScaLAPACK?!) | Diagonalization of the full Hamiltonian using the standard LAPACK library. (ScaLAPACK?!) | ||
This solver outputs the macroscopic dielectric function over a range of energies chosen by the user. It also calculates all exciton energies and composition in terms of electron-hole pairs. Upon user's choice, the latter is stored on disk for use in postprocessing for exciton analysis and plotting as seen in the tutorial '''[[How to analyse excitons]]'''. | This solver outputs the macroscopic dielectric function over a range of energies chosen by the user. It also calculates all exciton energies and composition in terms of electron-hole pairs. Upon user's choice, the latter is stored on disk for use in postprocessing for exciton analysis and plotting as seen in the tutorial '''[[How to analyse excitons - CECAM 2021 school|How to analyse excitons]]'''. | ||
Unfortunately, the computational cost of full diagonalization is cubic in the number of matrix elements (CHECK!) and this solver can be used for small system only (few light atoms per unit cell). | Unfortunately, the computational cost of full diagonalization is cubic in the number of matrix elements (CHECK!) and this solver can be used for small system only (few light atoms per unit cell). | ||
You should've already carry out the '''[[Bethe-Salpeter solver: diagonalization]]'''. If you wish, you can run again this part and then '''return to this tutorial''' | You should've already carry out the '''[[Bethe-Salpeter solver: diagonalization]]'''. If you wish, you can run again this part and then '''return to this tutorial''' | ||
===Lanczos-Haydock solver=== | ===Lanczos-Haydock solver=== |
Revision as of 11:50, 25 March 2021
Work in progress (please come back after 04/04/2021)
This tutorial explores the options available in Yambo for the numerical solution of the Bethe-Salpeter equation. Before running this tutorial, you should have carried out the tutorial Calculating optical spectra including excitonic effects: a step-by-step guide. We will use the same example system (bulk hBN). The various options correspond to different numerical methods for solving (large) eigenvalue problems. The numerical methods are not covered in this tutorial and the interested user is directed to the references.
After completion of this tutorial, you are expected to recognize which solver to use depending on the system, computational load and desired output. Also, for each of the solver, you should be able to choose the values for the key input parameters.
Three main solvers are available in Yambo:
Full diagonalization solver
Diagonalization of the full Hamiltonian using the standard LAPACK library. (ScaLAPACK?!)
This solver outputs the macroscopic dielectric function over a range of energies chosen by the user. It also calculates all exciton energies and composition in terms of electron-hole pairs. Upon user's choice, the latter is stored on disk for use in postprocessing for exciton analysis and plotting as seen in the tutorial How to analyse excitons.
Unfortunately, the computational cost of full diagonalization is cubic in the number of matrix elements (CHECK!) and this solver can be used for small system only (few light atoms per unit cell).
You should've already carry out the Bethe-Salpeter solver: diagonalization. If you wish, you can run again this part and then return to this tutorial
Lanczos-Haydock solver
Subspace iterative Lanczos algorithm which by-pass diagonalization with the Haydock approach[1].
This solver outputs the macroscopic dielectric function over a range of energies chosen by the user. It can be applied to medium-large systems as it is substantially cheaper than the full diagonalization (quadratic with the number of elements). However, this approach does not provide the individual exciton energies and composition in terms of electron-hole pairs.
Follow the link to Bethe-Salpeter solver: Lanczos-Haydock then return to this tutorial
SLEPc solver
Subspace iterative algorithm using the external SLEPc library[2] (SLEPC solver).
This solver outputs the individual exciton energies and composition about an energy value chosen by the user. It can be applied to medium-large systems but does not provide the overall spectrum. It is usually used after obtaining the spectra from the Lanczos-Haydock solver to analyze a specific peak.
Follow the link to Bethe-Salpeter solver: SLEPC then return to this tutorial