-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsupported.py
45 lines (39 loc) · 1.11 KB
/
supported.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
#!/usr/bin/env python
#%%
import basis_set_exchange as bse
import click
# %%
@click.command()
@click.argument("element")
def find_compatible_basissets(element):
found = {}
Z = bse.lut.element_Z_from_sym("N")
for basis in bse.get_all_basis_names():
try:
db = bse.get_basis(basis, element)
except:
continue
try:
db = db["elements"][str(Z)]["electron_shells"]
except:
continue
works = True
count = 0
for shell in db:
if shell["function_type"] != "gto":
works = False
for angmom, coeffs in zip(shell["angular_momentum"], shell["coefficients"]):
if angmom > 1:
works = False
if angmom == 0:
count += 1
if angmom == 1:
count += 3
if count * 2 < Z:
works = False
if works:
found[basis] = count
for k, v in sorted(found.items(), key=lambda x: x[1]):
print(k)
if __name__ == "__main__":
find_compatible_basissets()