mirror of
https://github.com/triqs/dft_tools
synced 2024-12-21 11:53:41 +01:00
fixed a slicing bug for the calculation of the target density in the VASP converter, which selected 1 band less in the correlated window than required.
This commit is contained in:
parent
7d1b16136f
commit
a56872c277
@ -94,7 +94,7 @@ class ProjectorGroup:
|
||||
for isp in xrange(ns_band):
|
||||
for ik in xrange(nk):
|
||||
ib1 = self.ib_win[ik, isp, 0]
|
||||
ib2 = self.ib_win[ik, isp, 1]
|
||||
ib2 = self.ib_win[ik, isp, 1]+1
|
||||
occ = el_struct.ferw[isp, ik, ib1:ib2]
|
||||
kwght = el_struct.kmesh['kweights'][ik]
|
||||
self.nelect += occ.sum() * kwght * rspin
|
||||
|
Loading…
Reference in New Issue
Block a user