Dear all,
I wanna ask to you all is it depletion value and neutron flux value? Picture (below)
The first dataset you have pictured there shows the depletion time for each timestep in seconds, and the second picture shows internal data related to global tallies (estimators for k-effective and the total leakage). If you have tallies that are collected during a depletion simulation, those will be found in the individual statepoint files (openmc_simulation_n#.h5
) that are written at each timestep. I would recommend you use the corresponding Python classes (openmc.deplete.ResultsList
and openmc.StatePoint
) for working with those files rather than inspecting the data in the files directly.
Dear,
Paul
How to use the corresponding Python classes (openmc.deplete.ResultsList
and openmc.StatePoint
) for working with those files ?
Thx,
Auliyah
You can see this example for basic usage of the StatePoint
class (full API listed here). A depletion example that uses ResultsList
can be found here (full API listed here).
Why the value of neutron flux and reaction rate same for a month, a year and 2 years?
@Auliyah11 The flux and reaction rate are related to the amount of fission reactions needed to sustain whatever power level is specified for the problem. It depends on what reaction rate you’re looking at, but for example the total fission reaction rate wouldn’t be expected to change over time in a depletion simulation. If you look at the fission reaction rate by nuclide, that may change substantially as a model is depleted. If your fuel does reach a high burnup, at that point it would need a higher flux level to sustain the same amount of power level. If the fuel is not depleted that much, it would be expected for the flux to remain relatively close to where it started. Of course, this entirely depends on the model you’re simulating, the power level, whether there is any breeding of fuel, etc., so it’s hard to speculate on your particular case without knowing any context.
Hi Paul,
the links you have provided for the examples do not exist any more. Could you please re-share the examples of using the Python classes that are mentioned above?
thanks in advance
@cigdem I just updated the links above so that they should work. Thanks for bringing that to my attention!
thank you so much, they work now!