Skip to content

Commit 2e403e7

Browse files
committed
Adds Fe, Mo, and T and corrects Q/W/s/Es values using Yamamura and Tawara 1996, addressing #212
1 parent d3d3768 commit 2e403e7

File tree

1 file changed

+34
-0
lines changed

1 file changed

+34
-0
lines changed

scripts/materials.py

+34
Original file line numberDiff line numberDiff line change
@@ -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 = {
@@ -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)