-
I've already checked the section on this in the class library but I don't fully understand what it does. Do the upper and lower energy limits for the particles effect the creation of new particles from collisions? Or do they have some relation to the beam source? Or is it that if a particle from the beam source ever goes outside the thresholds it gets deleted and stops being tracked? I want to cutoff all electrons with energy less than 8MeV and have them stop being simulated and thus prevent them from impacting my energy deposition data. I was hoping this is the exact threshold I would use for that. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 11 replies
-
In this case you want to set the In EGSnrc, there exist three sets of thresholds (or cutoffs):
|
Beta Was this translation helpful? Give feedback.
In this case you want to set the
ECUT
(orPCUT
) thresholds in thetransport parameters
.In EGSnrc, there exist three sets of thresholds (or cutoffs):
AE, AP
;UE, UP
; andECUT, PCUT
.AE
andAP
AE
represents the minimum electron energy in the simulation, whileAP
denotes the minimum photon energy. Note that these are kinetic energies, withAE
including the electron rest mass (approximately 0.511 MeV).These thresholds determine particle production. They establish the energy level below which secondary particles are not explicitly created and tracked. Instead, the energy lost to events that would produce particles below
AE
orAP
contributes to the continuous energy loss of the incident part…