Using VASP for density functional theory (DFT)

SSH Notes

Login: ssh [username]@[serverIP]

Password: [password]

Copying a file from your local machine to the destination server: scp ~/[local file path] [username]@[serverIP]:~

Before You Start: Creating the Necessary Files

POSCAR file

  1. Open CIF files with VESTA
  2. Export structure as fractional coordinate (rename the files as POSCAR in a folder with whatever naming convention you prefer)
    • On Macbook, it can only saved as POSCAR.vasp so you can't just delete it. You can only remove the .vasp with the command mv POSCAR.vasp POSCAR
  3. Move POSCAR files from local computer to folder on destination server with bash
  4. I name the first folder as [structure group]+Opts and will have the specific composition named as composition or structure type, depending on what I’m doing, such as Ce-CeNiSi2. However, everyone works their own way, just make sure to keep a detailed record and notes.

POTCAR file

  1. Check order of POSCAR molecules for the potcreate command
    • For example: potcreate Si Fe Ce in command line, which matches the order of molecules in the POSCAR file
  2. Check available element potentials like this: potshow Si

INCAR file

  1. Copy INCAR from this template below:
      ### INCAR-Template for VASP Calculations - Martin Changed 2015-12-22
      ## General Parameters/Electronic Relaxation
      PREC =Accurate # Precision
      ENCUT = 500 # cutoff energy for the planewave basis set in eV.
      EDIFF = 1E-6 # convergence condition for the electronic loop
      NELM = 150 # maximum number of electronic iterations
      NELMIN = 4 # minimum number of electronic iterations
      KPAR = 2 # no. of nodes (max. no. of k-points)
      NCORE = 4 # no. of cores per node
      #LWAVE = .FALSE.# Do not write WAVECAR
      ## Structure Optimization (or static for NSW=0)
      EDIFFG = 1E-5 # convergence criterion for ionic loops (pos=energy; neg=forces)
      NSW = 1000 # number of ionic steps
      IBRION = 1 # ionic update: 1:QN, 2:CG (for bad guesses)
      ISIF = 3 # freedom: 2=ions; 4=ions,shape; 3=ions,shape,vol
      MAXMIX = 80 # max number steps stored in Broyden mixer, when negative: resets after ionic step
      ISMEAR = 1 # smearing: -5-insul/scond/DOS 0-large systems (with SIGMA 0.05) 1-metals (with SIGMA 0.2)
      ## DOS and Band Structure Calcuations (for ICHARG=11 prev. CHGCAR required)
      #NEDOS = 1001 # number of DOS gridpoints
      #LORBIT = 10 # DOSCAR and PROCAR are written
      #ISMEAR = -5 # smearing: -5-insul/scond/DOS 0-large systems 1-metals (with SIGMA)
      ## Bader Charge and Electron localization function
      #LAECHG = .TRUE.
      #LELF=.TRUE.
      #NPAR = 1
      ## COHP Analysis (via LOBSTER)
      #LWAVE = .TRUE.
      #NSW = 0
      #ISYM = -1
      #NBANDS = 600 ! should equal the total number of orbitals
      #LORBIT = 12
      #ISTART = 0
      ## Phonon Dispersion via finite displacements
      #EDIFF = 1E-8 # delete other EDIFF tags!!!
      #ISMEAR = 0
      #SIGMA = 0.01
      #ADDGRID = .TRUE.
      ## Hybrid Calculations
      LHFCALC=.TRUE. # use of HF/DFT hybrid functionals
      AEXX = 0.25 # fraction of exact exchange
      AGGAX = 0.75 # fraction of GGA
      ALGO = Damped # electronic minimisation algorithm (damped velocity friction algo.)
      TIME = 0.05 # time step for ALGO
      PRECFOCK = FAST # controls FFT grid for the exact exchange
      HFSCREEN = 0.2 # determines the range separation parameter
      NKREDX = 2 # grid reduction factors
      NKREDY = 2 # grid reduction factors
      NKREDZ = 2 # grid reduction factors
      ## Stress Tensor Calculation
      #ENCUT = 600 # delete other ENCUT tags!!!
      #IBRION = 6
      #ISIF = 6
      #NSW = 1
      #NFREE = 2
      ## additionally for DFPT:
      #IBRION = 8
      #NWRITE = 3
      #NSW = 1
      ## Supercell (band offset) calculations
      #LVHAR = .TRUE.
      #AMIN = 0.1
      ## Born Effective Charge
      #LEPSILON = .TRUE. ! dielectric matrix
      #LOPTICS = .TRUE. ! DFPT including empty bands for hybrid functionals
      ## Spin-orbing Coupling
      #LSORBIT = .TRUE.
      #LNONCOLLINEAR = .TRUE.
      ##GGA+U, Coulomb interaction energy
      #LDAU = .TRUE.
      #LDAUTYPE = 1 !1 = Liechtenstein et al.; 2 = Dudarev's approach, only the difference (U-J) is meaningfull
      #LDAUPRINT = 0
      #LDAUU = 0 3.71 0 0
      #LDAUJ = 0 0 0 0
      #LASPH = .TRUE.
    • Adjust accordingly per your calculation of course. The above template indicates a structure optimization, as it's not commented out with '#'

