3
0
mirror of https://github.com/triqs/dft_tools synced 2024-12-23 12:55:17 +01:00

removed corr and ion_list from shell in h5

This commit is contained in:
Malte Schüler 2019-07-01 11:34:34 +02:00
parent 251e3c16f3
commit 23e15abb66

View File

@ -177,7 +177,7 @@ class VaspConverter(ConverterTools):
# We set all sites inequivalent # We set all sites inequivalent
pars['sort'] = sh['ion_sort'][i] pars['sort'] = sh['ion_sort'][i]
pars['l'] = sh['lorb'] pars['l'] = sh['lorb']
pars['corr'] = sh['corr'] #pars['corr'] = sh['corr']
pars['dim'] = sh['ndim'] pars['dim'] = sh['ndim']
pars['ion_list'] = sh['ion_list'] pars['ion_list'] = sh['ion_list']
pars['SO'] = SO pars['SO'] = SO
@ -188,7 +188,7 @@ class VaspConverter(ConverterTools):
if ish > 0: if ish > 0:
shorbs_to_globalorbs[ish] = [shorbs_to_globalorbs[ish-1][1], shorbs_to_globalorbs[ish] = [shorbs_to_globalorbs[ish-1][1],
shorbs_to_globalorbs[ish-1][1]+sh['ndim']] shorbs_to_globalorbs[ish-1][1]+sh['ndim']]
if pars['corr']: if sh['corr']:
corr_shells.append(pars) corr_shells.append(pars)
crshorbs_to_globalorbs.append(shorbs_to_globalorbs[ish]) crshorbs_to_globalorbs.append(shorbs_to_globalorbs[ish])
@ -322,7 +322,7 @@ class VaspConverter(ConverterTools):
for iclm,ilm in enumerate(xrange(crshorbs_to_globalorbs[ish][0],crshorbs_to_globalorbs[ish][1])): for iclm,ilm in enumerate(xrange(crshorbs_to_globalorbs[ish][0],crshorbs_to_globalorbs[ish][1])):
proj_mat[ik,isp,icsh,iclm+addIndex,ilm] = 1.0 proj_mat[ik,isp,icsh,iclm+addIndex,ilm] = 1.0
addIndex += corr_shell['dim'] addIndex += corr_shell['dim']
corr_shell.pop('ion_list')
things_to_set = ['n_shells','shells','n_corr_shells','corr_shells','n_spin_blocs','n_orbitals','n_k','SO','SP','energy_unit'] things_to_set = ['n_shells','shells','n_corr_shells','corr_shells','n_spin_blocs','n_orbitals','n_k','SO','SP','energy_unit']
for it in things_to_set: for it in things_to_set:
# print "%s:"%(it), locals()[it] # print "%s:"%(it), locals()[it]