Skip to content

Commit

Permalink
Merge pull request #10 from openmc-data-storage/adding-fendl-3.2c
Browse files Browse the repository at this point in the history
added fendl 3.2c
  • Loading branch information
shimwell authored Jan 10, 2025
2 parents 5cbce51 + 2d1d828 commit 1e88c31
Show file tree
Hide file tree
Showing 3 changed files with 31 additions and 4 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ A few categories of scripts are available:
|convert_mcnp71 | ENDF/B | VII.1 | LANL |
|convert_endf | ENDF/B | VII.1 | NNDC |
|convert_lib80x | ENDF/B | VIII.0 | LANL |
|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 |
|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 |
|convert_jeff32 | JEFF | 3.2 |
|convert_jeff33 | JEFF | 3.3 |
|convert_tendl | TENDL | 2015<br>2017<br>2019<br>2021 |
Expand Down
6 changes: 3 additions & 3 deletions src/openmc_data/convert/convert_fendl.py
Original file line number Diff line number Diff line change
Expand Up @@ -58,10 +58,10 @@ class CustomFormatter(
parser.add_argument(
"-r",
"--release",
choices=["3.2b", "3.2a", "3.2", "3.1d", "3.1a", "3.1", "3.0", "2.1"],
default="3.2b",
choices=["3.2c", "3.2b", "3.2a", "3.2", "3.1d", "3.1a", "3.1", "3.0", "2.1"],
default="3.2c",
help="The nuclear data library release version. The currently supported "
"options are 3.2b, 3.2a, 3.2, 3.1d, 3.1a, 3.1, 3.0, and 2.1",
"options are 3.2c 3.2b, 3.2a, 3.2, 3.1d, 3.1a, 3.1, 3.0, and 2.1",
)
parser.add_argument(
"-p",
Expand Down
27 changes: 27 additions & 0 deletions src/openmc_data/urls.py
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,33 @@
},
},
"fendl": {
"3.2c": {
"neutron": {
"endf": {
"base_url": "https://www-nds.iaea.org/fendl/data/neutron/",
"compressed_files": ["fendl-FENDL-3.2c-neutron-endf.zip"],
"endf_files": "neutron/endf/*.endf",
"compressed_file_size": 0,
"uncompressed_file_size": 0,
},
"ace": {
"base_url": "https://www-nds.iaea.org/fendl/data/neutron/",
"compressed_files": ["fendl-FENDL-3.2c-neutron-ace.zip"],
"ace_files": "neutron/ace/*",
"compressed_file_size": 0,
"uncompressed_file_size": 0,
}
},
"photon": {
"endf": {
"base_url": "https://www-nds.iaea.org/fendl/data/atom/",
"compressed_files": ["fendl-FENDL-3.2c-atom-endf.zip"],
"endf_files": "atom/endf/*.endf",
"compressed_file_size": 0,
"uncompressed_file_size": 0,
}
},
},
"3.2b": {
"neutron": {
"endf": {
Expand Down

0 comments on commit 1e88c31

Please sign in to comment.