KPOINTS file

  1. Copy KPOINTS from this template below:
  2. K-Points
    0
    Gamma
    8 2 8
    0 0 0
  3. This file is an attempt to solve Schrodinger's equation… which is technically an infinite attempt as you have a guess and set up the cutoff and wanted precision in POSCAR file
    • K-Points: This line indicates the type of k-points generation scheme being used. In this case, it's set to "Gamma", meaning a single k-point at the center of the Brillouin zone.
    • 0: This value typically denotes the number of k-points to be generated. Here, "0" implies a single k-point.
    • Gamma: Specifies the center of the Brillouin zone where the k-point is placed.
    • 8 2 8: Defines the mesh size, i.e., the number of k-points along each reciprocal lattice vector direction. "8 2 8" indicates 8 k-points along the first lattice vector, 2 along the second, and 8 along the third.
    • 0 0 0: Specifies any fractional shifts applied to the k-point grid. In this example, there are no shifts applied.

Geometry Optimization

  1. Once all the above files are created, you’re ready to go with optimizing. You MUST do this before anything else. It is pertinent to start any calculations with an optimized and most thermodynamically stable geometry.
  2. Run mpirun -np 16 vasp_std>1& in the command line while in the directory of the folder with your files. "1" indicates the first run, "2" indicates the second, and "3" indicates the third. I do this to keep track of everything, but you can just repeat the same command after copying CONTCAR to POSCAR.
  3. Can view status of calculation/warnings with the following command:
    • Vim + 1
    • tail 1 (only displays last couple of lines)
  4. Can view energy with the following command:
    • grep TOTEN OUTCAR
  5. If ‘reached required accuracy - stopping structural energy minimisation’ is displayed at the bottom of file 1, this indicates it has reached your threshold of accuracy, indicated by EDIFF in the INCAR file. Copy the optimized structure to the structure input file with:
    • cp CONTCAR POSCAR
  6. Continue with the second run:
    • mpirun -np 4 vasp_std>2&
  7. If ‘reached required accuracy - stopping structural energy minimisation’ is displayed at the bottom of file 2, copy the optimized structure to the structure input file with:
    • cp CONTCAR POSCAR
  8. Continue with the third run:
    • mpirun -np 4 vasp_std>3&
  9. If ‘reached required accuracy - stopping structural energy minimisation’ is displayed at the bottom of file 3, copy the optimized structure to the structure input file with:
    • cp CONTCAR POSCAR

