Skip to main content

test_urls test_package test_convert_scripts

OpenMC Data

Aims to facilitate the use of different nuclear data libraries with OpenMC by providing command line tools that process and download nuclear data automatically.

Prerequisites

You should have already installed OpenMC, see the docs for installation instructions.

Installation

The package is distributed on PYPI and can be installed with pip.

pip install openmc_data

Usage

Once installed several scripts are available in your terminal that are able to download and process nuclear data.

The scripts accept input arguments, to find out the input arguments available for a particular script run the script name with --help after the name. For example:

convert_endf --help

Some scripts (mainly the generate scripts) require NJOY to be installed and added to your path.

A few categories of scripts are available:

  • Scripts that produce h5 cross section files:
    • Convert ACE files to h5 files
    • Generate h5 file from ENDF files
    • Download h5 files
  • Scripts that produce xml chain files:
    • Generate xml chain files from ENDF files:
    • Download xml chain files:
  • Other scripts that don't fall into either category.

Produce Cross Section Files

Convert cross sections

Script name Library Release Processed by
convert_mcnp70 ENDF/B VII.0 LANL
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.2c
3.2b
3.2a
3.2
3.1d
3.1a
3.1
3.0
2.1
convert_jeff32 JEFF 3.2
convert_jeff33 JEFF 3.3
convert_tendl TENDL 2015
2017
2019
2021

Generate cross sections

Script name Library Release Processed by
generate_cendl CENDL 3.1
3.2
generate_endf ENDF/B VII.1
VIII.0
VIII.1
NNDC
generate_fendl FENDL 3.2c
3.2b
3.2a
3.2
3.1d
3.1a
3.0
generate_jendl JENDL 4.0
5.0
generate_tendl TENDL 2023
2025

Download cross sections

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

Produce Depletion Chain files

Generate chain files

Script name Library Release
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 2015
2017
2019
2021
2023
2025
generate_serpent_fissq
generate_endf71_chain_casl ENDF/B

Branching ratios for metastable states

Reactions can produce either the ground state or a metastable state of a nuclide and the split between them is dependent on the neutron spectrum. The generate_branching_ratios script finds this split from the isomeric production data in the ENDF neutron files (MF=8 identifies the isomeric states and whether the production data is in MF=9 or MF=10) and collapses it with a multigroup neutron flux that you provide. The one group branching ratio is reaction rate weighted, which is the weighting that preserves the production rate of each isomer in a single energy group chain.

The JSON file produced is in the same format as the branching_ratios_pwr.json and branching_ratios_sfr.json files, so it can be applied to a chain file with add_branching_ratios.

# downloads the ENDF files and makes a chain file from them
generate_tendl_chain -r 2017 --lib endf80

# collapses the isomeric production data with a fusion neutron source spectrum
# taken from the IAEA CoNDERC FNS benchmark
generate_branching_ratios \
    --neutron-dir tendl-2017-endf/neutron \
    --fispact-fluxes fns/Ag/2000exp_5min_fluxes \
    --chain chain_tendl_2017_endf80.xml \
    --jobs 20 \
    -o branching_ratios_tendl_2017_fns.json

# adds the branching ratios to the chain file
add_branching_ratios \
    -i chain_tendl_2017_endf80.xml \
    -b branching_ratios_tendl_2017_fns.json \
    -o chain_tendl_2017_endf80_fns.xml

Most reactions store their isomeric production as cross sections in MF=10 and need no other data. The remainder store multiplicities in MF=9 which have to be weighted by the reaction cross section, and as the MF=3 cross section is only the background in the resolved resonance range these are reconstructed with NJOY. Passing --cross-sections will instead read them from an existing HDF5 library, which avoids the NJOY runs if you have already made one.

Only the shape of the cross section is used, as a weight, so the NJOY modules that do not affect it are skipped and the reconstruction tolerance is loosened. This is what makes the actinides tractable, as the unresolved resonance probability tables take over two hours per nuclide, and it changes the branching ratios by less than 0.2%.

Use --jobs to process files in parallel. A whole TENDL library is about 2800 evaluations and takes roughly half an hour with --jobs 20, against many hours in series.

Download chain files

