Skip to content

Commit

Permalink
test
Browse files Browse the repository at this point in the history
  • Loading branch information
RagnarB83 committed Aug 8, 2024
1 parent 7212f1e commit 9213cd1
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions ash/modules/module_oniom.py
Original file line number Diff line number Diff line change
Expand Up @@ -504,8 +504,9 @@ def run(self, current_coords=None, Grad=False, elems=None, charge=None, mult=Non
pair = sorted(self.linkatoms_dict.keys())[i]
Lcoord=self.linkatoms_dict[pair]
print("Lcoord:", Lcoord)
# Looping over both theory-levels calculated
for theory_grad in [G_dict[(0,0)],G_dict[(1,0)]]:
# Looping over theory-levels calculated
diffgrad=G_dict[(0,0)]-G_dict[(1,0)]
for theory_grad in [diffgrad]:
# Region gradient
Lgrad=theory_grad[linkatomindex]
print("Lgrad:", Lgrad)
Expand Down

0 comments on commit 9213cd1

Please sign in to comment.