How to plot all nuclides density of depletion material

Is there any class/mathod/variable to get all nuclides of depletion materials(include fission product),then I can pass nuclides list to results.get_atoms().

The following should work:

results = openmc.deplete.Results('depletion_results.h5')
nuclides = list(results[0].index_nuc.keys())
1 Like

Thank you,Paul.It’s useful