Merge pull request #134 from the-hampel/2.2.x

fixed a slicing bug for the calculation of the target density of the VASP converter
This commit is contained in:
Markus Aichhorn 2020-03-31 14:56:17 +02:00 committed by GitHub
commit e382b0a357
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -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