-
I recently conducted a simulation of a mixed gamma source experiment involving a bottle containing radioactive mixture placed on a germanium detector within lead shielding. The simulation geometry was set up using ConeStack within an air box. I simulated the radioactive mixture by using source collection. My objective is to compare the simulation results with experimental data to assess counting efficiency. However, upon comparison, I noticed that the number of counts in the simulation output (dat file) is significantly lower than that observed in the experimental data.
|
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 4 replies
-
1. Yes, egs_phd appears to be the optimal choice for replicating a Ge detector measurement. This application tallies the energy deposited from all decay products within a single decay event. It operates under the assumption that the transport time for all particles is negligible compared to the detector's time resolution. That is, the detector does not discern individual particles originating from the same decay. 2. Indeed, specifying the activity is necessary. In Monte Carlo simulations, there exists no inherent "physical time" unit; instead, all parameters are normalized by the number of incident particles or, in the case of radionuclide sources, by the number of decays. Therefore, you need to specify the decay rate (activity), in order to compare with experimental data over a defined time span. |
Beta Was this translation helpful? Give feedback.
First, it's worth noting that egs_phd reports number of counts (not the number of counts per history) in the histogram, so it will change as you adjust
ncase
. When you useegs_radionuclide_source
,ncase
controls the number of particles emitted from the source, not the number of decays. To see the number of decays that were actually simulated, you can checklast case
in the egs_phd output.egs_source_collection
does not have anactivity
parameter. In egs_radionuclide_source you can set activity for each of your sources (not the total activity). However, all this does is sample/set theemission time
parameter for source particles, which in turn is only used if you also setexperiment time
. …