Self-consistency cycle: Difference between revisions

From VASP Wiki
No edit summary
No edit summary
Line 1: Line 1:
The term "Self-Consistency Cycle" (SCC) denotes a category of algorithms that determine the electronic ground state by a combination of iterative matrix diagonalisation and density mixing.
The term "Self-Consistency Cycle" (SCC) denotes a category of algorithms that determine the electronic ground state by a combination of iterative matrix diagonalisation and density mixing. [[File:SCC.png|350px|thumb|Fig. 1: the self-consistency cycle]]


Figure 1. shows a procedural flowchart of the Self-Consistency Cycle:
Figure 1. shows a procedural flowchart of the Self-Consistency Cycle:
Line 13: Line 13:
This ensures that the wave functions that are initialised with random numbers have converged to a something sensible before they are used to construct a new charge density.
This ensures that the wave functions that are initialised with random numbers have converged to a something sensible before they are used to construct a new charge density.


[[File:SCC.png|350px|thumb|Fig. 1: the self-consistency cycle]]


----
----

Revision as of 14:32, 19 October 2023

The term "Self-Consistency Cycle" (SCC) denotes a category of algorithms that determine the electronic ground state by a combination of iterative matrix diagonalisation and density mixing.

Fig. 1: the self-consistency cycle

Figure 1. shows a procedural flowchart of the Self-Consistency Cycle:

  1. The SCC starts with an initial guess for the electronic density of the system under consideration: VASP uses the approximation of overlapping atomic charge densities. This density defines the initial Hamiltonian. The orbitals are initialised with random numbers.
  2. By means of iterative matrix diagonalisation techniques one obtains the N lowest lying eigenstates of the Hamiltonian (where N is of the order of the number of electrons in the unit cell). The iterative matrix diagonalisation algorithms implemented in VASP are the blocked-Davidson algorithm and the Residual Minimization Method with Direct Inversion in the Iterative Subspace (RMM-DIIS). Per default VASP uses the blocked-Davidson algorithm (ALGO = Normal).
  3. After the eigenstates and eigenvalues of the Hamiltonian (i.e., orbitals and one-electron energies) have been determined with sufficient accuracy, the corresponding partial occupancies of the orbitals are calculated. From these orbitals, one-electron energies, and partial occupancies, the total energy of the system is computed, and a new electronic density is constructed.
  4. In principle, the new density could be directly used to define a new Hamiltonian. In most cases, however, this does not lead to a stable algorithm (on account of, e.g. charge sloshing). Instead, the new density is not used as is, but is mixed with the old density. By default VASP uses a Broyden mixer. The resulting density then defines the new Hamiltonian for the next round of iterative metrix diagonalisation (step 2).

Steps 2-4 are repeated until the change in the total energy from one cycle to the next drops below a specific threshold (EDIFF).

Note that when starting from scratch (ISTART = 0), the self-consistency cycle procedure of VASP always begins with several (NELMDL) cycles where the density is kept fixed at the initial approximation (overlapping atomic charge densities). This ensures that the wave functions that are initialised with random numbers have converged to a something sensible before they are used to construct a new charge density.



The following section discusses the minimization algorithms implemented in VASP. We generally have one outer loop in which the charge density is optimized, and one inner loop in which the wavefunctions are optimized.

Fig. 1:Electronic minimization flowchart

Most of the algorithms implemented in VASP use an iterative matrix-diagonalization scheme, where the used algorithms are based on the conjugate gradient scheme [1][2], block Davidson scheme [3][4], or a residual minimization scheme -- direct inversion in the iterative subspace (RMM-DIIS) [5][6]. For the mixing of the charge density an efficient Broyden/Pulay mixing scheme [6][7][8] is used. Fig. 1 shows a typical flow-chart of VASP. Input charge density and wavefunctions are independent quantities (at start-up these quantities are set according to INIWAV and ICHARG). Within each selfconsistency loop, the charge density is used to set up the Hamiltonian, then the wavefunctions are optimized iteratively so that they get closer to the exact wavefunctions of this Hamiltonian. From the optimized wavefunctions, a new charge density is calculated, which is then mixed with the old input-charge density.


The conjugate gradient and the residual minimization scheme do not recalculate the exact Kohn-Sham eigenfunctions but an arbitrary linear combination of the NBANDS lowest eigenfunctions. Therefore it is in addition necessary to diagonalize the Hamiltonian in the subspace spanned by the trial-wavefunctions, and to transform the wavefunctions accordingly (i.e. perform a unitary transformation of the wavefunctions, so that the Hamiltonian is diagonal in the subspace spanned by transformed wavefunctions). This step is usually called sub-space diagonalization (although a more appropriate name would be, using the Rayleigh-Ritz variational scheme in a subspace spanned by the wavefunctions):

The sub-space diagonalization can be performed before or after the conjugate gradient or residual minimization scheme. Tests we have done indicate that the first choice is preferable during self-consistent calculations.

In general, all iterative algorithms work very similarly. The core quantity is the residual vector

This residual vector is added to the wavefunction , the algorithms differ in the way this is exactly done.


References