@@ -25,19 +25,36 @@ KERMA (Kinetic Energy Release in Materials) [Mack97]_ coefficients for reaction
2525:math: `\times ` cross-section (e.g., eV-barn) and can be used much like a reaction
2626cross section for the purpose of tallying energy deposition.
2727
28- KERMA coefficients can be computed using the energy-balance method with
29- a nuclear data processing code like NJOY, which performs the following
30- iteration over all reactions :math: `r` for all isotopes :math: `i`
31- requested
28+ KERMA coefficients can be computed using the energy-balance method with a
29+ nuclear data processing code like NJOY, which estimates the KERMA coefficients
30+ using the following equation:
3231
3332.. math ::
3433
35- k_{i, r}(E) = \left (E + Q_{i, r} - \bar {E}_{i, r, n}
34+ k_{i, r}(E) = \left (E + Q_{i, r} - \sum \limits _x \bar {E}_{i, r, x}
35+ \right )\sigma _{i, r}(E),
36+
37+ where the summation is over each secondary particle type :math: `x`. This
38+ equation states that the energy deposited is equal to the energy of the incident
39+ particle plus the reaction :math: `Q` value less the energy of secondary
40+ particles that are transported away from the reaction site. For neutron
41+ interactions, the energy-balance KERMA coefficient is
42+
43+ .. math ::
44+
45+ k_{i, r}(E) = \left (E + Q_{i, r} - \sum \limits _x \bar {E}_{i, r, n}
3646 - \bar {E}_{i, r, \gamma }\right )\sigma _{i, r}(E),
3747
38- removing the energy of neutral particles (neutrons and photons) that are
39- transported away from the reaction site :math: `\bar {E}`, and the reaction
40- :math: `Q` value.
48+ where :math: `\bar {E}_{i, r, n}` is the average energy of secondary neutrons and
49+ :math: `\bar {E}_{i, r, \gamma }` is the average energy of secondary photons. For
50+ photon and charged particle interactions, the :math: `Q` value is zero and thus
51+ the KERMA coefficient is
52+
53+ .. math ::
54+ :label: energy-balance-photon
55+
56+ k_{i, r}(E) = \left (E - \sum \limits _x \bar {E}_{i, r, x}
57+ \right )\sigma _{i, r}(E).
4158
4259-------
4360Fission
@@ -120,7 +137,7 @@ run with :math:`N918` reflecting fission heating computed from NJOY.
120137 This modified heating data is stored as the MT=901 reaction and will be scored
121138if ``heating-local `` is included in :attr: `openmc.Tally.scores `.
122139
123- Coupled neutron-photon transport
140+ Coupled Neutron-Photon Transport
124141--------------------------------
125142
126143Here, OpenMC instructs ``heatr `` to assume that energy from photons is not
@@ -138,6 +155,50 @@ Let :math:`N301` represent the total heating number returned from this
138155 This modified heating data is stored as the MT=301 reaction and will be scored
139156if ``heating `` is included in :attr: `openmc.Tally.scores `.
140157
158+ Photons and Charged Particles
159+ -----------------------------
160+
161+ In OpenMC, energy deposition from photons or charged particles is scored using
162+ the energy balance method based on Equation :eq: `energy-balance-photon `. Special
163+ consideration is given to electrons and positrons as described below.
164+
165+ +++++++++++++++++
166+ Charged Particles
167+ +++++++++++++++++
168+
169+ OpenMC tracks photons interaction by interaction so the energy deposited in each
170+ collision is easily attributed back to the nuclide and reaction for which the
171+ photon interacted with. Charged particles (electrons and photons) aren't tracked
172+ in the same way. For charged particles, OpenMC assumes that all their energy
173+ (less the energy of bremsstrahlung radiation) is deposited in the material in
174+ which they were born. In this way it is harder to trace how much energy should
175+ be attributed in each nuclide.
176+
177+ According to the CSDA approximation (see :ref: `ttb `) the energy deposited by a
178+ charged particle with kinetic energy :math: `T` in the :math: `i`-th element can
179+ be calculated as:
180+
181+ .. math ::
182+
183+ E_{i} = \int _{0 }^{R(T)} w_{i}S_{\text {col,i}} dx
184+
185+ where :math: `R(T)` is the CSDA range of the charged particle,
186+ :math: `S_{\text {col},i}` is the collision stopping power of the charged particle
187+ in the :math: `i`-th element and :math: `w_i` is the mass fraction of the
188+ :math: `i`-th element. According to the Bethe formula the collision stopping
189+ power of the :math: `i`-th element is proportional to :math: `Z_i/A_i`, so the
190+ fractional collision stopping power from the :math: `i`-th element is:
191+
192+ .. math ::
193+
194+ \frac {w_{i}S_{\text {col},i}(T)}{S_{\text {col}}(T)} =
195+ \frac {\frac {w_{i}Z_{i}}{A_{i}}}{\sum _{i}\frac {w_{i}Z_{i}}{A_{i}}} =
196+ \frac {\gamma _i Z_{i}}{\sum _{i}\gamma _i Z_{i}}.
197+
198+ where :math: `\gamma _i` is the atomic fraction of the :math: `i`-th element.
199+ Therefore, the energy deposited by charged particles should be attributed to
200+ a given element according to its fractional charge density.
201+
141202----------
142203References
143204----------
0 commit comments