I’m investigating neutron captures on gadolinium-doped water and I am finding that the energy of the gamma cascade produced when a neutron captures on a Gd nuclei does not match with the expected energy of ~8 MeV.
I am using USDRAW
to score the captures with the following code:
! Low energy neutron interaction
IF (ICODE .EQ. 300) THEN
! Loop over secondaries
IF(JTRACK .EQ. 8) THEN
! Reset gamma cascade energy counter
GAMMA_NEUTRON_ENE = 0
DO I = 1, NP
IF (KPART(I) .EQ. 7) THEN
GAMMA_NEUTRON_ENE = GAMMA_NEUTRON_ENE + TKI (I)
END IF
END DO
IF (ICRES .EQ. 64) THEN
! Look at secondaries -- are they all gammas?
DO I = 1, NP
PRINT *, "Secondary with Gd residual ", KPART(I), " ene: ", TKI(I) * 1000
END DO
! Print out secondary information -- is it around 8 MeV?
PRINT *, "Gamma cascade energy ", GAMMA_NEUTRON_ENE * 1000
PRINT *, "Number of photons from gad capture: ", NP
N_GADCAPS = N_GADCAPS + 1
PRINT *, "Number of gad captures: ", N_GADCAPS
END IF
END IF
END IF
The printouts for the gamma cascade energy (Gamma energy
below) range from ~4 MeV all the way to 15 MeV:
Secondary with Gd residual 7 ene: 1.6283083033559327
Secondary with Gd residual 7 ene: 1.0976518308104020
Secondary with Gd residual 7 ene: 0.79538810537568339
Gamma energy 3.52134824
Number of photons from gad capture: 3
Number of gad captures: 39
.
.
.
Secondary with Gd residual 7 ene: 4.4279597575398153
Secondary with Gd residual 7 ene: 1.4908416220897729
Secondary with Gd residual 7 ene: 6.0881862942761211
Secondary with Gd residual 7 ene: 3.6074345911704366
Gamma energy 15.6144218
Number of photons from gad capture: 4
Number of gad captures: 575
I found this reply on the INFN forums for someone asking about a similar issue, though it makes little sense to me:
Neutron interactions below 20 MeV are treated on the basis of neutron cross section evaluations in a group-wise way, except for a few isotopes. This means that also photon emission is treated group-wise, I mean that the gamma energy is “grouped” in intervals, not lines. More than this, there is no correlation among emitted gamma lines.
I think I am scoring the captures correctly so my thinking is that the FLUKA handling of the gamma cascade after a Gd neutron capture.
Any information anyone has on this, whether I am scoring incorrectly or whether the cascades are in fact wrong, is appreciated