Skip to content

Commit 1e88c31

Browse files
authored
Merge pull request #10 from openmc-data-storage/adding-fendl-3.2c
added fendl 3.2c
2 parents 5cbce51 + 2d1d828 commit 1e88c31

File tree

3 files changed

+31
-4
lines changed

3 files changed

+31
-4
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ A few categories of scripts are available:
6060
|convert_mcnp71 | ENDF/B | VII.1 | LANL |
6161
|convert_endf | ENDF/B | VII.1 | NNDC |
6262
|convert_lib80x | ENDF/B | VIII.0 | LANL |
63-
|convert_fendl | FENDL | 3.2b<br>3.2a<br>3.2<br>3.1d<br>3.1a<br>3.1<br>3.0<br>2.1 |
63+
|convert_fendl | FENDL | 3.2c<br>3.2b<br>3.2a<br>3.2<br>3.1d<br>3.1a<br>3.1<br>3.0<br>2.1 |
6464
|convert_jeff32 | JEFF | 3.2 |
6565
|convert_jeff33 | JEFF | 3.3 |
6666
|convert_tendl | TENDL | 2015<br>2017<br>2019<br>2021 |

src/openmc_data/convert/convert_fendl.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -58,10 +58,10 @@ class CustomFormatter(
5858
parser.add_argument(
5959
"-r",
6060
"--release",
61-
choices=["3.2b", "3.2a", "3.2", "3.1d", "3.1a", "3.1", "3.0", "2.1"],
62-
default="3.2b",
61+
choices=["3.2c", "3.2b", "3.2a", "3.2", "3.1d", "3.1a", "3.1", "3.0", "2.1"],
62+
default="3.2c",
6363
help="The nuclear data library release version. The currently supported "
64-
"options are 3.2b, 3.2a, 3.2, 3.1d, 3.1a, 3.1, 3.0, and 2.1",
64+
"options are 3.2c 3.2b, 3.2a, 3.2, 3.1d, 3.1a, 3.1, 3.0, and 2.1",
6565
)
6666
parser.add_argument(
6767
"-p",

src/openmc_data/urls.py

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,33 @@
5050
},
5151
},
5252
"fendl": {
53+
"3.2c": {
54+
"neutron": {
55+
"endf": {
56+
"base_url": "https://www-nds.iaea.org/fendl/data/neutron/",
57+
"compressed_files": ["fendl-FENDL-3.2c-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/data/neutron/",
64+
"compressed_files": ["fendl-FENDL-3.2c-neutron-ace.zip"],
65+
"ace_files": "neutron/ace/*",
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/data/atom/",
73+
"compressed_files": ["fendl-FENDL-3.2c-atom-endf.zip"],
74+
"endf_files": "atom/endf/*.endf",
75+
"compressed_file_size": 0,
76+
"uncompressed_file_size": 0,
77+
}
78+
},
79+
},
5380
"3.2b": {
5481
"neutron": {
5582
"endf": {

0 commit comments

Comments
 (0)