pyTEMlib 0.2025.12.0__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (92) hide show
  1. build/lib/pyTEMlib/__init__.py +36 -0
  2. build/lib/pyTEMlib/animation.py +667 -0
  3. build/lib/pyTEMlib/atom_tools.py +229 -0
  4. build/lib/pyTEMlib/config_dir.py +43 -0
  5. build/lib/pyTEMlib/crystal_tools.py +1219 -0
  6. build/lib/pyTEMlib/diffraction_plot.py +757 -0
  7. build/lib/pyTEMlib/dynamic_scattering.py +298 -0
  8. build/lib/pyTEMlib/eds_tools.py +901 -0
  9. build/lib/pyTEMlib/eds_xsections.py +268 -0
  10. build/lib/pyTEMlib/eels_tools/__init__.py +44 -0
  11. build/lib/pyTEMlib/eels_tools/core_loss_tools.py +751 -0
  12. build/lib/pyTEMlib/eels_tools/eels_database.py +134 -0
  13. build/lib/pyTEMlib/eels_tools/low_loss_tools.py +655 -0
  14. build/lib/pyTEMlib/eels_tools/peak_fit_tools.py +175 -0
  15. build/lib/pyTEMlib/eels_tools/zero_loss_tools.py +264 -0
  16. build/lib/pyTEMlib/file_reader.py +275 -0
  17. build/lib/pyTEMlib/file_tools.py +816 -0
  18. build/lib/pyTEMlib/get_bote_salvat.py +69 -0
  19. build/lib/pyTEMlib/graph_tools.py +1153 -0
  20. build/lib/pyTEMlib/graph_viz.py +599 -0
  21. build/lib/pyTEMlib/image/__init__.py +37 -0
  22. build/lib/pyTEMlib/image/image_atoms.py +270 -0
  23. build/lib/pyTEMlib/image/image_clean.py +198 -0
  24. build/lib/pyTEMlib/image/image_distortion.py +299 -0
  25. build/lib/pyTEMlib/image/image_fft.py +278 -0
  26. build/lib/pyTEMlib/image/image_graph.py +926 -0
  27. build/lib/pyTEMlib/image/image_registration.py +316 -0
  28. build/lib/pyTEMlib/image/image_utilities.py +308 -0
  29. build/lib/pyTEMlib/image/image_window.py +421 -0
  30. build/lib/pyTEMlib/image_tools.py +701 -0
  31. build/lib/pyTEMlib/interactive_image.py +1 -0
  32. build/lib/pyTEMlib/kinematic_scattering.py +1145 -0
  33. build/lib/pyTEMlib/microscope.py +62 -0
  34. build/lib/pyTEMlib/probe_tools.py +928 -0
  35. build/lib/pyTEMlib/sidpy_tools.py +153 -0
  36. build/lib/pyTEMlib/simulation_tools.py +104 -0
  37. build/lib/pyTEMlib/test.py +437 -0
  38. build/lib/pyTEMlib/utilities.py +431 -0
  39. build/lib/pyTEMlib/version.py +5 -0
  40. build/lib/pyTEMlib/xrpa_x_sections.py +20976 -0
  41. pyTEMlib/__init__.py +36 -0
  42. pyTEMlib/animation.py +667 -0
  43. pyTEMlib/atom_tools.py +229 -0
  44. pyTEMlib/config_dir.py +43 -0
  45. pyTEMlib/crystal_tools.py +1219 -0
  46. pyTEMlib/data/k_factors_Bruker_15keV.json +293 -0
  47. pyTEMlib/data/k_factors_Thermo_200keV.json +494 -0
  48. pyTEMlib/data/xrays_X_section_100kV.json +19334 -0
  49. pyTEMlib/data/xrays_X_section_200kV.json +18711 -0
  50. pyTEMlib/data/xrays_X_section_300kV.json +18347 -0
  51. pyTEMlib/data/xrays_X_section_60kV.json +20202 -0
  52. pyTEMlib/diffraction_plot.py +757 -0
  53. pyTEMlib/dynamic_scattering.py +298 -0
  54. pyTEMlib/eds_tools.py +901 -0
  55. pyTEMlib/eds_xsections.py +268 -0
  56. pyTEMlib/eels_tools/__init__.py +44 -0
  57. pyTEMlib/eels_tools/core_loss_tools.py +751 -0
  58. pyTEMlib/eels_tools/eels_database.py +134 -0
  59. pyTEMlib/eels_tools/low_loss_tools.py +655 -0
  60. pyTEMlib/eels_tools/peak_fit_tools.py +175 -0
  61. pyTEMlib/eels_tools/zero_loss_tools.py +264 -0
  62. pyTEMlib/file_reader.py +275 -0
  63. pyTEMlib/file_tools.py +816 -0
  64. pyTEMlib/get_bote_salvat.py +69 -0
  65. pyTEMlib/graph_tools.py +1153 -0
  66. pyTEMlib/graph_viz.py +599 -0
  67. pyTEMlib/image/__init__.py +37 -0
  68. pyTEMlib/image/image_atoms.py +270 -0
  69. pyTEMlib/image/image_clean.py +198 -0
  70. pyTEMlib/image/image_distortion.py +299 -0
  71. pyTEMlib/image/image_fft.py +278 -0
  72. pyTEMlib/image/image_graph.py +926 -0
  73. pyTEMlib/image/image_registration.py +316 -0
  74. pyTEMlib/image/image_utilities.py +308 -0
  75. pyTEMlib/image/image_window.py +421 -0
  76. pyTEMlib/image_tools.py +701 -0
  77. pyTEMlib/interactive_image.py +1 -0
  78. pyTEMlib/kinematic_scattering.py +1145 -0
  79. pyTEMlib/microscope.py +62 -0
  80. pyTEMlib/probe_tools.py +928 -0
  81. pyTEMlib/sidpy_tools.py +153 -0
  82. pyTEMlib/simulation_tools.py +104 -0
  83. pyTEMlib/test.py +437 -0
  84. pyTEMlib/utilities.py +431 -0
  85. pyTEMlib/version.py +5 -0
  86. pyTEMlib/xrpa_x_sections.py +20976 -0
  87. pytemlib-0.2025.12.0.dist-info/METADATA +100 -0
  88. pytemlib-0.2025.12.0.dist-info/RECORD +92 -0
  89. pytemlib-0.2025.12.0.dist-info/WHEEL +5 -0
  90. pytemlib-0.2025.12.0.dist-info/entry_points.txt +2 -0
  91. pytemlib-0.2025.12.0.dist-info/licenses/LICENSE +21 -0
  92. pytemlib-0.2025.12.0.dist-info/top_level.txt +5 -0
