Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ A few categories of scripts are available:
| Script name | Library | Release | Processed by |
|-|-|-|-|
| generate_cendl | CENDL | 3.1<br>3.2 | |
| generate_endf | ENDF/B | VII.1<br>VIII.0 | NNDC |
| generate_endf | ENDF/B | VII.1<br>VIII.0<br>VIII.1 | NNDC |
| generate_fendl | FENDL | 3.2c<br>3.2b<br>3.2a<br>3.2<br>3.1d<br>3.1a<br>3.0 | |
| generate_jendl | JENDL | 4.0<br>5.0 | |
| generate_tendl | TENDL | 2023<br>2025 | |
Expand All @@ -80,7 +80,7 @@ A few categories of scripts are available:

| Script name | Library | Release | Processed by |
|-|-|-|-|
| download_endf | ENDF/B | VII.1<br>VIII.0 | NNDC |
| download_endf | ENDF/B | VII.1<br>VIII.0<br>VIII.1 | NNDC |
| download_tendl | TENDL | 2019<br>2021 | |

<!-- | Script name | Library | Release | Processed by | Download available | Downloads ACE files and convert to HDF5 | Downloads ENDF files and convert to HDF5 | Convert local ACE files |
Expand All @@ -104,7 +104,7 @@ A few categories of scripts are available:

| Script name | Library | Release |
|-|-|-|
|generate_endf_chain | ENDF/B | VII.1<br>VIII.0 |
|generate_endf_chain | ENDF/B | VII.1<br>VIII.0<br>VIII.1 |
|generate_jeff_chain | JEFF | 3.3 |
|generate_jendl_chain | JENDL | 5.0 |
|generate_tendl_chain | TENDL | 2019<br>2021 |
Expand All @@ -115,7 +115,7 @@ A few categories of scripts are available:

| Script name | Library | Release | Branching options|
|-|-|-|-|
|download_chain | ENDF/B<br><br><br>TENDL | VII.1<br>VIII.0<br><br>2019 | None<br>SFR<br>PWR<br><br>FNS |
|download_chain | ENDF/B<br><br><br><br>TENDL | VII.1<br>VIII.0<br>VIII.1<br><br>2019 | None<br>SFR<br>PWR<br><br>FNS |

<!-- | Sctipt name | Library | Release | Download available | Download ENDF files and generates XML chain files |
|-|-|-|-|-|
Expand Down
6 changes: 3 additions & 3 deletions src/openmc_data/download/download_endf.py
Original file line number Diff line number Diff line change
Expand Up @@ -44,10 +44,10 @@ class CustomFormatter(
parser.add_argument(
"-r",
"--release",
choices=["b7.1", "b8.0"],
default="b7.1",
choices=["b7.1", "b8.0", "b8.1"],
default="b8.1",
help="The nuclear data library release version. The currently supported "
"options are 'b7.1' and 'b8.0'",
"options are 'b7.1', 'b8.0' and 'b8.1'",
)
parser.add_argument(
"--cleanup",
Expand Down
8 changes: 8 additions & 0 deletions src/openmc_data/urls_h5.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,14 @@
"uncompressed_file_size": 13.7,
}
},
"b8.1": {
"neutron-photon": {
"base_url": "https://anl.box.com/shared/static/",
"compressed_files": ["6qr7jezzihkj9p9esl5jn19qgpujyjyz.xz"],
"compressed_file_size": 3.4,
"uncompressed_file_size": 13.7,
}
},
},
"tendl": {
"2019": {
Expand Down
Loading