Skip to content

Commit

Permalink
[fix]: Changing CUT unit in minushalf_results file from Angstroms to …
Browse files Browse the repository at this point in the history
…Atomic Unit
  • Loading branch information
hentt30 committed Jun 6, 2021
1 parent 420039f commit 45d686c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions minushalf/utils/make_minushalf_results.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ def make_minushalf_results(
for key, value in valence_cuts.items():
symbol = key
cut = value
file.write("\t({}):{:.2f}A\n".format(symbol, cut))
file.write("\t({}):{:.2f} a.u\n".format(symbol, cut))
file.write(
"----------------------------------------------------------------\n"
)
Expand All @@ -43,7 +43,7 @@ def make_minushalf_results(
for key, value in conduction_cuts.items():
symbol = key
cut = value
file.write("\t({}):{:.2f}A\n".format(symbol, cut))
file.write("\t({}):{:.2f} a.u\n".format(symbol, cut))
file.write(
"----------------------------------------------------------------\n"
)
Expand Down

0 comments on commit 45d686c

Please sign in to comment.