Update: I think is related to this same issue. Now while depleting, I am trying to run a particle filter (in this case, only the one corresponding to the 'neutron' particle) in order to estimate the energy deposition as a function of burnup in the materials of the domain (also, the 'energy-deposition' attribute is taken into account). In the end, I add a 'heating-local' tally to the exercise (all these is depicted below):
*****************************************************************************************************
tallies_file = openmc.Tallies()
t1 = openmc.Tally(name='edep')
t1.filters = [openmc.MaterialFilter([uo2,zircaloy,borated_water])]
t1.filters.append(openmc.ParticleFilter(['neutron']))
t1.scores = ['flux','fission', 'heating-local']
tallies_file.append(t1)
tallies_file.export_to_xml()
## op = openmc.deplete.Operator(geometry, settings_file, chain_file)
op = openmc.deplete.Operator(geometry, settings_file, chain_file, energy_mode="energy-deposition")
# Perform simulation using the predictor algorithm
integrator = openmc.deplete.PredictorIntegrator(op, time_steps, power)
integrator.integrate()
*****************************************************************************************************
Like this, the code crashes while trying to execute the first transport step (attached is the slurm exit with the error, in case of interest). Now, if I do not use the Particle filter, and only ask for the 'heating-local' tally, the code executes well the depletion calculation until the end,and I suppose it gives properly the heating and other tallies at the step_h5 files (the tallies.out is created and is overwritten at each transport step).
Of course I am not running with photon coupling and, in the end, I do not need for now the particle filter for estimating the energy deposition. However, if you guys solve the issue related to depleting with neutron-photon coupling, then it would be great to tally the energy deposited at each burnup step by the different particles (i.e. photon, electron, positron).
Thanks!