Plot time dependence decay of each nuclide as Ci

Hi All,

I am running a depletion problem and would like to get the time dependence decay of each nuclide as Ci.

I have the following code to pull the results:

times, total_activity = results.get_activity(my_material, units=‘Bq’,by_nuclide=True)

for time, num in zip(times, total_activity):

  • print(f" Time {time}s. Total activity {num}")*

That creates a messy file. I would like to create a time dependent decay plot for the nuclides using this data.

How can I create a time dependent decay plot for the nuclides using this data. As following I would like to save that data as clean excel file (I can play later on) or dat file like

Time (s) Nuclide Activity (Ci)

X1 Y1 Z1
X2 Y1 Z2
X3 Y1 Z3

X1 Y2 Z4
X2 Y2 Z5
X3 Y2 Z6

Thank you for your help.

Birsen