mirror of
https://github.com/triqs/dft_tools
synced 2024-10-31 19:23:45 +01:00
10 lines
325 B
Python
10 lines
325 B
Python
|
from triqs_dft_tools.converters.vasp import *
|
||
|
import triqs_dft_tools.converters.plovasp.converter as plo_converter
|
||
|
|
||
|
# Generate and store PLOs
|
||
|
plo_converter.generate_and_output_as_text('plo.cfg', vasp_dir='./')
|
||
|
|
||
|
# run the converter
|
||
|
Converter = VaspConverter(filename = 'vasp', proj_or_hk = 'hk')
|
||
|
Converter.convert_dft_input()
|