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
1 change: 1 addition & 0 deletions .github/workflows/test_package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@ jobs:

- name: Install testing dependencies
run: |
sudo apt-get update
sudo apt-get install libhdf5-serial-dev
git clone --single-branch --branch develop --depth 1 https://github.com/openmc-dev/openmc.git
cd openmc
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/test_processing.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,7 @@ jobs:
- name: Install testing dependencies
if: steps.changed-files-specific.outputs.any_changed == 'true'
run: |
sudo apt-get update
sudo apt-get install libhdf5-serial-dev
git clone --single-branch --branch develop --depth 1 https://github.com/openmc-dev/openmc.git
cd openmc
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/test_urls.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@ jobs:

- name: Install testing dependencies
run: |
sudo apt-get update
sudo apt-get install libhdf5-serial-dev
git clone --single-branch --branch develop --depth 1 https://github.com/openmc-dev/openmc.git
cd openmc
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ A few categories of scripts are available:
|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 |
|generate_tendl_chain | TENDL | 2019<br>2021<br>2023<br>2025 |
|generate_serpent_fissq | | |
|generate_endf71_chain_casl | ENDF/B | |

Expand Down
6 changes: 3 additions & 3 deletions src/openmc_data/depletion/generate_tendl_chain.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,11 +30,11 @@
parser.add_argument(
"-r",
"--release",
choices=["2015", "2017", "2019", "2021"],
choices=["2015", "2017", "2019", "2021", "2023", "2025"],
default="2021",
help="The nuclear data library release "
"version. The currently supported options are 2019, "
"and 2021.",
"version. The currently supported options are 2015, 2017, 2019, "
"2021, 2023, and 2025.",
)
parser.add_argument(
"-d",
Expand Down
12 changes: 12 additions & 0 deletions src/openmc_data/urls_chain.py
Original file line number Diff line number Diff line change
Expand Up @@ -83,6 +83,18 @@
'base_url': 'https://tendl.imperial.ac.uk/tendl_2021/tar_files/',
'compressed_files': ['TENDL-n.tgz'],
}
},
'2023': {
'neutron':{
'base_url': 'https://tendl.imperial.ac.uk/tendl_2023/tar_files/',
'compressed_files': ['TENDL-n.2024new.tgz'],
}
},
'2025': {
'neutron':{
'base_url': 'https://tendl.imperial.ac.uk/tendl_2025/tar_files/',
'compressed_files': ['TENDL-n.tgz'],
}
}
},
'jendl': {
Expand Down
Loading