openmc-data 0.2.5__py3-none-any.whl → 0.2.7__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.
- openmc_data/__init__.py +1 -1
- openmc_data/_version.py +2 -2
- openmc_data/convert/convert_endf.py +10 -25
- openmc_data/convert/convert_fendl.py +19 -33
- openmc_data/convert/convert_jeff32.py +4 -4
- openmc_data/convert/convert_jeff33.py +4 -4
- openmc_data/convert/convert_tendl.py +6 -10
- openmc_data/depletion/add_branching_ratios.py +3 -2
- openmc_data/depletion/generate_endf71_chain_casl.py +4 -2
- openmc_data/depletion/generate_endf_chain.py +4 -2
- openmc_data/depletion/generate_jeff_chain.py +4 -2
- openmc_data/depletion/generate_serpent_fissq.py +4 -2
- openmc_data/depletion/generate_tendl_chain.py +4 -2
- openmc_data/depletion/reduce_chain.py +41 -8
- openmc_data/generate/generate_endf.py +2 -6
- openmc_data/generate/generate_fendl.py +124 -0
- openmc_data/generate/generate_jendl.py +1 -1
- openmc_data/urls.py +392 -254
- openmc_data/utils.py +26 -5
- {openmc_data-0.2.5.dist-info → openmc_data-0.2.7.dist-info}/METADATA +1 -1
- {openmc_data-0.2.5.dist-info → openmc_data-0.2.7.dist-info}/RECORD +25 -24
- {openmc_data-0.2.5.dist-info → openmc_data-0.2.7.dist-info}/entry_points.txt +1 -0
- {openmc_data-0.2.5.dist-info → openmc_data-0.2.7.dist-info}/LICENSE +0 -0
- {openmc_data-0.2.5.dist-info → openmc_data-0.2.7.dist-info}/WHEEL +0 -0
- {openmc_data-0.2.5.dist-info → openmc_data-0.2.7.dist-info}/top_level.txt +0 -0
openmc_data/urls.py
CHANGED
|
@@ -2,331 +2,469 @@ all_release_details = {
|
|
|
2
2
|
"tendl": {
|
|
3
3
|
"2015": {
|
|
4
4
|
"neutron": {
|
|
5
|
-
"
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
5
|
+
"ace": {
|
|
6
|
+
"base_url": "https://tendl.web.psi.ch/tendl_2015/tar_files/",
|
|
7
|
+
"compressed_files": ["ACE-n.tgz"],
|
|
8
|
+
"neutron_files": "neutron_file/*/*/lib/endf/*-n.ace",
|
|
9
|
+
"metastables": "neutron_file/*/*/lib/endf/*m-n.ace",
|
|
10
|
+
"compressed_file_size": 5.1,
|
|
11
|
+
"uncompressed_file_size": 40,
|
|
12
|
+
}
|
|
11
13
|
}
|
|
12
14
|
},
|
|
13
15
|
"2017": {
|
|
14
16
|
"neutron": {
|
|
15
|
-
"
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
17
|
+
"ace":{
|
|
18
|
+
"base_url": "https://tendl.web.psi.ch/tendl_2017/tar_files/",
|
|
19
|
+
"compressed_files": ["tendl17c.tar.bz2"],
|
|
20
|
+
"neutron_files": "ace-17/*",
|
|
21
|
+
"metastables": "ace-17/*m",
|
|
22
|
+
"compressed_file_size": 2.1,
|
|
23
|
+
"uncompressed_file_size": 14,
|
|
24
|
+
}
|
|
21
25
|
}
|
|
22
26
|
},
|
|
23
27
|
"2019": {
|
|
24
28
|
"neutron": {
|
|
25
|
-
"
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
29
|
+
"ace": {
|
|
30
|
+
"base_url": "https://tendl.web.psi.ch/tendl_2019/tar_files/",
|
|
31
|
+
"compressed_files": ["tendl19c.tar.bz2"],
|
|
32
|
+
"neutron_files": "tendl19c/*",
|
|
33
|
+
"metastables": "tendl19c/*m",
|
|
34
|
+
"compressed_file_size": 2.3,
|
|
35
|
+
"uncompressed_file_size": 10.1,
|
|
36
|
+
}
|
|
31
37
|
}
|
|
32
38
|
},
|
|
33
39
|
"2021": {
|
|
34
40
|
"neutron": {
|
|
35
|
-
"
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
+
"ace": {
|
|
42
|
+
"base_url": "https://tendl.web.psi.ch/tendl_2021/tar_files/",
|
|
43
|
+
"compressed_files": ["tendl21c.tar.bz2"],
|
|
44
|
+
"neutron_files": "tendl21c/*",
|
|
45
|
+
"metastables": "tendl21c/*m",
|
|
46
|
+
"compressed_file_size": 2.2,
|
|
47
|
+
"uncompressed_file_size": 10.5,
|
|
48
|
+
}
|
|
41
49
|
}
|
|
42
50
|
},
|
|
43
51
|
},
|
|
44
52
|
"fendl": {
|
|
53
|
+
"3.2b": {
|
|
54
|
+
"neutron": {
|
|
55
|
+
"endf": {
|
|
56
|
+
"base_url": "https://www-nds.iaea.org/fendl_library/websites/fendl32b/data/neutron/",
|
|
57
|
+
"compressed_files": ["fendl-3.2b-neutron-endf.zip"],
|
|
58
|
+
"endf_files": "neutron/endf/*.endf",
|
|
59
|
+
"compressed_file_size": 0,
|
|
60
|
+
"uncompressed_file_size": 0,
|
|
61
|
+
},
|
|
62
|
+
"ace": {
|
|
63
|
+
"base_url": "https://www-nds.iaea.org/fendl_library/websites/fendl32b/data/neutron/",
|
|
64
|
+
"compressed_files": ["fendl-3.2b-neutron-ace.zip"],
|
|
65
|
+
"endf_files": "neutron/endf/*.endf",
|
|
66
|
+
"compressed_file_size": 0,
|
|
67
|
+
"uncompressed_file_size": 0,
|
|
68
|
+
}
|
|
69
|
+
},
|
|
70
|
+
"photon": {
|
|
71
|
+
"endf": {
|
|
72
|
+
"base_url": "https://www-nds.iaea.org/fendl_library/websites/fendl32b/data/atom/",
|
|
73
|
+
"compressed_files": ["fendl-3.2b-atom-endf.zip"],
|
|
74
|
+
"endf_files": "photon/endf/*.endf",
|
|
75
|
+
"compressed_file_size": 0,
|
|
76
|
+
"uncompressed_file_size": 0,
|
|
77
|
+
}
|
|
78
|
+
},
|
|
79
|
+
},
|
|
80
|
+
"3.2a": {
|
|
81
|
+
"neutron": {
|
|
82
|
+
"ace": {
|
|
83
|
+
"base_url": "https://www-nds.iaea.org/fendl_library/websites/fendl32a/data/neutron/",
|
|
84
|
+
"compressed_files": ["fendl32-neutron-ace.zip"],
|
|
85
|
+
"ace_files": "neutron/ace/*[!.xsd]",
|
|
86
|
+
"compressed_file_size": 0,
|
|
87
|
+
"uncompressed_file_size": 0,
|
|
88
|
+
},
|
|
89
|
+
"endf": {
|
|
90
|
+
"base_url": "https://www-nds.iaea.org/fendl_library/websites/fendl32a/data/neutron/",
|
|
91
|
+
"compressed_files": ["fendl32-neutron-endf.zip"],
|
|
92
|
+
"endf_files": "neutron/endf/*.endf",
|
|
93
|
+
"compressed_file_size": 0,
|
|
94
|
+
"uncompressed_file_size": 0,
|
|
95
|
+
}
|
|
96
|
+
},
|
|
97
|
+
"photon": {
|
|
98
|
+
"endf": {
|
|
99
|
+
"base_url": "https://www-nds.iaea.org/fendl_library/websites/fendl32a/data/atom/",
|
|
100
|
+
"compressed_files": ["fendl32-atom-endf.zip"],
|
|
101
|
+
"endf_files": "atom/endf/*.endf",
|
|
102
|
+
"compressed_file_size": 0,
|
|
103
|
+
"uncompressed_file_size": 0,
|
|
104
|
+
}
|
|
105
|
+
}
|
|
106
|
+
},
|
|
45
107
|
"3.2": {
|
|
46
108
|
"neutron": {
|
|
47
|
-
"
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
109
|
+
"ace": {
|
|
110
|
+
"base_url": "https://www-nds.iaea.org/fendl_library/websites/fendl32/data/neutron/",
|
|
111
|
+
"compressed_files": ["fendl32-neutron-ace.zip"],
|
|
112
|
+
"ace_files": "neutron/ace/*[!.xsd]",
|
|
113
|
+
"compressed_file_size": 0.565,
|
|
114
|
+
"uncompressed_file_size": 4.226,
|
|
115
|
+
},
|
|
116
|
+
"endf": {
|
|
117
|
+
"base_url": "https://www-nds.iaea.org/fendl_library/websites/fendl32/data/neutron/",
|
|
118
|
+
"compressed_files": ["fendl32-neutron-endf.zip"],
|
|
119
|
+
"endf_files": "neutron/endf/*.endf",
|
|
120
|
+
"compressed_file_size": 0,
|
|
121
|
+
"uncompressed_file_size": 0,
|
|
122
|
+
}
|
|
123
|
+
},
|
|
124
|
+
"photon": {
|
|
125
|
+
"endf":{
|
|
126
|
+
"base_url": "https://www-nds.iaea.org/fendl_library/websites/fendl32/data/atom/",
|
|
127
|
+
"compressed_files": ["fendl32-atom-endf.zip"],
|
|
128
|
+
"endf_files": "atom/endf/*.endf",
|
|
129
|
+
"compressed_file_size": 0.004,
|
|
130
|
+
"uncompressed_file_size": 0.033,
|
|
131
|
+
}
|
|
132
|
+
},
|
|
133
|
+
},
|
|
134
|
+
"3.1d": {
|
|
135
|
+
"neutron": {
|
|
136
|
+
"ace": {
|
|
137
|
+
"base_url": "https://www-nds.iaea.org/fendl31d/data/neutron/",
|
|
138
|
+
"compressed_files": ["fendl31d-neutron-ace.zip"],
|
|
139
|
+
"ace_files": "fendl31d_ACE/*",
|
|
140
|
+
"compressed_file_size": 0.425,
|
|
141
|
+
"uncompressed_file_size": 2.290,
|
|
142
|
+
},
|
|
143
|
+
"endf":{
|
|
144
|
+
"base_url": "https://www-nds.iaea.org/fendl31d/data/neutron/",
|
|
145
|
+
"compressed_files": ["fendl31d-neutron-endf.zip"],
|
|
146
|
+
"endf_files": "*.txt",
|
|
147
|
+
"compressed_file_size": 0,
|
|
148
|
+
"uncompressed_file_size": 0,
|
|
149
|
+
}
|
|
53
150
|
},
|
|
54
151
|
"photon": {
|
|
55
|
-
"
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
152
|
+
"endf": {
|
|
153
|
+
"base_url": "https://www-nds.iaea.org/fendl31d/data/atom/",
|
|
154
|
+
"compressed_files": ["fendl30-atom-endf.zip"],
|
|
155
|
+
"endf_files": "endf/*.txt",
|
|
156
|
+
"compressed_file_size": 0.004,
|
|
157
|
+
"uncompressed_file_size": 0.012,
|
|
158
|
+
}
|
|
61
159
|
},
|
|
62
160
|
},
|
|
161
|
+
# NOTE 3.1a appears to have has the website removed, url appears to still work
|
|
63
162
|
"3.1a": {
|
|
64
163
|
"neutron": {
|
|
65
|
-
"
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
164
|
+
"ace": {
|
|
165
|
+
"base_url": "https://www-nds.iaea.org/fendl31/data/neutron/",
|
|
166
|
+
"compressed_files": ["fendl31a-neutron-ace.zip"],
|
|
167
|
+
"ace_files": "*[0-9]",
|
|
168
|
+
"compressed_file_size": 0.384,
|
|
169
|
+
"uncompressed_file_size": 2.250,
|
|
170
|
+
},
|
|
171
|
+
"endf": {
|
|
172
|
+
"base_url": "https://www-nds.iaea.org/fendl31/data/neutron/",
|
|
173
|
+
"compressed_files": ["fendl31a-neutron-endf.zip"],
|
|
174
|
+
"endf_files": "*.txt",
|
|
175
|
+
"compressed_file_size": 0,
|
|
176
|
+
"uncompressed_file_size": 0,
|
|
177
|
+
}
|
|
71
178
|
},
|
|
72
179
|
"photon": {
|
|
73
|
-
"
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
180
|
+
"endf":{
|
|
181
|
+
"base_url": "https://www-nds.iaea.org/fendl31/data/atom/",
|
|
182
|
+
"compressed_files": ["fendl30-atom-endf.zip"],
|
|
183
|
+
"endf_files": "endf/*.txt",
|
|
184
|
+
"compressed_file_size": 0.004,
|
|
185
|
+
"uncompressed_file_size": 0.012,
|
|
186
|
+
}
|
|
79
187
|
},
|
|
80
188
|
},
|
|
81
|
-
"3.
|
|
189
|
+
"3.1": {
|
|
82
190
|
"neutron": {
|
|
83
|
-
"
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
191
|
+
"ace": {
|
|
192
|
+
"base_url": "https://www-nds.iaea.org/fendl31/data/neutron/",
|
|
193
|
+
"compressed_files": ["fendl31a-neutron-ace.zip"],
|
|
194
|
+
"ace_files": "*[0-9]",
|
|
195
|
+
"compressed_file_size": 0,
|
|
196
|
+
"uncompressed_file_size": 0,
|
|
197
|
+
},
|
|
198
|
+
"endf": {
|
|
199
|
+
"base_url": "https://www-nds.iaea.org/fendl31/data/neutron/",
|
|
200
|
+
"compressed_files": ["fendl30-neutron-endf.zip"],
|
|
201
|
+
"endf_files": "*.txt",
|
|
202
|
+
"compressed_file_size": 0,
|
|
203
|
+
"uncompressed_file_size": 0,
|
|
204
|
+
}
|
|
89
205
|
},
|
|
90
206
|
"photon": {
|
|
91
|
-
"
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
207
|
+
"endf":{
|
|
208
|
+
"base_url": "https://www-nds.iaea.org/fendl31/data/atom/",
|
|
209
|
+
"compressed_files": ["fendl30-atom-endf.zip"],
|
|
210
|
+
"endf_files": "endf/*.txt",
|
|
211
|
+
"compressed_file_size": 0,
|
|
212
|
+
"uncompressed_file_size": 0,
|
|
213
|
+
}
|
|
97
214
|
},
|
|
98
215
|
},
|
|
99
216
|
"3.0": {
|
|
100
217
|
"neutron": {
|
|
101
|
-
"
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
218
|
+
"ace": {
|
|
219
|
+
"base_url": "https://www-nds.iaea.org/fendl30/data/neutron/",
|
|
220
|
+
"compressed_files": ["fendl30-neutron-ace.zip"],
|
|
221
|
+
"ace_files": "ace/*.ace",
|
|
222
|
+
"compressed_file_size": 0.364,
|
|
223
|
+
"uncompressed_file_size": 2.200,
|
|
224
|
+
},
|
|
225
|
+
"endf": {
|
|
226
|
+
"base_url": "https://www-nds.iaea.org/fendl30/data/neutron/",
|
|
227
|
+
"compressed_files": ["fendl30-neutron-endf.zip"],
|
|
228
|
+
"endf_files": "endf/*.txt",
|
|
229
|
+
"compressed_file_size": 0,
|
|
230
|
+
"uncompressed_file_size": 0,
|
|
231
|
+
}
|
|
107
232
|
},
|
|
108
233
|
"photon": {
|
|
109
|
-
"
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
234
|
+
"endf": {
|
|
235
|
+
"base_url": "https://www-nds.iaea.org/fendl30/data/atom/",
|
|
236
|
+
"compressed_files": ["fendl30-atom-endf.zip"],
|
|
237
|
+
"endf_files": "endf/*.txt",
|
|
238
|
+
"compressed_file_size": 0.004,
|
|
239
|
+
"uncompressed_file_size": 0.012,
|
|
240
|
+
}
|
|
115
241
|
},
|
|
116
242
|
},
|
|
117
243
|
"2.1": {
|
|
118
244
|
"neutron": {
|
|
119
|
-
"
|
|
120
|
-
|
|
121
|
-
"
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
|
|
245
|
+
"ace": {
|
|
246
|
+
"base_url": "https://www-nds.iaea.org/fendl21/fendl21mc/",
|
|
247
|
+
"compressed_files": [
|
|
248
|
+
"H001mc.zip",
|
|
249
|
+
"H002mc.zip",
|
|
250
|
+
"H003mc.zip",
|
|
251
|
+
"He003mc.zip",
|
|
252
|
+
"He004mc.zip",
|
|
253
|
+
"Li006mc.zip",
|
|
254
|
+
"Li007mc.zip",
|
|
255
|
+
"Be009mc.zip",
|
|
256
|
+
"B010mc.zip",
|
|
257
|
+
"B011mc.zip",
|
|
258
|
+
"C012mc.zip",
|
|
259
|
+
"N014mc.zip",
|
|
260
|
+
"N015mc.zip",
|
|
261
|
+
"O016mc.zip",
|
|
262
|
+
"F019mc.zip",
|
|
263
|
+
"Na023mc.zip",
|
|
264
|
+
"Mg000mc.zip",
|
|
265
|
+
"Al027mc.zip",
|
|
266
|
+
"Si028mc.zip",
|
|
267
|
+
"Si029mc.zip",
|
|
268
|
+
"Si030mc.zip",
|
|
269
|
+
"P031mc.zip",
|
|
270
|
+
"S000mc.zip",
|
|
271
|
+
"Cl035mc.zip",
|
|
272
|
+
"Cl037mc.zip",
|
|
273
|
+
"K000mc.zip",
|
|
274
|
+
"Ca000mc.zip",
|
|
275
|
+
"Ti046mc.zip",
|
|
276
|
+
"Ti047mc.zip",
|
|
277
|
+
"Ti048mc.zip",
|
|
278
|
+
"Ti049mc.zip",
|
|
279
|
+
"Ti050mc.zip",
|
|
280
|
+
"V000mc.zip",
|
|
281
|
+
"Cr050mc.zip",
|
|
282
|
+
"Cr052mc.zip",
|
|
283
|
+
"Cr053mc.zip",
|
|
284
|
+
"Cr054mc.zip",
|
|
285
|
+
"Mn055mc.zip",
|
|
286
|
+
"Fe054mc.zip",
|
|
287
|
+
"Fe056mc.zip",
|
|
288
|
+
"Fe057mc.zip",
|
|
289
|
+
"Fe058mc.zip",
|
|
290
|
+
"Co059mc.zip",
|
|
291
|
+
"Ni058mc.zip",
|
|
292
|
+
"Ni060mc.zip",
|
|
293
|
+
"Ni061mc.zip",
|
|
294
|
+
"Ni062mc.zip",
|
|
295
|
+
"Ni064mc.zip",
|
|
296
|
+
"Cu063mc.zip",
|
|
297
|
+
"Cu065mc.zip",
|
|
298
|
+
"Ga000mc.zip",
|
|
299
|
+
"Zr000mc.zip",
|
|
300
|
+
"Nb093mc.zip",
|
|
301
|
+
"Mo092mc.zip",
|
|
302
|
+
"Mo094mc.zip",
|
|
303
|
+
"Mo095mc.zip",
|
|
304
|
+
"Mo096mc.zip",
|
|
305
|
+
"Mo097mc.zip",
|
|
306
|
+
"Mo098mc.zip",
|
|
307
|
+
"Mo100mc.zip",
|
|
308
|
+
"Sn000mc.zip",
|
|
309
|
+
"Ta181mc.zip",
|
|
310
|
+
"W182mc.zip",
|
|
311
|
+
"W183mc.zip",
|
|
312
|
+
"W184mc.zip",
|
|
313
|
+
"W186mc.zip",
|
|
314
|
+
"Au197mc.zip",
|
|
315
|
+
"Pb206mc.zip",
|
|
316
|
+
"Pb207mc.zip",
|
|
317
|
+
"Pb208mc.zip",
|
|
318
|
+
"Bi209mc.zip",
|
|
319
|
+
],
|
|
320
|
+
"ace_files": "*.ace",
|
|
321
|
+
"compressed_file_size": 0.100,
|
|
322
|
+
"uncompressed_file_size": 0.600,
|
|
323
|
+
},
|
|
197
324
|
},
|
|
198
325
|
"photon": {
|
|
199
|
-
"
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
|
|
326
|
+
"endf": {
|
|
327
|
+
"base_url": "https://www-nds.iaea.org/fendl21/fendl21e/",
|
|
328
|
+
"compressed_files": ["FENDLEP.zip"],
|
|
329
|
+
"endf_files": "*.endf",
|
|
330
|
+
"compressed_file_size": 0.002,
|
|
331
|
+
"uncompressed_file_size": 0.005,
|
|
332
|
+
}
|
|
205
333
|
},
|
|
206
334
|
},
|
|
207
335
|
},
|
|
208
336
|
'endf': {
|
|
209
337
|
"b7.1": {
|
|
210
338
|
"neutron": {
|
|
211
|
-
"
|
|
212
|
-
|
|
213
|
-
"
|
|
214
|
-
|
|
215
|
-
|
|
216
|
-
|
|
217
|
-
"
|
|
218
|
-
|
|
219
|
-
|
|
220
|
-
|
|
221
|
-
|
|
222
|
-
|
|
223
|
-
|
|
224
|
-
|
|
339
|
+
"ace": {
|
|
340
|
+
"base_url": "http://www.nndc.bnl.gov/endf-b7.1/aceFiles/",
|
|
341
|
+
"compressed_files": [
|
|
342
|
+
"ENDF-B-VII.1-neutron-293.6K.tar.gz",
|
|
343
|
+
"ENDF-B-VII.1-tsl.tar.gz",
|
|
344
|
+
],
|
|
345
|
+
"checksums": [
|
|
346
|
+
"9729a17eb62b75f285d8a7628ace1449",
|
|
347
|
+
"e17d827c92940a30f22f096d910ea186",
|
|
348
|
+
],
|
|
349
|
+
"ace_files": "[aA-zZ]*.ace",
|
|
350
|
+
"sab_files": "*.acer",
|
|
351
|
+
"compressed_file_size": 0.497,
|
|
352
|
+
"uncompressed_file_size": 1.200,
|
|
353
|
+
}
|
|
225
354
|
},
|
|
226
355
|
"photon": {
|
|
227
|
-
"
|
|
228
|
-
|
|
229
|
-
"
|
|
230
|
-
|
|
231
|
-
|
|
232
|
-
|
|
233
|
-
"
|
|
234
|
-
|
|
235
|
-
|
|
236
|
-
|
|
237
|
-
|
|
238
|
-
|
|
239
|
-
|
|
240
|
-
|
|
356
|
+
"endf": {
|
|
357
|
+
"base_url": "http://www.nndc.bnl.gov/endf-b7.1/zips/",
|
|
358
|
+
"compressed_files": [
|
|
359
|
+
"ENDF-B-VII.1-photoat.zip",
|
|
360
|
+
"ENDF-B-VII.1-atomic_relax.zip",
|
|
361
|
+
],
|
|
362
|
+
"checksums": [
|
|
363
|
+
"5192f94e61f0b385cf536f448ffab4a4",
|
|
364
|
+
"fddb6035e7f2b6931e51a58fc754bd10",
|
|
365
|
+
],
|
|
366
|
+
"photo_files": "photoat/*.endf",
|
|
367
|
+
"atom_files": "atomic_relax/*.endf",
|
|
368
|
+
"compressed_file_size": 0.009,
|
|
369
|
+
"uncompressed_file_size": 0.045,
|
|
370
|
+
}
|
|
241
371
|
},
|
|
242
372
|
}
|
|
243
373
|
},
|
|
244
374
|
'jeff': {
|
|
245
375
|
"3.2": {
|
|
246
376
|
'neutron': {
|
|
247
|
-
"
|
|
248
|
-
|
|
249
|
-
"
|
|
250
|
-
|
|
251
|
-
|
|
252
|
-
|
|
253
|
-
|
|
254
|
-
|
|
255
|
-
|
|
256
|
-
|
|
257
|
-
|
|
258
|
-
|
|
259
|
-
|
|
260
|
-
|
|
261
|
-
|
|
262
|
-
"
|
|
263
|
-
|
|
264
|
-
|
|
265
|
-
|
|
266
|
-
|
|
267
|
-
|
|
268
|
-
|
|
269
|
-
|
|
270
|
-
|
|
271
|
-
|
|
272
|
-
|
|
273
|
-
|
|
274
|
-
|
|
275
|
-
|
|
276
|
-
|
|
277
|
-
|
|
278
|
-
|
|
279
|
-
|
|
280
|
-
|
|
377
|
+
"ace":{
|
|
378
|
+
"base_url": "https://www.oecd-nea.org/dbforms/data/eva/evatapes/jeff_32/Processed/",
|
|
379
|
+
"compressed_files": [
|
|
380
|
+
"JEFF32-ACE-293K.tar.gz",
|
|
381
|
+
"JEFF32-ACE-400K.tar.gz",
|
|
382
|
+
"JEFF32-ACE-500K.tar.gz",
|
|
383
|
+
"JEFF32-ACE-600K.tar.gz",
|
|
384
|
+
"JEFF32-ACE-700K.tar.gz",
|
|
385
|
+
"JEFF32-ACE-800K.zip", # Note the different suffix
|
|
386
|
+
"JEFF32-ACE-900K.tar.gz",
|
|
387
|
+
"JEFF32-ACE-1000K.tar.gz",
|
|
388
|
+
"JEFF32-ACE-1200K.tar.gz",
|
|
389
|
+
"JEFF32-ACE-1500K.tar.gz",
|
|
390
|
+
"JEFF32-ACE-1800K.tar.gz",
|
|
391
|
+
"TSLs.tar.gz"],
|
|
392
|
+
"temperatures": [
|
|
393
|
+
"293",
|
|
394
|
+
"400",
|
|
395
|
+
"500",
|
|
396
|
+
"600",
|
|
397
|
+
"700",
|
|
398
|
+
"800",
|
|
399
|
+
"900",
|
|
400
|
+
"1000",
|
|
401
|
+
"1200",
|
|
402
|
+
"1500",
|
|
403
|
+
"1800",
|
|
404
|
+
None
|
|
405
|
+
],
|
|
406
|
+
"neutron_files": "*.ACE",
|
|
407
|
+
"metastables": "*M.ACE",
|
|
408
|
+
"sab_files": "ANNEX_6_3_STLs/*/*.ace",
|
|
409
|
+
"redundant": "ACEs_293K/*-293.ACE",
|
|
410
|
+
"compressed_file_size": 9,
|
|
411
|
+
"uncompressed_file_size": 40,
|
|
412
|
+
}
|
|
281
413
|
}
|
|
282
414
|
},
|
|
283
415
|
"3.3": {
|
|
284
416
|
'neutron': {
|
|
285
|
-
|
|
286
|
-
|
|
287
|
-
"
|
|
288
|
-
|
|
289
|
-
|
|
290
|
-
|
|
291
|
-
|
|
292
|
-
|
|
293
|
-
|
|
294
|
-
|
|
295
|
-
|
|
296
|
-
"
|
|
297
|
-
|
|
298
|
-
|
|
299
|
-
|
|
300
|
-
|
|
301
|
-
|
|
302
|
-
|
|
303
|
-
|
|
304
|
-
|
|
305
|
-
|
|
306
|
-
|
|
307
|
-
|
|
417
|
+
'ace': {
|
|
418
|
+
"base_url": "http://www.oecd-nea.org/dbdata/jeff/jeff33/downloads/temperatures/",
|
|
419
|
+
"compressed_files": [
|
|
420
|
+
"ace_293.tar.gz",
|
|
421
|
+
"ace_600.tar.gz",
|
|
422
|
+
"ace_900.tar.gz",
|
|
423
|
+
"ace_1200.tar.gz",
|
|
424
|
+
"ace_1500.tar.gz",
|
|
425
|
+
"ace_1800.tar.gz",
|
|
426
|
+
"ace_tsl.tar.gz",
|
|
427
|
+
],
|
|
428
|
+
"temperatures": [
|
|
429
|
+
"293",
|
|
430
|
+
"600",
|
|
431
|
+
"900",
|
|
432
|
+
"1200",
|
|
433
|
+
"1500",
|
|
434
|
+
"1800",
|
|
435
|
+
None
|
|
436
|
+
],
|
|
437
|
+
"neutron_files": "ace_293/*.ace",
|
|
438
|
+
"thermal_files": "ace_tsl",
|
|
439
|
+
"compressed_file_size": 7.7,
|
|
440
|
+
"uncompressed_file_size": 37,
|
|
441
|
+
}
|
|
308
442
|
}
|
|
309
443
|
}
|
|
310
444
|
},
|
|
311
445
|
'jendl': {
|
|
312
446
|
'4.0': {
|
|
313
447
|
'neutron': {
|
|
314
|
-
'
|
|
315
|
-
|
|
316
|
-
|
|
317
|
-
|
|
318
|
-
|
|
319
|
-
|
|
448
|
+
'endf':{
|
|
449
|
+
'base_url': 'https://wwwndc.jaea.go.jp/ftpnd/ftp/JENDL/',
|
|
450
|
+
'compressed_files': ['jendl40-or-up_20160106.tar.gz'],
|
|
451
|
+
'endf_files': 'jendl40-or-up_20160106/*.dat',
|
|
452
|
+
'metastables': 'jendl40-or-up_20160106/*m.dat',
|
|
453
|
+
'compressed_file_size': 0.2,
|
|
454
|
+
'uncompressed_file_size': 2
|
|
455
|
+
}
|
|
320
456
|
}
|
|
321
457
|
},
|
|
322
458
|
'5.0': {
|
|
323
459
|
'neutron': {
|
|
324
|
-
'
|
|
325
|
-
|
|
326
|
-
|
|
327
|
-
|
|
328
|
-
|
|
329
|
-
|
|
460
|
+
'endf':{
|
|
461
|
+
'base_url': 'https://wwwndc.jaea.go.jp/ftpnd/ftp/JENDL/',
|
|
462
|
+
'compressed_files': ['jendl5-n.tar.gz'],
|
|
463
|
+
'endf_files': 'jendl5-n/*.dat',
|
|
464
|
+
'metastables': 'jendl5-n/*m1.dat',
|
|
465
|
+
'compressed_file_size': 4.1,
|
|
466
|
+
'uncompressed_file_size': 16
|
|
467
|
+
}
|
|
330
468
|
}
|
|
331
469
|
}
|
|
332
470
|
}
|