Skip to content

[WIP] Add cusp correction based on atomic orbitals #4901

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Draft
wants to merge 6 commits into
base: develop
Choose a base branch
from
Draft
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Correct all the s-type orbitals
n is a label, not a quantum number
  • Loading branch information
markdewing committed Jan 22, 2024
commit 60c644a2ded636ca353975e405b112a48b64ea08
2 changes: 1 addition & 1 deletion utils/compute_cusp_correction.py
Original file line number Diff line number Diff line change
Expand Up @@ -181,7 +181,7 @@ def find_s_orbitals(fname):
bas_group = atbs["basisGroup" + str(ig)]
l = bas_group["l"][0]
n = bas_group["n"][0]
if l == 0 and n in [0, 1]:
if l == 0:
print(" ", ig, n, l)
s_orbs.append((ib, elem, ig, n, l))

Expand Down