mirror of
https://github.com/triqs/dft_tools
synced 2024-11-13 01:23:50 +01:00
a1209f8a53
* adapted all occurences of the converter script file names including the doc files * fixed one failing test: Py_basis_transformation.py
16 lines
495 B
Python
16 lines
495 B
Python
from triqs_dft_tools.converters.wien2k 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)
|