mirror of
https://github.com/triqs/dft_tools
synced 2024-11-14 18:13:49 +01:00
54b9857aa5
The new method in ElectronicStructure allows one to output denisty and overlap matrices originating from the raw projectors read from PROJCAR (LOCPROJ). This output is mainly intended for debug purposes.
29 lines
833 B
Python
29 lines
833 B
Python
|
|
import sys
|
|
import vaspio
|
|
from inpconf import ConfigParameters
|
|
from elstruct import ElectronicStructure
|
|
from plotools import generate_plo, output_as_text
|
|
|
|
if __name__ == '__main__':
|
|
narg = len(sys.argv)
|
|
if narg < 2:
|
|
raise SystemExit(" Usage: python main.py <conf-file> [<path-to-vasp-calcultaion>]")
|
|
else:
|
|
filename = sys.argv[1]
|
|
if narg > 2:
|
|
vasp_dir = sys.argv[2]
|
|
if vasp_dir[-1] != '/':
|
|
vasp_dir += '/'
|
|
else:
|
|
vasp_dir = './'
|
|
|
|
|
|
pars = ConfigParameters(filename, verbosity=0)
|
|
pars.parse_input()
|
|
vasp_data = vaspio.VaspData(vasp_dir)
|
|
el_struct = ElectronicStructure(vasp_data)
|
|
el_struct.debug_density_matrix()
|
|
pshells, pgroups = generate_plo(pars, el_struct)
|
|
output_as_text(pars, el_struct, pshells, pgroups)
|