3
0
mirror of https://github.com/triqs/dft_tools synced 2024-06-29 08:24:54 +02:00
dft_tools/test/python/elk/elk_equiv_convert.py
AlynJ ce4aed3551
elk-interface bug fixes (#228)
updated the Elk interface to fix some minor bugs which arose for certain systems with equivalent atoms. I've also included new tests for this interface and collated all of these interface tests in the "test/python/elk" subdirectory.
2022-11-10 11:11:28 -05:00

24 lines
626 B
Python

import os
from h5 import *
from triqs.utility.comparison_tests import *
from triqs.utility.h5diff import h5diff
import triqs.utility.mpi as mpi
from triqs_dft_tools.converters import ElkConverter
#get current working directory path
cwd = format(os.getcwd())
#location of test directory
testdir = cwd+'/elk_equiv_convert'
#change to test directory
os.chdir(testdir)
Converter = ElkConverter(filename='Ni3Al', repacking=True)
Converter.hdf_file = 'elk_equiv_convert.out.h5'
Converter.convert_dft_input()
if mpi.is_master_node():
h5diff('elk_equiv_convert.out.h5','elk_equiv_convert.ref.h5')
#return to cwd
os.chdir(cwd)