diff --git a/.github/workflows/test_package.yml b/.github/workflows/test_package.yml index a30c4bb..ce97485 100644 --- a/.github/workflows/test_package.yml +++ b/.github/workflows/test_package.yml @@ -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 diff --git a/.github/workflows/test_processing.yml b/.github/workflows/test_processing.yml index 44dc897..71d3605 100644 --- a/.github/workflows/test_processing.yml +++ b/.github/workflows/test_processing.yml @@ -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 diff --git a/.github/workflows/test_urls.yml b/.github/workflows/test_urls.yml index 50c2b45..2c5616a 100644 --- a/.github/workflows/test_urls.yml +++ b/.github/workflows/test_urls.yml @@ -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 diff --git a/README.md b/README.md index 8529033..0b2f9ea 100644 --- a/README.md +++ b/README.md @@ -107,7 +107,7 @@ A few categories of scripts are available: |generate_endf_chain | ENDF/B | VII.1
VIII.0
VIII.1 | |generate_jeff_chain | JEFF | 3.3 | |generate_jendl_chain | JENDL | 5.0 | -|generate_tendl_chain | TENDL | 2019
2021 | +|generate_tendl_chain | TENDL | 2019
2021
2023
2025 | |generate_serpent_fissq | | | |generate_endf71_chain_casl | ENDF/B | | diff --git a/src/openmc_data/depletion/generate_tendl_chain.py b/src/openmc_data/depletion/generate_tendl_chain.py index da371a7..e9fbcc4 100755 --- a/src/openmc_data/depletion/generate_tendl_chain.py +++ b/src/openmc_data/depletion/generate_tendl_chain.py @@ -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", diff --git a/src/openmc_data/urls_chain.py b/src/openmc_data/urls_chain.py index 1871cf7..5542092 100644 --- a/src/openmc_data/urls_chain.py +++ b/src/openmc_data/urls_chain.py @@ -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': {