mirror of
https://github.com/triqs/dft_tools
synced 2024-11-18 20:12:53 +01:00
16 lines
505 B
Python
16 lines
505 B
Python
from triqs_dft_tools.converters.wien2k_converter import Wien2kConverter
|
|
from triqs_dft_tools import SumkDFTTools
|
|
|
|
filename = 'Sr2RuO4'
|
|
|
|
conv = Wien2kConverter(filename = filename,hdf_filename=filename+'.h5')
|
|
conv.convert_dft_input()
|
|
|
|
SK = SumkDFTTools(filename+'.h5')
|
|
mesh = (-10.0,10.0,500)
|
|
SK.dos_wannier_basis(broadening=(mesh[1]-mesh[0])/float(mesh[2]),
|
|
mesh=mesh,
|
|
save_to_file=True,
|
|
with_Sigma=False,
|
|
with_dc=False)
|