Parse JEFF-3.1.1 Radioactive Decay Data library

Hi,

I want to parse radioactive data decay from JEFF-3.1.1 Evaluated Data Library Project

I use the methods
**openmc.data.endf.Evaluation
openmc.data.Decay.from_endf()
**
However when I parse my file all I got is the decay properties of the neutron.

Thank you for help
Djine

If you have an ENDF file with multiple evaluations in it, you can use openmc.data.endf.get_evaluations(filename) which will give a list of Evaluation objects, each of which you can pass to Decay.from_endf.

1 Like

thank you, problem solved :ok_hand: