mirror of
https://github.com/NehZio/Crystal-MEC
synced 2024-11-03 20:54:03 +01:00
Corrected a bug when not using evjen
This commit is contained in:
parent
8b514b4293
commit
19a92fb431
@ -131,10 +131,11 @@ if __name__=='__main__':
|
||||
charges = evjen_charges(coordinates,atoms)
|
||||
else:
|
||||
charges = []
|
||||
atoms = np.array(atoms).flatten()
|
||||
for i in range(len(coordinates)):
|
||||
li = coordinates[i][3]
|
||||
ii = np.where(atoms=li)[0]
|
||||
charges.append(atoms[ii+1])
|
||||
ii = np.where(atoms==li)[0]
|
||||
charges.append(float(atoms[ii+1]))
|
||||
|
||||
if verbose > 1:
|
||||
print("The total charge fragment+pseudopotential+bath is : % 8.6f\n"%np.sum(charges))
|
||||
|
Loading…
Reference in New Issue
Block a user