Hot-keys on this page
r m x p toggle line displays
j k next/prev highlighted chunk
0 (zero) top of page
1 (one) first highlighted chunk
1"""This module defines an ASE interface to VASP.
3The path of the directory containing the pseudopotential
4directories (potpaw,potpaw_GGA, potpaw_PBE, ...) should be set
5by the environmental flag $VASP_PP_PATH.
7The user should also set one of the following environmental flags, which
8instructs ASE on how to execute VASP: $ASE_VASP_COMMAND, $VASP_COMMAND, or
9$VASP_SCRIPT.
11The user can set the environmental flag $VASP_COMMAND pointing
12to the command use the launch vasp e.g. 'vasp_std' or 'mpirun -n 16 vasp_std'
14Alternatively, the user can also set the environmental flag
15$VASP_SCRIPT pointing to a python script looking something like::
17 import os
18 exitcode = os.system('vasp_std')
20www.vasp.at
21"""
23from ase.utils import deprecated
24from .vasp import Vasp
27class Vasp2(Vasp):
28 @deprecated(
29 'Vasp2 has been deprecated. Use the ase.calculators.vasp.Vasp class instead.'
30 )
31 def __init__(self, **kwargs):
32 super().__init__(**kwargs)