MP2 ground state calculation - Tutorial

From VASP Wiki
Revision as of 10:23, 21 November 2018 by Tobias (talk | contribs)

(UNDER CONSTRUCTION)

This tutorial introduces how to calculate the ground state energy using second order Møller-Plesset perturbation theory (MP2) with VASP. Currently there are three implementations available:

  • MP2[1]: this was the first implementation in VASP and is very efficient for small systems, i.e. systems with less than ~32 valence electrons per unit cell or unit cells smaller than ~150 ų. The system size scaling of this algorithm is N⁵.
  • LTMP2[2]: the Laplace transformed MP2 algorithm has a lower scaling (N⁴) than the previous MP2 algorithm and is therefore efficient for large systems with unit cells larger than ~150 ų and more than ~32 valence electrons.
  • stochastic LTMP2[3]: faster calculations at the price of statistical noise can be achieved with the stochastic MP2 algorithm. It is an optimal choice for very large systems where only relative errors per valence electron (say 1 meV per valence electron) are relevant. Keeping the absolute error fixed, the algorithm exhibits a cubic scaling with the system size, N³, whereas for a fixed relative error, a linear scaling, N¹, can be achieved. Note that there is no k-point sampling and no spin polarization implemented for this algorithm.

Both LTMP2 as well as stochastic LTMP2 are high performance algorithms that can parallelize the MP2 calculation over thousands of CPUs.

At first, one should select the best algorithm according to the considered system size. In the following, a step by step instruction for each algorithm is presented.

Preparation: the Hartree-Fock ground state

In order to calculate the Hartree-Fock ground state, use the following INCAR file

ISMEAR = 0 ; SIGMA = 0.05 
ALGO = A
LHFCALC = .TRUE. ; AEXX = 1.0
EDIFF = 1E-6
ENCUT = # 10-20% larger than ENMAX in the POTCAR file
LORBITALREAL = .TRUE. # only necessary for LTMP2 and stochastic LTMP2

Keep the OUTCAR file to read-out the Hartree-Fock ground state energy later.

Calculating the unoccupied Hartree-Fock orbitals

We also need the unoccupied/virtual Hartree-Fock orbitals to perform MP2 calculations. The number of necessary orbitals should be equal to the number of plane-waves, that can be found via

nplw=`awk '/number of plane-waves:/ {print $5} ' < OUTCAR_OF_HARTREE_FOCK

For the Gamma-only version of VASP, twice the number of plane-waves have to be used.

Set the INCAR file to

ISMEAR = 0 ; SIGMA = 0.05
ALGO = Exact
LHFCALC = .TRUE. ; AEXX = 1.0
NELM = 1
NBANDS = # number of plane-waves (favorably a multiple of the used mpi-ranks)
ENCUT = # same value as in the Hartree-Fock step
LORBITALREAL = .TRUE. # only necessary for LTMP2 and stochastic LTMP2

Make sure that VASP reads the WAVECAR file from the previous Hartree-Fock step.

Actual MP2 calculations

Depending on your choice, please switch to the corresponding page.

References