For hybrid calculations

  1. If a certain potential cannot converge no matter what, you need to enable the section for the hybrid calculations in the INCAR file. The optimization will take much longer, up to weeks in some cases.
  2. In case there’s a problem with convergence, the way to fix that would be changing TIME = 0.2 to 0.1 in the INCAR file.
  3. Setting an easier convergence criterion, namely 10^-6 and 10^-5 for electronic and ionic loop respectively may help with stubborn structures.

Data Accrual

  1. For free energy:
    • While in the structure directory, run grep TOTEN OUTCAR to see the final energy of the optimized structure, which is the last iterated value at the bottom.
    • Looks like this:
    • Free Energy Image Placeholder
  2. For optimized parameters:
    • While in the structure directory, run vim POSCAR
    • This is why we run cp CONTCAR POSCAR at the end of our third optimization iteration.
    • One can also just run vim CONTCAR, but we want to export POSCAR later for further calculations – so it’s best to do the first command in 1.
    • Looks like this:
    • Optimized Parameters Image Placeholder
    • After opening the file in the vim editor, you will see the optimized parameters as displayed in the image above.
    • Where the first line with values indicates parameter A, second indicates B, and third indicates C (in Angstroms).
      • In this case, we have a matrix representation of a non-orthogonal unit cell. It is monoclinic. You will notice that there are more than one value in each line.
      • Optimized Parameters Matrix Image Placeholder
      • To deal with this and convert it to appropriate parameters as well as angles, import the optimized POSCAR to VESTA and report the A, B and C cell parameters as well as the β Angle (°) in the summary section.
        VESTA Summary Image Placeholder

Density of States & Magnetic Moment

  1. To get a sense of what polarization DOS analysis looks like you can check out this paper
  2. I make a new folder entitled [structure group]+Mag_Dos_Elf as all of the calculations after optimization can be done in the same folder and you just adjust the INCAR.
  3. I remake the filenames, then copy the POTCAR, INCAR, KPOINTS and (optimized) POSCAR files over to this folder from the [structure group]+opt folder
  4. Uncomment DOS & band structure and General Parameters (never LWAVE = .FALSE.) in INCAR
  5. Non-spin polarized DOSCAR
    • Add the following to the INCAR
      • ISTART = 0
    • Run with mpirun -np 16 vasp_std>Dos1&
    • Copy DOSCAR files to local desktop for analysis when converged
    • From here, import DOSCAR file into wxDragon and plot the following:
      • Each iteration of the same elemental contributions (command + click for individuals or click + shift + click for multiple). In the case of ErCo2In, I verified the order with POSCAR and saved the following as
        • DOS-Total (all atoms)
        • DOS-Er (atoms 1-2)
        • DOS-Co (atoms 3-6)
        • DOS-In (atoms 7-8)
  6. Spin-polarized DOSCAR (only if magnetism is expected here, otherwise you can ignore this)
    • Add the following to the INCAR:
      • ISPIN = 2
      • MAGMOM = ie.) 4*0 4*1 OR 0 0 0 0 1 1 1 1
        • This can only be full integers
        • This is your prediction, the OUTCAR file will give you the software's guess
    • Run with mpirun -np 8 vasp_std>Dos2&
      • Rerun until the OUTCAR charges are the same as your input MAGMOM prediction, as it gets better with better predictions
        • As in they’re all positive numbers or negative numbers with respect to your entry. The output does not have to match besides it being positive or negative, usually.
    • Retrieve DOSCAR file when converged
    • From there, plot the same elemental contributions in wxDragon like before
  7. From there, plot the same elemental contributions in wxDragon like before

Electron Localization Function

  1. Uncomment Bader Charge and Electron localization function and General Parameters in INCAR
  2. Run with mpirun -np 16 vasp_std>Elf&
  3. Import ELFCAR file into local computer and drag into VESPA to view
    • Adjust element colors
      • Transition metals – grey
      • Post-transition metals – pink
      • Rare earth metals – blue
    • Electron density settings
      • Isosurfaces, isosurface level = 0.55 (change based on your own discretion)
    • Export settings
      • X scale = 3
      • Transparent background
    • Plane view information in about ELFCAR and charges - part 2.mp4 timestamps:
      • 3:45, 5:25, 7:10, 9:00

