Skip to content

Commit 35425ff

Browse files
authored
Merge pull request #254 from sonatav2/main
Adds Fe, Mo, and T and corrects Q/W/s/Es values using Yamamura and Tawara 1996, addressing #212
2 parents d3d3768 + 19d783e commit 35425ff

File tree

1 file changed

+39
-5
lines changed

1 file changed

+39
-5
lines changed

scripts/materials.py

+39-5
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
'Es': 4.84,
77
'Ec': 3.5,
88
'Eb': 3.,
9-
'Q': 0.58,
9+
'Q': 0.54,
1010
'n': 5.67e28,
1111
'W': 2.57,
1212
's': 2.5
@@ -21,6 +21,9 @@
2121
'Es': 7.37,
2222
'Ec': 1.0,
2323
'Eb': 3.0,
24+
'Q': 1.70,
25+
'W': 1.84,
26+
's': 2.5
2427
}
2528

2629
chromium = {
@@ -129,10 +132,10 @@
129132
'Z': 5.0,
130133
'm': 10.811,
131134
'n': 1.309E29,
132-
'Es': 5.76,
135+
'Es': 5.77,
133136
'Eb': 0.,
134137
'Ec': 5.,
135-
'Q': 4.6,
138+
'Q': 2.62,
136139
'W': 4.39,
137140
's': 2.5
138141
}
@@ -247,10 +250,10 @@
247250
'Z': 74.0,
248251
'm': 183.84,
249252
'n': 6.306E28,
250-
'Es': 8.79,
253+
'Es': 8.9,
251254
'Eb': 0.,
252255
'Ec': 3.0,
253-
'Q': 1.10,
256+
'Q': 0.72,
254257
'W': 2.14,
255258
's': 2.8
256259
}
@@ -296,3 +299,34 @@
296299
'Ec': 1.0,
297300
'Es': 0.
298301
}
302+
303+
tritium = {
304+
'symbol': 'T',
305+
'name': 'tritium',
306+
'Z': 1.0,
307+
'm': 3.0,
308+
'Ec': 0.1,
309+
'Es': 1.5,
310+
}
311+
312+
iron = {
313+
'symbol': 'Fe',
314+
'name': 'iron',
315+
'Z': 26.0,
316+
'm': 55.845,
317+
'Q': 0.75,
318+
'W': 1.20,
319+
's': 2.5,
320+
'Es': 4.28,
321+
}
322+
323+
molybdenum = {
324+
'symbol': 'Mo',
325+
'name': 'molybdenum',
326+
'Z': 42.0,
327+
'm': 95.95,
328+
'Q': 0.85,
329+
'W': 2.39,
330+
's': 2.8,
331+
'Es': 6.82,
332+
}

0 commit comments

Comments
 (0)