Script name Library Release Branching options
download_chain ENDF/B VII.1
VIII.0
VIII.1
None
SFR
PWR
download_chain TENDL 2017
2019
None
SFR
PWR
FNS
FNS-ORIGEN
download_chain TENDL 2025 None
SFR
PWR
FNS

All the TENDL chains are made with generate_tendl_chain using decay data and neutron induced fission yields from ENDF/B-VIII.0, so the releases can be compared against one another.

FNS (fusion neutron source) adds branching ratios for the production of metastable states, which makes these chains suitable for activation calculations of fusion neutron spectra. They are produced with generate_branching_ratios from the isomeric production data in the TENDL files themselves, collapsed with a spectrum from the IAEA CoNDERC FNS benchmark.

The branching options differ in which reactions they cover, not only in the values. Counts below are for TENDL 2017.

Branching option Reactions covered Branched channels Ratios come from
None none 0
SFR
PWR
(n,gamma) only 101 Serpent default isomeric branching ratios
FNS-ORIGEN 15 reaction types 2355 ORIGEN
FNS 35 reaction types 15616 the TENDL files themselves

The reactor options only ever split capture. For a fusion spectrum the threshold reactions matter most, and in the FNS chains (n,gamma) is only the fourth largest group behind (n,na), (n,3He) and (n,2n), so SFR and PWR leave out most of what an activation calculation needs.

FNS-ORIGEN is an earlier TENDL 2017 and 2019 chain hosted on the openmc_activator repository, whose branching ratios are derived from ORIGEN data rather than from TENDL. It is kept available for comparison, but the FNS chains are the TENDL only option and the two can differ substantially. For Ag107 capture to Ag108_m1 under a fusion spectrum, for example, FNS gives 0.056 against FNS-ORIGEN's 0.348, because the FNS value is reaction rate weighted and the majority of the capture rate sits in the resolved resonance range where the isomeric ratio is small.

Other scripts

Script name Description
convert_tendl_rand Download random TENDL libraries from PSI and convert it to a HDF5 library for use with OpenMC. Only certain nuclides are available from PSI. This script generates a cross_sections_tendl.xml file with random TENDL evaluations plus a standard library located in 'OPENMC_CROSS_SECTIONS'
sample_sandy This scripts generates random (gaussian) evaluations of a nuclear data file following its covariance matrix using SANDY, and converts them to HDF5 for use in OpenMC. Script generates a cross_sections_sandy.xml file with the standard library plus the sampled evaluations.
make_compton
make_stopping_powers
generate_branching_ratios Finds the branching ratios for the production of metastable states in the ENDF neutron files and collapses them with a multigroup neutron flux, writing a JSON file for add_branching_ratios.
add_branching_ratios Adds branching ratios to a preexisting chain file, for any reaction present in the JSON file provided.
reduce_chain
combine_libraries Combines multiple cross_section.xml files into a single cross_section.xml.

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

openmc_data-2.5.0.tar.gz (72.2 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

openmc_data-2.5.0-py3-none-any.whl (95.2 kB view details)

Uploaded Python 3

File details

Details for the file openmc_data-2.5.0.tar.gz.

File metadata

  • Download URL: openmc_data-2.5.0.tar.gz
  • Upload date:
  • Size: 72.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/7.0.0 CPython/3.14.7

File hashes

Hashes for openmc_data-2.5.0.tar.gz
Algorithm Hash digest
SHA256 c4d77828dcca8d15181b5f6f53876306073676ccdfd9759c3419f54679a9e0d5
MD5 68e735cf19539d55311d9ca51b02b183
BLAKE2b-256 fa34b4943a056cf0b012fa1520d3646fec0bd6ee56e04d18c1ef0846c984a926

See more details on using hashes here.

File details

Details for the file openmc_data-2.5.0-py3-none-any.whl.

File metadata

  • Download URL: openmc_data-2.5.0-py3-none-any.whl
  • Upload date:
  • Size: 95.2 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/7.0.0 CPython/3.14.7

File hashes

Hashes for openmc_data-2.5.0-py3-none-any.whl
Algorithm Hash digest
SHA256 07cda68ed0220fcc3f1d375f336f39426012966028bf96c27f792431535ae1f5
MD5 7464b97109146c0405a4d3a686b50c73
BLAKE2b-256 d22a51e922e6983a7b8fe9e603044d1ec4cdb7949e9d90e532144bf9399a64a8

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page