Bader Charges

  1. Uncomment Bader Charge and Electron localization function and General Parameters in INCAR, comment out KPAR
  2. Run with -np 8 vasp_std>Bader&
  3. When converged run chgsum.pl AECCAR0 AECCAR2
    • This combines core and valence electrons
  4. Run bader CHGCAR -ref CHGCAR_sum
    • Looks like this:
    • Bader Charges Image Placeholder
  5. Import ACF.dat to local machine or just view it in the terminal with vim command
  6. Run grep ZVAL POTCAR
    • Looks like this:
    • Bader Charges Image Placeholder
  7. Run vim POSCAR if you forget the order of the molecules to determine which charge is which molecule
  8. Use above values as the initial charge, see the VASP output in ACF.dat to determine difference, or actual charge

Crystal Orbital Hamiltonian/Overlap Populations (COHP/COOP)

  1. Uncomment COHP Analysis (via LOBSTER) and General Parameters in INCAR
  2. Copy lobsterin template below
  3. ! First, enter the energetic window in eV (relative to the Fermi level):
    COHPstartEnergy -10
    COHPendEnergy 5
    !
    ! Then, specify which types of valence orbitals to use:
    includeorbitals s p d
    ! You can also specify the basis functions per element manually, e.g.:
    ! basisfunctions Ga 4s 4p
    ! basisfunctions Sr 5s 4s 4p ! Sr_sv potential
    !
    ! Now define the pairs for which COHP analysis etc. should be done.
    ! The atoms are numbered as per order in the PAW-code control file.
    !cohpbetween atom 1 atom 10
    !
    ! If you are interested in single orbital COHPs, you can get all the pairs ! like s-s, s-p_x, ..., p_z-p_z. Uncomment this line to switch it on:
    ! cohpbetween atom 1 atom 2 orbitalwise
    !
    ! If you want to generate the COHPPairs automatically, use this to include ! all pairs in a given distance range (in Angstrom, not in atomic units):
    cohpGenerator from 1 to 2.5 type Si type Fe
    cohpGenerator from 1 to 3.3 type Gd type Si
    cohpGenerator from 1 to 3.3 type Gd type Fe
    cohpGenerator from 1 to 2.6 type Si type Si
    ! and in the latter case only between the specified elements
    - of course adjust accordingly to your atomic interactions and optimized structure's bond distances.
    - I like using VESTA (link to here https://jp-minerals.org/vesta/en/) to visualize this
  4. run mpirun -np 20 vasp_std>COHP&
  5. Export wavecar file if needed
  6. Run lobster-5.0.0
  7. Import COOPCAR.lobster, COHPCAR.lobster, ICOOPLIST.lobster, ICOHPLIST.lobster to local machine as needed for plotting
  8. Open wxDragon, drag COOPCAR/COHPCAR files to analyze the files
  9. Plot and save each of the same pairwise elemental interaction, following the same steps as before in the DOS steps. This time, the pairwise interactions are labelled.

Processor Considerations

  1. More processors doesn’t necessarily mean faster computations!

Troubleshooting

  1. ERROR FEXCP: supplied exchange-correlation table is too small, maximal index: 5536
    • Solved by adding the following to INCAR:
      • IBRION=1
      • ISIF=2
  2. To calculate NBANDS:
    • # of bands = (# of electrons/2) + (# of ions*2)
      • Running grep NELECT OUTCAR after an optimization will give you the number of electrons, and grep NIONS OUTCAR will give you the number of ions
      • Running grep VRHFIN POTCAR may also give you the number of bands (not certain, have to double check)