@@ -0,0 +1,293 @@
1
+ {
2
+ " ": {},
3
+ "H": {},
4
+ "He": {},
5
+ "Li": {
6
+ "Ka1": 199262.177552
7
+ },
8
+ "Be": {
9
+ "Ka1": 1973.302465
10
+ },
11
+ "B": {
12
+ "Ka1": 21.236611
13
+ },
14
+ "C": {
15
+ "Ka1": 4.535546
16
+ },
17
+ "N": {
18
+ "Ka1": 3.377151
19
+ },
20
+ "O": {
21
+ "Ka1": 1.684306
22
+ },
23
+ "F": {
24
+ "Ka1": 1.373522
25
+ },
26
+ "Ne": {
27
+ "Ka1": 0.840958
28
+ },
29
+ "Na": {
30
+ "Ka1": 0.831523
31
+ },
32
+ "Mg": {
33
+ "Ka1": 0.874677
34
+ },
35
+ "Al": {
36
+ "Ka1": 0.941517
37
+ },
38
+ "Si": {
39
+ "Ka1": 1.0
40
+ },
41
+ "P": {
42
+ "Ka1": 1.122608
43
+ },
44
+ "S": {
45
+ "Ka1": 1.110361
46
+ },
47
+ "Cl": {
48
+ "Ka1": 1.194206
49
+ },
50
+ "Ar": {
51
+ "Ka1": 1.349923
52
+ },
53
+ "K": {
54
+ "Ka1": 1.328187
55
+ },
56
+ "Ca": {
57
+ "Ka1": 1.483277,
58
+ "La1": 113.108097
59
+ },
60
+ "Sc": {
61
+ "Ka1": 1.602258,
62
+ "La1": 41.605292
63
+ },
64
+ "Ti": {
65
+ "Ka1": 1.71501,
66
+ "La1": 27.954441
67
+ },
68
+ "V": {
69
+ "Ka1": 1.892748,
70
+ "La1": 10.132078
71
+ },
72
+ "Cr": {
73
+ "Ka1": 2.048776,
74
+ "La1": 7.036955
75
+ },
76
+ "Mn": {
77
+ "Ka1": 2.340459,
78
+ "La1": 4.310913
79
+ },
80
+ "Fe": {
81
+ "Ka1": 2.606972,
82
+ "La1": 2.444223
83
+ },
84
+ "Co": {
85
+ "Ka1": 3.077673,
86
+ "La1": 2.067716
87
+ },
88
+ "Ni": {
89
+ "Ka1": 3.495325,
90
+ "La1": 1.60208
91
+ },
92
+ "Cu": {
93
+ "Ka1": 4.412295,
94
+ "La1": 1.488841
95
+ },
96
+ "Zn": {
97
+ "Ka1": 5.461802,
98
+ "La1": 1.550826
99
+ },
100
+ "Ga": {
101
+ "Ka1": 7.376061,
102
+ "La1": 1.897749
103
+ },
104
+ "Ge": {
105
+ "Ka1": 10.032011,
106
+ "La1": 1.864729
107
+ },
108
+ "As": {
109
+ "Ka1": 14.491505,
110
+ "La1": 1.967999
111
+ },
112
+ "Se": {
113
+ "Ka1": 23.254402,
114
+ "La1": 2.015297
115
+ },
116
+ "Br": {
117
+ "Ka1": 41.610524,
118
+ "La1": 2.005668
119
+ },
120
+ "Kr": {
121
+ "Ka1": 115.321809,
122
+ "La1": 2.194932
123
+ },
124
+ "Rb": {
125
+ "La1": 2.211374
126
+ },
127
+ "Sr": {
128
+ "La1": 2.284514
129
+ },
130
+ "Y": {
131
+ "La1": 2.494853
132
+ },
133
+ "Zr": {
134
+ "La1": 2.548675
135
+ },
136
+ "Nb": {
137
+ "La1": 2.532632
138
+ },
139
+ "Mo": {
140
+ "La1": 2.615935
141
+ },
142
+ "Tc": {
143
+ "La1": 2.834647
144
+ },
145
+ "Ru": {
146
+ "La1": 2.844732
147
+ },
148
+ "Rh": {
149
+ "La1": 3.041667
150
+ },
151
+ "Pd": {
152
+ "La1": 3.231271
153
+ },
154
+ "Ag": {
155
+ "La1": 3.37093
156
+ },
157
+ "Cd": {
158
+ "La1": 3.60242
159
+ },
160
+ "In": {
161
+ "La1": 3.674909
162
+ },
163
+ "Sn": {
164
+ "La1": 4.221025
165
+ },
166
+ "Sb": {
167
+ "La1": 4.467568
168
+ },
169
+ "Te": {
170
+ "La1": 4.775087
171
+ },
172
+ "I": {
173
+ "La1": 4.866844
174
+ },
175
+ "Xe": {
176
+ "La1": 5.124484
177
+ },
178
+ "Cs": {
179
+ "La1": 5.29609
180
+ },
181
+ "Ba": {
182
+ "La1": 5.603956,
183
+ "Ma1": 222.405322
184
+ },
185
+ "La": {
186
+ "La1": 5.744466,
187
+ "Ma1": 31.946308
188
+ },
189
+ "Ce": {
190
+ "La1": 5.911067,
191
+ "Ma1": 19.02951
192
+ },
193
+ "Pr": {
194
+ "La1": 6.075075,
195
+ "Ma1": 14.789764
196
+ },
197
+ "Nd": {
198
+ "La1": 6.36596,
199
+ "Ma1": 9.884889
200
+ },
201
+ "Pm": {
202
+ "La1": 6.590853,
203
+ "Ma1": 7.430596
204
+ },
205
+ "Sm": {
206
+ "La1": 7.151109,
207
+ "Ma1": 7.121813
208
+ },
209
+ "Eu": {
210
+ "La1": 7.43809,
211
+ "Ma1": 5.339695
212
+ },
213
+ "Gd": {
214
+ "La1": 7.952907,
215
+ "Ma1": 2.544709
216
+ },
217
+ "Tb": {
218
+ "La1": 8.28573,
219
+ "Ma1": 4.030943
220
+ },
221
+ "Dy": {
222
+ "La1": 8.717727,
223
+ "Ma1": 3.432336
224
+ },
225
+ "Ho": {
226
+ "La1": 9.253349,
227
+ "Ma1": 3.200858
228
+ },
229
+ "Er": {
230
+ "La1": 9.753814,
231
+ "Ma1": 2.946294
232
+ },
233
+ "Tm": {
234
+ "La1": 10.364749,
235
+ "Ma1": 2.537735
236
+ },
237
+ "Yb": {
238
+ "La1": 10.795824,
239
+ "Ma1": 2.447215
240
+ },
241
+ "Lu": {
242
+ "La1": 12.124845,
243
+ "Ma1": 1.836377
244
+ },
245
+ "Hf": {
246
+ "La1": 13.264358,
247
+ "Ma1": 1.785975
248
+ },
249
+ "Ta": {
250
+ "La1": 14.453763,
251
+ "Ma1": 1.728186
252
+ },
253
+ "W": {
254
+ "La1": 15.922485,
255
+ "Ma1": 1.713441
256
+ },
257
+ "Re": {
258
+ "La1": 17.311129,
259
+ "Ma1": 2.418239
260
+ },
261
+ "Os": {
262
+ "La1": 19.130146,
263
+ "Ma1": 0.771448
264
+ },
265
+ "Ir": {
266
+ "La1": 21.189236,
267
+ "Ma1": 1.351382
268
+ },
269
+ "Pt": {
270
+ "La1": 24.215423,
271
+ "Ma1": 1.531165
272
+ },
273
+ "Au": {
274
+ "La1": 27.599766,
275
+ "Ma1": 1.64444
276
+ },
277
+ "Hg": {
278
+ "La1": 32.728714,
279
+ "Ma1": 2.108359
280
+ },
281
+ "Tl": {
282
+ "La1": 39.944821,
283
+ "Ma1": 3.103255
284
+ },
285
+ "Pb": {
286
+ "La1": 50.134088,
287
+ "Ma1": 3.628711
288
+ },
289
+ "Bi": {
290
+ "La1": 65.687828,
291
+ "Ma1": 3.829851
292
+ }
293
+ }