Hello, OpenMC expert.
My OpenMC project is to make the density of coolant converged in every depletion steps.
Here is how my program work.
So, when the density is not converged, I use the old depletion_results.h5 file to simulation the same time step again. After the density converged I save the new density to Material.xml file.
So, I was wonder about material using in OpenMC depletion.
I found that in openmc.deplete prev_results may pull the material from depletion_results.h5.
openmc.deplete.abc β OpenMC Documentation
This is the depletion command to use prev_reults
r = openmc.deplete.ResultsList.from_hdf5('depletion_results.h5')
operator = openmc.deplete.Operator(stacktest0, settings_file,"./chain_casl_pwr.xml", prev_results=r)
Then I donβt know how OpenMC prev_results actually works. I have thought 2 way.
- When having Material.xml in the directory and when it use prev_results the OpenMC will use Material.xml
- OpenMC will use material from depletion_results.h5 for next burnup.
Thank you.