-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #116 from marcelmbn/dev/gp3_ipea
Update `dev/gp3_ipea` to latest state
- Loading branch information
Showing
26 changed files
with
1,096 additions
and
425 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
""" | ||
This file is used to import all the constants from the constants.py file and the parameters.py file. | ||
""" | ||
|
||
from mindlessgen.data.constants import ( | ||
PSE, | ||
PSE_NUMBERS, | ||
PSE_SYMBOLS, | ||
BOHR2AA, | ||
AA2BOHR, | ||
) | ||
|
||
from mindlessgen.data.parameters import ( | ||
MAX_ELEM, | ||
) | ||
|
||
__all__ = [ | ||
"PSE", | ||
"PSE_NUMBERS", | ||
"PSE_SYMBOLS", | ||
"BOHR2AA", | ||
"AA2BOHR", | ||
"MAX_ELEM", | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,132 @@ | ||
""" | ||
This module contains the constans which are used in the project. | ||
""" | ||
|
||
PSE: dict[int, str] = { | ||
0: "X", | ||
1: "H", | ||
2: "He", | ||
3: "Li", | ||
4: "Be", | ||
5: "B", | ||
6: "C", | ||
7: "N", | ||
8: "O", | ||
9: "F", | ||
10: "Ne", | ||
11: "Na", | ||
12: "Mg", | ||
13: "Al", | ||
14: "Si", | ||
15: "P", | ||
16: "S", | ||
17: "Cl", | ||
18: "Ar", | ||
19: "K", | ||
20: "Ca", | ||
21: "Sc", | ||
22: "Ti", | ||
23: "V", | ||
24: "Cr", | ||
25: "Mn", | ||
26: "Fe", | ||
27: "Co", | ||
28: "Ni", | ||
29: "Cu", | ||
30: "Zn", | ||
31: "Ga", | ||
32: "Ge", | ||
33: "As", | ||
34: "Se", | ||
35: "Br", | ||
36: "Kr", | ||
37: "Rb", | ||
38: "Sr", | ||
39: "Y", | ||
40: "Zr", | ||
41: "Nb", | ||
42: "Mo", | ||
43: "Tc", | ||
44: "Ru", | ||
45: "Rh", | ||
46: "Pd", | ||
47: "Ag", | ||
48: "Cd", | ||
49: "In", | ||
50: "Sn", | ||
51: "Sb", | ||
52: "Te", | ||
53: "I", | ||
54: "Xe", | ||
55: "Cs", | ||
56: "Ba", | ||
57: "La", | ||
58: "Ce", | ||
59: "Pr", | ||
60: "Nd", | ||
61: "Pm", | ||
62: "Sm", | ||
63: "Eu", | ||
64: "Gd", | ||
65: "Tb", | ||
66: "Dy", | ||
67: "Ho", | ||
68: "Er", | ||
69: "Tm", | ||
70: "Yb", | ||
71: "Lu", | ||
72: "Hf", | ||
73: "Ta", | ||
74: "W", | ||
75: "Re", | ||
76: "Os", | ||
77: "Ir", | ||
78: "Pt", | ||
79: "Au", | ||
80: "Hg", | ||
81: "Tl", | ||
82: "Pb", | ||
83: "Bi", | ||
84: "Po", | ||
85: "At", | ||
86: "Rn", | ||
87: "Fr", | ||
88: "Ra", | ||
89: "Ac", | ||
90: "Th", | ||
91: "Pa", | ||
92: "U", | ||
93: "Np", | ||
94: "Pu", | ||
95: "Am", | ||
96: "Cm", | ||
97: "Bk", | ||
98: "Cf", | ||
99: "Es", | ||
100: "Fm", | ||
101: "Md", | ||
102: "No", | ||
103: "Lr", | ||
104: "Rf", | ||
105: "Db", | ||
106: "Sg", | ||
107: "Bh", | ||
108: "Hs", | ||
109: "Mt", | ||
110: "Ds", | ||
111: "Rg", | ||
112: "Cn", | ||
113: "Nh", | ||
114: "Fl", | ||
115: "Mc", | ||
116: "Lv", | ||
117: "Ts", | ||
118: "Og", | ||
} | ||
PSE_NUMBERS: dict[str, int] = {k.lower(): v for v, k in PSE.items()} | ||
PSE_SYMBOLS: dict[int, str] = {v: k.lower() for v, k in PSE.items()} | ||
|
||
BOHR2AA = ( | ||
0.529177210544 # taken from https://physics.nist.gov/cgi-bin/cuu/Value?bohrrada0 | ||
) | ||
AA2BOHR = 1 / BOHR2AA |
Oops, something went wrong.