Jump to content

Requests for technical support from the VASP team should be posted in the VASP Forum.

Preparing a POTCAR: Difference between revisions

From VASP Wiki
Wolloch (talk | contribs)
Wolloch (talk | contribs)
 
(One intermediate revision by the same user not shown)
Line 35: Line 35:
==Example for preparing a {{FILE|POTCAR}} for the Heusler alloy TiCo<sub>2</sub>Si==
==Example for preparing a {{FILE|POTCAR}} for the Heusler alloy TiCo<sub>2</sub>Si==


In this example, we want to prepare a {{FILE|POTCAR}} for a PBE calculation of ferromagnetic TiCo<sub>2</sub>Si. We are interested in the size of the magnetic moments.
In this example, we want to prepare a {{FILE|POTCAR}} for a PBE calculation of ferromagnetic TiCo<sub>2</sub>Si. We are interested in the energy difference between the ferromagnetic and the nonmagnetic solutions.


The structure is defined by the following {{FILE|POSCAR}}:
The structure is defined by the following {{FILE|POSCAR}}:
Line 51: Line 51:
   0.5000000000000000    0.5000000000000000    0.5000000000000000 Ti
   0.5000000000000000    0.5000000000000000    0.5000000000000000 Ti


We will use the potpaw_PBE.64 potential set, and since we are interested in magnetic properties, we should use potentials with additional semicore-states in the valence. The Co_pv and Ti_sv potentials seem appropriate for the transition metals. We do not expect Si to become magnetic and are not interested in unoccupied states, so the Si potential is a good choice compared to the harder, computationally more demanding Si_GW or even Si_sv_GW.
We will use the potpaw_PBE.64 potential set, and since we are interested in small energy differences caused by different magnetic solutions, we should use potentials with additional semicore-states in the valence for the 3d metals. The Co_pv and Ti_sv potentials seem appropriate for the transition metals. We do not expect Si to become magnetic and are not interested in unoccupied states, so the Si potential is a good choice compared to the harder, computationally more demanding Si_GW or even Si_sv_GW.


On a UNIX machine, one can use the <code>cat</code> command to concatenate files together. One can redirect the output from <code>stdout</code> to a file using the <code>></code> operator. The order in the {{FILE|POSCAR}} dictates the order in the {{FILE|POTCAR}}:
On a UNIX machine, one can use the <code>cat</code> command to concatenate files together. One can redirect the output from <code>stdout</code> to a file using the <code>></code> operator. The order in the {{FILE|POSCAR}} dictates the order in the {{FILE|POTCAR}}:
Line 58: Line 58:
==Related tags and sections==
==Related tags and sections==


[[Available potentials]], {{FILE|POTCAR}}, [[Choosing pseudopotentials]], [[Theory:Pseudopotential basics]], [[Projector-augmented-wave formalism]]
[[Available potentials]], {{FILE|POTCAR}}, [[Choosing pseudopotentials]], <!--[[Theory:Pseudopotential basics]],--> [[Projector-augmented-wave formalism]]


[[Category:Pseudopotentials]][[Category:Howto]]
[[Category:Pseudopotentials]][[Category:Howto]]

Latest revision as of 13:26, 26 June 2024

The POTCAR file is a mandatory input file that holds the pseudopotential for each element in the structure. The templates for each element can be downloaded from the VASP Portal. There are sometimes multiple templates for one element with subtle differences.

Step-by-step instructions

Step 1: Select the latest version of POTCAR files unless you need to use an older one to reproduce a result.

Step 2: Choose

Step 3: Select a POTCAR for a certain family of exchange-correlation (XC) functionals.

All potentials are constructed based on solving the scalar relativistic Schrödinger equation for a reference system with a certain XC functional. In most versions, one set is available for the LDA, and one for the GGA. The transferability to other XC functionals is seamless by specifying the XC tag in the INCAR.

Step 4 (optional): Choose a different variant (reference atomic valence configuration, etc.) specified by the suffix.

See choosing pseudopotentials.

Step 5: For a single element in the structure, you can copy the POTCAR to the working directory, e.g,

 cp /path/to/pot/Al/POTCAR .
For structures with multiple elements, the selected POTCAR files must be concatenated to create one POTCAR file containing all species present in the structure. Combine the potentials by entering, for instance,
 cat /path/to/pot/Al/POTCAR /path/to/pot/C/POTCAR /path/to/pot/H/POTCAR > POTCAR 
The order of the potentials must correspond to the order of the species in the POSCAR file.

Recommendations and advice

Example for preparing a POTCAR for the Heusler alloy TiCo2Si

In this example, we want to prepare a POTCAR for a PBE calculation of ferromagnetic TiCo2Si. We are interested in the energy difference between the ferromagnetic and the nonmagnetic solutions.

The structure is defined by the following POSCAR:

TiCo2Si
 1.0
  0.0000000000000000    2.8580789844367893    2.8580789844367893
  2.8580789844367893    0.0000000000000000    2.8580789844367893
  2.8580789844367893    2.8580789844367893    0.0000000000000000
Co Si Ti
 2  1  1
direct
  0.7500000000000000    0.7500000000000000    0.7500000000000000 Co
  0.2500000000000000    0.2500000000000000    0.2500000000000000 Co
  0.0000000000000000    0.0000000000000000    0.0000000000000000 Si
  0.5000000000000000    0.5000000000000000    0.5000000000000000 Ti

We will use the potpaw_PBE.64 potential set, and since we are interested in small energy differences caused by different magnetic solutions, we should use potentials with additional semicore-states in the valence for the 3d metals. The Co_pv and Ti_sv potentials seem appropriate for the transition metals. We do not expect Si to become magnetic and are not interested in unoccupied states, so the Si potential is a good choice compared to the harder, computationally more demanding Si_GW or even Si_sv_GW.

On a UNIX machine, one can use the cat command to concatenate files together. One can redirect the output from stdout to a file using the > operator. The order in the POSCAR dictates the order in the POTCAR:

cat ~/potpaw_PBE.64/Co_pv/POTCAR ~/potpaw_PBE.64/Si/POTCAR ~/potpaw_PBE.64/Ti_sv/POTCAR > ~/scratch/TiCo2Si/POTCAR

Related tags and sections

Available potentials, POTCAR, Choosing pseudopotentials, Projector-augmented-wave formalism