Calculate U for LSDA+U: Difference between revisions

From VASP Wiki
No edit summary
Line 107: Line 107:
Last but not least, we set {{TAG|LMAXMIX}}<tt>=4</tt>: this is needed to be able to perform non-selfconsistent ({{TAG|ICHARG}}<tt>=11</tt>) LSDA+U calculations ({{TAG|LDAUTYPE}}<tt>=3</tt>) in the following.
Last but not least, we set {{TAG|LMAXMIX}}<tt>=4</tt>: this is needed to be able to perform non-selfconsistent ({{TAG|ICHARG}}<tt>=11</tt>) LSDA+U calculations ({{TAG|LDAUTYPE}}<tt>=3</tt>) in the following.
   
   
== Non-selfconsistent response ==
== Selfconsistent response ==


[[File:NiOLDAU3.png|500px]]
[[File:NiOLDAU3.png|500px]]

Revision as of 14:27, 9 August 2019

Task

In this exercise you will calculate the U parameter for the LSDA+U treatment of Ni d-electrons in NiO using the linear response ansatz of Cococcioni et al..[1]

POSCAR

For this calculation we will use a 2×2×2 supercell of AFM-II NiO:

AFM  NiO
   4.03500000 
 2.0000000000   1.0000000000   1.0000000000 
 1.0000000000   2.0000000000   1.0000000000 
 1.0000000000   1.0000000000   2.0000000000 
  1 15   16 
Direct
 0.0000000000   0.0000000000   0.0000000000 
 0.2500000000   0.2500000000   0.2500000000 
 0.0000000000   0.0000000000   0.5000000000 
 0.2500000000   0.2500000000   0.7500000000 
 0.0000000000   0.5000000000   0.0000000000 
 0.2500000000   0.7500000000   0.2500000000 
 0.0000000000   0.5000000000   0.5000000000 
 0.2500000000   0.7500000000   0.7500000000 
 0.5000000000   0.0000000000   0.0000000000 
 0.7500000000   0.2500000000   0.2500000000 
 0.5000000000   0.0000000000   0.5000000000 
 0.7500000000   0.2500000000   0.7500000000 
 0.5000000000   0.5000000000   0.0000000000 
 0.7500000000   0.7500000000   0.2500000000 
 0.5000000000   0.5000000000   0.5000000000 
 0.7500000000   0.7500000000   0.7500000000 
 0.1250000000   0.1250000000   0.1250000000 
 0.3750000000   0.3750000000   0.3750000000 
 0.1250000000   0.1250000000   0.6250000000 
 0.3750000000   0.3750000000   0.8750000000 
 0.1250000000   0.6250000000   0.1250000000 
 0.3750000000   0.8750000000   0.3750000000 
 0.1250000000   0.6250000000   0.6250000000 
 0.3750000000   0.8750000000   0.8750000000 
 0.6250000000   0.1250000000   0.1250000000 
 0.8750000000   0.3750000000   0.3750000000 
 0.6250000000   0.1250000000   0.6250000000 
 0.8750000000   0.3750000000   0.8750000000 
 0.6250000000   0.6250000000   0.1250000000 
 0.8750000000   0.8750000000   0.3750000000 
 0.6250000000   0.6250000000   0.6250000000 
 0.8750000000   0.8750000000   0.8750000000

Atoms 1-16 are Ni and atoms 17-32 are O.

Note that the Ni atoms are split into two groups: atom 1, and atom 2-15. This trick breaks the symmetry of the Ni sub-lattice and allows us to treat atom 1 differently from atom 2-15. Our POTCAR file has to reflect the fact that we now formally have 3 "species" (2 ×Ni + 1×O), i.e., we concatenate two Ni POTCAR files and one O POTCAR file:

cat Ni/POTCAR Ni/POTCAR O/POTCAR > POTCAR

To check whether you have a suitable POTCAR type:

grep TITEL POTCAR

This should yield something like:

   TITEL  = PAW Ni 02Aug2007
   TITEL  = PAW Ni 02Aug2007
   TITEL  = PAW O 22Mar2012

i.e., two Ni entries followed by one O entry.

KPOINTS

Gamma only
 0
Monkhorst
 1 1 1 
 0 0 0

The DFT groudstate

We will calculate the DFT groundstate of our NiO system with the following INCAR:

SYSTEM       = NiO AFM 

PREC         = A

EDIFF        = 1E-6

ISMEAR       = 0
SIGMA        = 0.2

ISPIN        = 2
MAGMOM       = 1.0 -1.0  1.0 -1.0  1.0 \
              -1.0  1.0 -1.0  1.0 -1.0 \
               1.0 -1.0  1.0 -1.0  1.0 \
              -1.0  1.0 -1.0  1.0 -1.0 \
            16*0.0

LORBIT       = 11

LMAXMIX      = 4 

Instrumental here is that we correctly specify the initial magnetic moments (by means of MAGMOM-tag). The setting above is consistent with the AFM-II magnetic structure.

Secondly we set LORBIT=11: at the end of the OUTCAR file VASP will write the number of (d-) electrons per site. This information we will need to compute the U-parameter.

Last but not least, we set LMAXMIX=4: this is needed to be able to perform non-selfconsistent (ICHARG=11) LSDA+U calculations (LDAUTYPE=3) in the following.


Non-selfconsistent response

Selfconsistent response


References

Back to the main page.