TF SPIM OLD

From New IAC Wiki
Jump to navigation Jump to search

Class Admin

Forest_SimPart_Syllabus

The ability to simulate nature using a computer has become a useful skill for physicists who work in disciplines ranging from basic research to video games. This class will teach you these fundamentals using a practical approach, based on a specific UNIX based programming environment, to simulate fundamental physics processes ranging from ionization and the photoelectric effect to producing anti-matter.

Homework

Homework is due at the beginning of class on the assigned day. If you have a documented excuse for your absence, then you will have 24 hours to hand in the homework after released by your doctor.

Class Policies

http://wiki.iac.isu.edu/index.php/Forest_Class_Policies

Instructional Objectives

Course Catalog Description
Simulations of Particle Interactions with Matter 3 credits. Lecture course with monte-carlo computation requirements. Topics include: Stopping power, interactions of electrons and photons with matter, hadronic interactions, and radiation detection devices.

Prequisites:Math 3360. Phys 3301 or 5561.

Course Description
A practical course applying theoretical descriptions of fundamental particle interactions such as the photoelectric effect, compton scattering and pair production to describe multiple interactions of particles with matter using the montecarlo method. A software package known as GEANT from CERN will be used that is freely available under the UNIX environment. The course assumes that the student has very limited experience with the UNIX environment and no experience with GEANT. Homework problems involve modifying and compiling example programs written in C++. A final project is required in which the student chooses a process to compare the predictions of GEANT with experimental data. A report is written in a format that would be publishable in a scientific journal. Publishing the report is not required but left as an option for the student.

Objectives and Outcomes

SPIM_ObjectiveNoutcomes

Overview

Particle Detection

A device detects a particle only after the particle transfers energy to the device.

Energy intrinsic to a device depends on the material used in a device

Consider a device made of some material with an average atomic number (Z) at some temperature (T). The material's atoms are in constant thermal motion (unless T = zero degrees Klevin).

Statistical Thermodynamics tells us that the canonical energy distribution of the atoms is given by the Maxwell-Boltzmann statistics such that

P(E)=1kTeEkT

P(E) represents the probability of any atom in the system having an energy E where

k=1.38×1023JmoleK

Note: You may be more familiar with the Maxwell-Boltzmann distribution in the form

N(ν)=4πN(m2πkT)3/2v2emv2/2kT

where N(v)Δv would represent the molecules in the gas sample with speeds between v and v+Δv

Example 1: P(E=5 eV)

What is the probability that an atom in a 12.011 gram block of carbon would have an energy of 5 eV?

First lets check that the probability distribution is Normailized; ie: does 0P(E)dE=1?


0P(E)dE=01kTeEkTdE=1kT11kTeEkT0=[ee0]=1

P(E=5eV) is calculated by integrating P(E) over some energy interval ( ie:N(v)dv). I will arbitrarily choose 4.9 eV to 5.1 eV as a starting point.


5.1eV4.9eVP(E)dE=[e5.1eV/kTe4.9eV/kT]

k=(1.38×1023JmoleK)=(1.38×1023JmoleK)(6.42×1018eVJ)=8.614×105eVmoleK

assuming a room temperature of T=300K

thenkT=0.0258eVmole

and

5.1eV4.9eVP(E)dE=[e5.1/0.0258e4.9/0.0258]=4.48×10831.9×10864.48×1083

or in other words the precise mathematical calculation of the probability may be approximated by just using the distribution function alone

P(E=5eV)=e5/0.02581085

This approximation breaks down as E0.0258eV

Since we have 12.011 grams of carbon and 1 mole of carbon = 12.011 g = 6×1023carbon atoms

We do not expect to see a 5 eV carbon atom in a sample size of 6×1023 carbon atoms when the probability of observing such an atom is 1085. Note: The mass of the earth is about 1027 g 1050 atoms, so a detector the size of the earth would also have a very small probability of having a carbon atom with an energy of 5 eV.

The energy we expect to see would be calculated by

<E>=0EP(E)dE

If you used this block of carbon as a detector you would easily notice an event in which a carbon atom absorbed 5 eV of energy as compared to the energy of a typical atom in the carbon block.


Silicon detectors and Ionization chambers are two commonly used devices for detecting radiation.

approximately 1 eV of energy is all that you need to create an electron-ion pair in Silicon

P(E=1eV)=e1/0.02581017

approximately 10 eV of energy is needed to ionize an atom in a gas chamber

P(E=10eV)=e10/0.025810169


The low probability of having an atom with 10 eV of energy means that an ionization chamber would have a better Signal to Noise ratio (SNR) for detecting 10 eV radiation than a silicon detector

But if you cool the silicon detector to 200 degrees Kelvin (200 K) then

P(E=1eV)=e1/0.01721026<<1017

So cooling your detector will slow the atoms down making it more noticable when one of the atoms absorbs energy.

also, if the radiation flux is large, more electron-hole pairs are created and you get a more noticeable signal.

Unfortunately, with some detectore, like silicon, you can cause radiation damage that diminishes it's quantum efficiency for absorbing energy.

What does this have to do with Simulations?
You just did a SImulation. Consider the following description of the Monte Carlo Method

The Monte Carlo method

Stochastic
from the greek word "stachos"
a means of, relating to, or characterized by conjecture and randomness.


A stochastic process is one whose behavior is non-deterministic in that the next state of the process is partially determined.

The above particle detector was an example of describing a stochastic process using a probability distribution to determine the likely hood of finding an atom with a certain energy.

Quantun Mechanics is perhaps the best example such a non-deterministic systems. The canonical systems in Thermodynamics is another example.

Basically the monte-carlo method uses a random number generator (RNG) to generate a distribution (gaussian, uniform, Poission,...) which is used to solve a stochastic process based on an astochastic description.


Example 2 Calculation of π

Astochastic description
π may be measured as the ratio of the area of a circle of radius r divided by the area of a square of length 2r

File:PI from AreaRatio.jpgAcircleAsquare=πr24r2=π4

You can measure the value of π if you physically measure the above ratios.

Stochastic description
Construct a dart board representing the above geometry, throw several darts at it, and look at a ratio of the number of darts in the circle to the total number of darts thrown (assuming you always hit the dart board).
Monte-Carlo Method
Here is an outline of a program to calulate π using the Monte-Carlo method with the above Stochastic description

File:MC PI fromAreaRatio.jpg

begin loop
 x=rnd
 y=rnd
 dist=sqrt(x*x+y*y)
 if dist <= 1.0 then numbCircHits+=1.0
 numbSquareHist += 1.0
end loop
 print PI = 4*numbCircHits/numbSquareHits

A Unix Primer

To get our feet wet using the UNIX operating system, we will try to solve example 2 above using a RNG under UNIX

List of important Commands

  1. ls
  2. pwd
  3. cd
  4. df
  5. ssh
  6. scp
  7. mkdir
  8. printenv
  9. emacs, vi, vim
  10. make, gcc
  11. man
  12. less
  13. rm

Most of the commands executed within a shell under UNIX have command line arguments (switches) which tell the command to print information about using the command to the screen. The common forms of these switches are "-h", "--h", or "--help"

ls --help
ssh -h

the switch deponds on your flavor of UNIX

if using the switch doesn't help you can try the "man" (sort for manual) pages (if they were installed). Try

man -k pwd

the above command will search the manual for the key word "pwd"

Example 3: using UNIX to compile a RNG

Step

  1. login to aztec.
    click here for a description of logging in if using windows
  2. mkdir src
  3. cd src
  4. cp -R ~tforest/NucSim/Day1 ./
  5. ls
  6. cd Day1
  7. make
  8. ./rndtest

Here is a web link to the source files you can copy in case the above doesn't work

A Root Primer

In bash shell do

export ROOTSYS=~tforest/src/ROOT/root

if chsh do

setenv ROOTSYS ~tforest/src/ROOT/root

To start the root program type

$ROOTSYS/bin/root

Example 1: Create Ntuple and Draw Histogram

Cross Sections

Definitions

Total cross section
σ = #particlesscattered#incidentparticlesArea
Differential cross section
σ(θ) = dσdΩ#particlesscatteredsolidangle#incidentparticlesArea
Solid Angle
SolidAngleDefinition.jpg
Ω= surface area of a sphere covered by the detector
ie;the detectors area projected onto the surface of a sphere
A= surface area of detector
r=distance from interaction point to detector
Ω=Ar2sterradians
Asphere=4πr2 if your detector was a hollow ball
Ωmax=4πr2r2=4πsterradians
Units
Cross-sections have the units of Area
1 barn = 1028m2
[units of σ(θ)] =[particles][sterradian][particles][m2]=m2
Luminosity
L=NumberofScatterersAreatimeibeamρtargetltarget

FixedTargetScatteringCrossSection.jpg

Fixed target scattering
Nin= # of particles in = IAin
Ain is the area of the ring of incident particles
dNin=IdA=I(2πb)db= # particles in a ring of radius b and thickness db

You can measure σ(θ) if you measure the # of particles detected dN in a known detector solid angle dΩ from a known incident particle Flux (I) as

σ(θ)=dNdΩI

Alternatively if you have a theory which tells you σ(θ) which you want to test experimentally with a beam of flux I then you would measure counts (particles)

dN=Iσ(θ)dΩ=Iσ(θ)dAr2=Iσ(θ)r2sin(θ)dθdϕr2

Units
[dN]=[particlesm2][m2][sterradian] = # of particles
or for a count rate divide both sides by time and you get beam current on the RHS
integrate and you have the total number of counts
Classical Scattering
In classical scattering you get the same number of particles out that you put in (no capture, conversion,..)
dNin=dN
dNin=IdA=I(2πb)db
dN=Iσ(θ)dΩ=Iσ(θ)sin(θ)dθdϕ=Iσ(θ)sin(θ)dθ(2π)
I(2πb)db=Iσ(θ)sin(θ)dθ(2π)
bdb=σ(θ)sin(θ)dθ
σ(θ)=bsin(θ)dbdθ
dbdθ tells you how the impact parameter b changes with scattering angle θ

Example 4: Elastic Scattering

This example is an example of classical scattering.

Our goal is to find σ(θ) for an elastic collision of 2 impenetrable spheres of diameter a. We need to look for a relationship between the impact parameterb and the scattering angleθ. To find this relationship, let's solve this elastic scattering problem by describing the collision using the Center of Mass (C.M.) coordinate system in terms of the reduced mass. As we shall see, by using C.M. coordinate system the 2-body collision becomes a 1-body problem. Then we will describe the motion of the reduced mass in the C.M. Frame.

SPIM ElasCollis Lab CM Frame.jpg Media:SPIM_ElasCollis_Lab_CM_Frame.xfig.txt

Variable definitions
b= impact parameter ; distance of closest approach
m1= mass of incoming ball
m2= mass of target ball
u1= iniital velocity of incoming ball in Lab Frame
v1= final velocity of m1 in Lab Frame
ψ= scattering angle of m1 in Lab frame after collision
u1= iniital velocity of m1 in C.M. Frame
v1= final velocity of m1 in C.M. Frame
u2= iniital velocity of m2 in C.M. Frame
v2= final velocity of m2 in C.M. Frame
θ= scattering angle of m1 in C.M. frame after collision


Determining the reduced mass


SPIM 2Body-1BodyCoordSystem.jpg

vector definitions
r1 = a position vector pointing to the location of m1
r2 = a position vector pointing to the location of m2
R = a position vector pointing to the center of mass of the two ball system
rr1r2 = the magnitude of this vector is the distance between the two masses

In the C.M. reference frame the above vectors have the following relationships

  1. R=0=m1r1+m2r2m1+m2m1r1=m2r2
  2. r1r2=r

solving the above equations for r1 and r2 and defining the reduced mass μ as

μ=m1m2m1+m2 reduced mass

leads to

r1=μm1r
r2=μm2r

We can use the above reduced mass relationships to construct the Lagrangian in terms of r instead of r1 and r2 thereby reducing the problem from a 2-body problem to a 1-body problem.

Construct the Lagrangian

The Lagrangian is defined as:


L=TU

where

T kinetic energy of the system

U Potential energy of the system which describes the interaction


L=12|˙r1|2+12|˙r2|2U

= 12m1(m2m1+m2)2|˙r|2+12m2(m1m1+m2)2|˙r|2U(r)
= 12(m2+m1)(m1m2(m1+m2)2)|˙r|2U(r)

after substituting derivative of the expressions for r1 and r2

= 12μ|˙r|2U(r)

The 2-body problem is now described by a 1-body Lagrangian we need to determine which coordinate system (cartesian, spherical,..) to use to write an expression for (|˙r|2). Polar seems best unless there is a dependence in the azimuthal angle.

Lagranges equations of motion are given by

Lq=ddtL˙q

where q represents one of the coordinate (cannonical variables).

To get the classical scattering cross section we are interested in finding an expression for the dependence of the impact parameter on the scattering angle,dbdθ.

Now lets redraw the collision in terms of a reference frame fixed on m2 (before collision its the Lab Frame but not after collision).

SPIM ElasCollis CMFrame.jpg Media:SPIM_ElasColls_CMFrame_xfig.txt

The C.M. Frame rides along the center of mass, the above coordinate system though has its origin on m2. The above drawing identifies θ and ϕ for the system at the point of the collision in which the CM frame is a distance a (the size of the ball) from the origin of the coordinate system fixed to m2. If b>a then there is no collision (θ=0), otherwise a collision happens when r=a (the distance between the balls is equal to their diameter). A head on collision is defined as b=0 (θ=π).

Observation
as θ gets smaller, b gets bigger
dbdθ<0

Using plane polar coordinates (r,ϕ) we can describe the problem in the lab frame as:

v=˙Rˆer+r˙ϕˆeϕ

T=12μ(˙r)2+r2˙ϕ2)


U(r)={0r>ara

L=TU=12μ(˙r2+r2˙ϕ2)U(r)

Lagranges Equation of Motion:

Lϕ=ddtL˙ϕ 0=ddt[μr2˙ϕ] there is a constant of motion ( Constant angular momentum)

μr2˙ϕ=r×p=r×μv=r2μ˙ϕ

substitute into L

L=12(μ˙r2+μr2)U(r)

The two equations above are in terms of r and ϕ whereas our goal is to find an expression for dbdθ. Since r is related to b and ϕ is related toθ (θ=π2ϕ; see figure above) we should try and find expressions for dϕ in terms of r(b)

Trick
˙ϕ=dϕdt=dϕdrdrdt
=μr2dϕdr˙r
or
dϕ=μr2˙rdr

We now need an expression for ˙r in order to integrate the above equation to determine the functional dependence of ϕ and henceθ.

Since Energy is conserved (Elastic Scattering), we may define the Hamiltonian as

H=T+U=12(mu˙r2+μr2)+U(r)=constantE

solving for ˙r

˙r=±2(EU(r))μ2μ2r2

substituting the above into the equation for dϕ and integrating:

ϕ=dϕ=rmaxrminμr2˙Rdr

rmin=armax=U(r)=0:ar

ϕ=ar22μE2r2dr

For ar : E=12μv2cmvcm=2Eμ

=r×p||=|r||p|sin(ϕ)=rμvcmsin(ϕ)=rμ(2Eμ)sin(ϕ)=2μErsin(ϕ)=2μEb

substituting this expression for into the last expression for ϕ above :

ϕ=abdrr(r2b2)

Integral Table
dxx(αx2+βx+γ)=1γsin1(βx+2γ|x|β24αγ)

let x=rα=1β=0γ=b2

then

ϕ=b1(b2)sin1(2b2r04(1)(b2))|a=sin1(0)sin1(ba)

or

sin(ϕ)=ba=sin(π2θ2)=cos(θ2)

b=acos(θ2)


Now substitute the above into the expression for σ(θ)

σ(θ)=bsin(θ)dbdθ=acos(θ/2)sin(θ)a[sin(θ/2)]12=a22cos(θ/2)sin(θ/2)sin(θ)

drop the negative sign, sqrt in denominator allows this, and use the trig identity

sin(θ2+θ2)=cos(θ2)sin(θ2)+cos(θ2)sin(θ2)
sin(θ)=2cos(θ2)sin(θ2)

σ(θ)=a2212=a24

σ=σ(θ)dΩ=a22124π=πa2


compare with result from definition
σ = scattering cross-section #particlesscattered#incidentparticlesArea
number of particles scattered = number of incident particles
Area = πa2 = The area profile in which a collision occurs( the ball diameter is a) ClassicalEffectiveScatteringArea.jpg

σ=NNπa2=πa2

Lab Frame Cross Sections

The C.M. frame is often chosen to theoretically calculate cross-sections even though experiments are conducted in the Lab frame. In such cases you will need to transform cross-sections between two frames.

The total cross-section should be frame independent

σC.M.=σLab

or

σ(θ)dΩ=σ(ψ)dΩ

where

θ is in the CM frame and ψ is in the Lab frame.


A non-relativistic transformation
σ(θ)dΩ=σ(ψ)dΩ
σ(θ)2πsin(θ)dθ=σ(ψ)2πsin(ψ)dψ
σ(ψ)=sin(θ)sin(ψ)dθdψσ(θ)

The transformation is governed by the dependence of θ on ψ (dθdψ)

Lets return back to our picture of the scattering Process

SPIM ElasCollis Lab CM Frame.jpg

if we superimpose the vectors v1 and v1 we have

SPIM ElasCollis Lab CM Frame Velocities.jpg

Trig identities (non-relativistic Gallilean transformation) tell us

v1sin(ψ)=v1sin(θ)


v1cos(ψ)=vcm+v1cos(θ)

solving for ψ

tan(ψ)=sin(ψ)cos(ψ)=v1sin(θ)/v1vCMv1+v1cos(θ)v1=sin(θ)cos(θ)+vCMv1

For an elastic collision only the directions change in the CM Frame: u1=v1 & u1=v2

From the definition of the C.M.
vCM=m1u1+m2u2m1+m2=m1m1+m2u1
conservation of momentum in CM Frame
m1u1=m2u2
v1=u1=m2m1u2
Gallilean Coordinate transformation
u1=u1+vCM=u1+m1m1+m2u1
u1=[1m1m1+m2]u1=m2m1+m2u1
v1=u1=m2m1+m2u1
another expression for ψ

using the above gallilean transformation we can do the following

vCMv1=m1m1+m2u1m2m1+m2u1=m1m2

or

tan(ψ)=sin(θ)cos(θ)+m1m2

after a little trig substitution

m1m2=sin(θψ)sin(ψ)= constant

now use the chain rule to find dθdψ

fsin(θψ)sin(ψ)= constant
df=0=fψdψ+fθdθ
dθdψ=fψfθ
fψ=cos(θψ)sin(ψ)+sin(θψ)sin(ψ)
fθ=1+sin(θψ)cos(ψ)cos(θψ)sin(ψ)

after substitution:

σ(ψ)=sin(θ)sin(ψ)dθdψσ(θ)
=sin(θ)sin(ψ)[1+sin(θψ)cos(ψ)cos(θψ)sin(ψ)]σ(θ)

For the above equation to be more useful one would prefer to recast it in terms of only ψ and masses.

σ(ψ)=[m1m2cos(ψ)+1(m1sin(ψ)m2)2]1(m1sin(ψ)m2)2σ(θ)

Stopping Power

Ann. Phys. vol. 5, 325, (1930)

Bethe Equation

Classical Energy Loss

Consider the energy lost when a particle of charge (ze) traveling at speed v is scattered by a target of charge (Ze). Assume only the coulomb force causes the particle to scatter from the target as shown below.

SPIM Bethe ClassCoulScat.jpg

Notice
as ze is scattered the horizontal component of the coulomb force (F) flips direction; ie net horizontal force for the scattering
Fvertical=kzZe2r2sin(θ)=kzZe2r2br

where

k =14πϵ0
r = distance between incident projectile and target atom
b= impact parameter of collision


Using the definition of Impulse one can determine the momentum change of ze as

Δp=Fdt

Let's assume that the energy lost by the incident particle ze is absorbed by an electron in the target atom. This energy may be cast in terms of the incident particles momentum change as

(Δp)22me

By calculating the change in momentum (Δp) of the incident particle we can infer that the energy lost by the incident particle is absorbed by one of the target material's atomic electrons.

ΔP=Fdt=kzZe2br3dt

using dt=dxv=dxβc we have

=kzZe2bβc+dx(x2+b2)3/2
=kzZe2bβcb2+dx/b(1+x2b2)3/2
+dx/b(1+xb2)3/2=2
Δp=2kzZe2bβcb2

casting this in terms of the classical atomic electron radius re

re=ke2mev2ke2mec2 just equate F=ke2r2e=mv2re

Then

Δp=2zZremecβb

and

ΔE=(Δp)22me=2(remeβb)2z2Z2c2me : Z = 1 here because I shall assume the energy is lost to just the electron and the Atom is a spectator

Now let's calculate an expression representing the AVERAGE energy lost for an incident particle traversing a material of some thickness.

Let

P(ΔE) = Probability of an interaction taking place which results in an energy loss ΔE

If we let

Z = Atomic Number = # electrons in target Atom = number of protons in an Atom

N = Avagadros number = 6.022×1023Atomsmol

A = Atomic mass = gmole

dP(ΔE) = probability of hitting an atomic electron in the area of an annulus of radius (b+db) with an energy transfer between ΔE and ΔE+d(ΔE)

Then

dEdx=0dP(ΔE)ΔE = energy lost by the incident particle per distance traversed through the material

I am just adding up all the energy losses weighted by the probability of the energy loss to find the total energy loss.

What is dP(ΔE)
dP(ΔE) = probability of an energy transfer taking place = probability of an interaction = NAdσ [ Atoms m2/g]
dP(ΔE)=NAdσ=NA(2πbdb)Z
classically σ=πb2;dσ=2πbdb
In practice σ is a measured cross-section which is a function of energy.

dEdx=0NA(2πbdb)ZΔE=2πNZA0ΔEbdb

= 2πNZA0[2r2emec2z2β2b2]bdb
= 4πNr2emec2z2ZAβ20dbb
=KAz2Zβ20dbb

where KA=4πNr2emec2A=0.307MeVcm2g if A=1

The limits of the above integral should be more physical in order to reflect the limits of the physics interaction. Let b_{min} and b_{max} represent the minimum and maximum possible impact parameter where the physics is discribed, as shown above, by the coulomb force.

What is bmin?

if b0 then dEdx diverges and the energy transfer :ΔE1b. Physically there is a maximum energy that may be transferred before the physics of the problem changes (ie: nuclear excitation, jet production, ...). The de Borglie wavelength of the atom is used to estimate a value for bmin such that

bmin12λdeBroglie=h2p=h2γmeβc
What is bmax?

As b gets bigger the interaction is "softer" and longer. If the interaction time (τi) is so long that it is equivalent to an electron orbit (τR) then the atom looks more like it is neutrally charged. You move from an interaction in which the electron orbit is perturbed adiabatically such that there is no orbit change and the minimum amount of energy is transferred to no interaction taking place because the atom is neutral.

Let

τi=bmaxv(1β2) : fields at high velocities get Lorentz contracted
τRhI : I mean excitation energy of target material ( E=hν=h/τ)

Condition for bmax :

τi=τR

bmax=hγβcI

dEdx=KAz2Zβ20dbb

=KAz2Zβ2lnbmaxbmin
=KAz2Zβ2ln2γ2meβ2c2I
Example 5: Find dEdx for a 10 MeV proton hitting a liquid hydrogen (LH2) target

A = Z=z=1
mec2 = 0.511 MeV
I = 21.8 eV : see gray data point for Liquid H2 From Figure 27.5 on pg 6 of PDG below.
PDG IonizationPotential.jpg

Just need to know γ and β

"a 10 MeV proton" Kinetic Energy (K.E.) = 10 MeV = (γ1)mc2

γ=K.E.mc2+1=10MeV938MeV+11=11β2

Proton is not relativistic

v2=2K.E.m=210MeV938MeV/c2=2×102c2β2=v2c2=2×102

Plugging in the numbers:

dEdx=(0.307MeVcm2g)(1)2(1)12×102ln(2(1)(0.511MeV)(2×102)21.8eV106eVMeV)
=105MeVcm2g
How much energy is lost after 0.3 cm?

Notice that the units for energy loss are normalized by the density of the material ρLH2 = 0.07 gcm3

To get the actual energy lost I need to multiply by the density. So for any given atom the energy loss will depend on the state (solid, gas, liqid) of the atom as this effects the density of the material.

ΔE=(105MeVcm2g)(0.07gcm3)(0.3cm) = 2.2 MeV

File:SPIM HydrogenStoppingPower.pdf Compare with Triumf Kinematics Handbook, 2nd edition, September 1987, L.G. Greeniaus

Bethe-Bloch Equation

While the classical equation above works in a limited kinematic regime, the Bethe-Bloch equation includes the corrections needed to cover most kinematic regimes for heavy particle energy loss.

dEdx=Kz2ZA1β2[12ln(2m2c2β2γ2TmaxI2)β2δ2]PDG reference Eq 27.1 pg 1

where

Tmax=2mec2β2γ21+2γmeM+meM
= Max K.E. transferable to the Target of mass M in a single collision.
β2
= correction for electron spin and very distant collisions which deforms the electron atomic orbits each process reducing dE/dx by β2
δ2
= density correction term: in the classical derivation the material is treated as just a system of N atoms uniformly distributed in space. These Atoms, however, give the material polarizability which can reduce the electric field (dielectric).

GEANT 4 implementation

The GEANT4 file (version 4.8.p01)

source/processes/electromagnetic/standard/src/G4BetheBlockModel.cc

is used to calculate hadron energy loss.

line 132

dEdx=log(2mec2τ(τ+2)EminI2)(1EminEmax)β2

where

τ=K.E.M

line 143

dEdx=log(τ(τ+2))cden = density corection = δ2

line 148

dEdx=2cZtarget = shell correction, corrects for the classical asumption that the atomic electron's velocity is initially zero; or the the incident particles velocity is far greater than the atomic electron's velocity.

line 154

dEdx=2πmec2r2ez2β2ρeρeNZA

Energy Dependence

SPIM EnergyLoss EnergyDependence.jpg

The above curve shows the energy loss per distance traveled (dEdx) as a function of the incident particles energy. There are three basic regions. At low incident energies ( < 10^5 eV) the incident particle tends to excite or even ionize the atoms in the material it is penetrating. The maximum amount of energy loss per distance traveled is defined at as the Bragg peak. The region after the Bragg peak in which the energy loss per distance traveled reaches its smallest value is refered to as the point of minimum ionizing. Minimimum ionizing particles will have incident energies corresponding to this value or larger. The characteristic of the minimum ionizing particles is that their energy loss per distance traveled is essentially constant making simulations easier until the particle's energy drops below the minimum ionizing energy level as it passes through the material.

In general the Bethe-Bloch equation breaks down at low energies (below the Bragg peak) and is a good description (to within 10%) for

10MeVa.m.u.<E<2GeVa.m.u. and Z < 26 (Iron) : a.m.u = Atomic Mass Unit

the 1β2 term in the Bethe-Bloch equation dominates between the Bragg peak and the minimum ionization region.

the ln term and its corrections influence the dependence of dEdx as you move up in energy beyond the minimum ionization point.

Energy Straggling

While the Bethe-Bloch formula gives you a way to quantify the amount of energy a heavy charged particle loses as a function of the distance traveled, you should realize that when you calculate the total energy lost via

ΔE=EfEi(dEdx)dx

you are only determining the AVERAGE energy loss. In other words, Bethe-Bloch is the Astochastic process describing energy loss.

In reality the energy loss process is a stochastic process because of the statistical fluctuations which occur in the actual number of collisions which take place.


Thick Absorber

A thick absorber is one in which a large number of collisions takes place. In this situation the central limit theorem from statistics tells you that the larger number of random variables N involved will result in observables which are distributed in a Gaussian manner. The Gaussian distribution is a good approximation to the binomial distribution when the number of trials is large.

Forest_ErrAna_StatDist#Binomial_with_Large_N_becomes_Gaussian

, and to a Poisson distribution when the mean is a lot larger than 1.

Forest_ErrAna_StatDist#Gaussian_approximation_to_Poisson_when

The gaussian probability function is defined as

P(x,Δ)e(ΔˉΔ)2σ2

where the Full Width at Half Max (FWHM) of the distribution = (22ln2)σ

In the case of energy loss, the variance using the Bethe-Bloch equation should be

σ20=4πNr2e(mec2)2ρZAx

the realitivistic variance is

σ2=[1β2/21β2]σ20

for very thick absorbers see

C. Tschaler, NIM 64, (1968) 237 ; ibid, 61, (1968) 141

When simulating energy loss of heavy charged particles the Bethe-Bloch equation may be used to calculate a dEdx which can determine the average energy loss at the given kinetic energy of the particle. This average is then smeared according to a gaussian distribution of variance

σ2=4πNr2e(mec2)2ρZAx[1β2/21β2]

Thin Absorbers

In thin absorbers the number of collisions is small preventing the use of the central limit theorem to describe the stochastic process of energy loss in terms of a Gaussian distribution. The large energy transfers that are possible cause the energy loss distribution to look like a Gaussian with a high energy tail (or foot).

The skewness of the resulting energy loss distribution is quantified as

κ=ˉΔWmax
Δ2πNar2emec2ρZA(zβ)2x = lead term in Bethe Bloch equation

ρ = density of absorbing material.

Wmax=(pc)212[mec2+(M2c2me)]+(pc)2+(Mc2)2 = max energy transfered in 1 collision (headon / knock out collision)

This comes from the relativistic kinematics of an Elastic Collision.
SPIM ThinAbsorbers Scatering.jpg

γ=EtotMc2=(pc)2+(Mc2)2Mc2
β=pcγMc2=pcEtot
Ek=EtotMc2=γMc2Mc2=(γ1)Mc2
Ek=(pc)2+(Mc2)2Mc2
(pc)2=E2k+2Ekmec2


Conservation of Momentum  :

p=p+p

Conservation of Energy  :

Etot+mec2=Etot+Etot
(pc)2+(Mc2)2+mec2=(pc)2+(Mc2)2+Ek+mec2


using conservation of E & P as well as substituting for p you can show

(pc)2=(pc)22Ek(pc)2+(Mc2)2+E2k : cons of E
=(pc)2+E2k+2Ekmec22pcE2k+2Ekmec2cos(θ) : cons of P

pccos(θ)1+2mec2Ek=(pc)2+(Mc2)2+mec2

solving for Ek

Ek=2mec2(pc)2cos2(θ)[(pc)2+(Mc2)2+mec2]2(pc)2cos2(θ)
(Landau Theory)

κ0.01

Landau assumed

  1. Wmax= is max energy transfer
  2. electrons are free (energy transfer is so large you can neglect binding)
  3. incident particle maintains velocity (large momentum transfer from big mass to small mass) (bowling ball hits ping pong ball)

L. Landau, "On the Energy Loss of Fast Particles by Ionization", J. Phys., vol 8 (1944), pg 201

instead of a gaussian distribution Landau used

P(x,Δ)1ˉΔπ0eulnuuλsin(πu)du

where

λ=1ˉΔ[ΔˉΔlnˉΔlnϵ+1C]
ˉΔ=2πNar2emec2ρZz2Aβ2x
lnϵ=ln[(1β2)I22mec2β2]
C=0.577

SPIM Landau ThinAbsorberDist.jpg

(Vavilou's Theory)

Vavilous paper

P.V. Vavilou, "Ionization losses of High Energy Heavy Particles", Soviet Physics JETP, vol 5 (1950? )pg 749

describe the physics for the case

0.01<κ<

The distribution function derived is shown below as well as a conceptual overlay of Vavilou's and Landau's distributions. (The ζf(x,Δ) in the picture should be a ˉΔP(x,Δ) )


P(x,Δ)=1ˉΔπxex(1+β2C)0exf1cos(yλ1+xf2)dy

where

f1=β2[ln(y)Ci(y)]cos(y)ySi(y)
f2=y[ln(y)Ci(y)]+sin(y)+β2Si(y)
Ci(y)ycos(t)tdt
Si(y)y0sin(t)tdt
C=0.577

SPIM Vavilou Landau ThinAbsorber.jpg

GEANT4's implementation

GEANT 4 uses the skewness parameter κ to determine if it will use a "fluctuations model" to calculate energy straggling or the gaussian model described in section 3.2.1.

kappa > 10

If

κˉΔWmax > 10

and we have a thick absorber ( large step size) then the Gausian function in 3.2.1 is used to calculate energy straggling.

What happens is ΔE is calculated via EfEidEdxdx then the actual energy loss predicted by the simulation is chosen from a Gaussian distribution to account for energy straggling such that the σ of this Gaussian distribution is given by:

σ2=2πr2emec2NelZhβ2TCs(1β22)

where

Nel = electron density of the medium
Zh = charge of the incident particle
s = step size
TC = cutoff kinetic energy for δ-electrons

TC tells GEANT where to put the cutoff for using the Gaussian distribution for energy straggling. This tells the simulation the low energy cutoff where Bethe-Bloch starts to fail due to ionization.

Delta-electrons

What is a δ - electron?

δ - electrons are also known as "knock -on" electrons and delta rays.

As heavy particles traverse a medium they can ionize electrons from atoms. The ejected electrons can be given enough energy to ionize as well.

In a cloud chamber (a supercooled volume of super saturated water vapor which ionizes as charged particles pass through) such and event would look like:

SPIM DeltaRay CloudChamber.jpg

The blue spiral in the above gas chamber picture is a high energy electron from the collision. The B-field is directed out of the picture.

The physics of ionization is different from the physics used to calculate Bethe-Bloch energy loss. Remember Bethe-Bloch starts to break down at low energies below the Bragg peak.

Because of this GEANT 4 sets the cutoff for this process to be

Tcut > 1 keV


Note: The BE energies of an electron in Hydrogen is 13.6 ev and the electrons in Argon have binding energies between 15.7 eV and 3.2 keV.

Fluctuations Model: kappa < 10

If κˉΔWmax<ΔETC

Then GEANT 4 uses a "Fluctuations Model" to determine energy loss instead of Bethe-Bloch.

Fluctuations Model
  1. the atom is assumed to have on 2 energy levels E1 and E2
  2. you can excite the atom and lose either E1 or E2 or you can ionize the atom and lose energy according to a 1E2 function uj.

The total energy loss in a step will be

ΔE=ΔEexc+ΔEion

where

ΔEexc=η1E1+η2E2
ΔEion=η3j=1I1ujTupITup
η1, η2, and η3 are the number of collisions which are sampled from a poison distribution
uj=EjIITupTupIdxx2
Ej=I1randTup1Tup : rand = random number between 0 and 1
Tup={ 1keVthresholdenergyforδrayproductionTmaxifTmax<1keV
I = mean ionization energy
E2(10eV)Z2
lnE1=ln(I)f2ln(E2)f1
f1+f2=1
f2={0z=12zz2

The fluctuation model was comparted with data in

K. Lassila-Perini and L. Urban, NIM, A362 (1995) pg 416

The cross sections used for excitation and ionization may be found in

H. Bichel, Rev. Mod. Phys., vol 60 (1988) pg 663

Range Straggling

Def of Range (R)
The distance traveled before all the particles energy is lost.
RT0dEdEdx
= theoretical calculation of the path length traveled by a particle of incident energy T
Note units: [R]=gcm2;[dEdx]=MeVcm2g

the Energy Straggling introduced in the previous section can explain why identical particles penetrate material to different depths. The energy straggling results in Range straggling.

If we do a shielding experiment where we have a source of incident particles of energy E and we count how many "punch" through a material of thickness (x) we would see a transmission coefficient (NoutNin) which would look like

SPIM RangeStraggling.jpg

Fractional Range Straggling

σRR fractional range straggling

Assuming the energy loss of a non-relativistic heavy ion through matter follows a Gaussian (thick absorber)

Then it can be shown that

σRR12MA

where

M = mass of the target electrons
A = atomic mass of the Projectile

since

me=9.11×1031 kg

and

1 a.m.u. = 1.66×1027 kg

then

σRR129.11×10311.66×1027A
= 1.17 % if using a proton (A=1)

The above is a "back of the envelope" estimate. The experimentally measured values for Cu, Al, and Be target using a proton projectile are

SPIM RangeStrag SigmaR overR.jpg

If the incident projectile is an electron then σRR12 making electron range straggling a vague concept.

There are several definitions of electron range

1.) Maximum Range (R0)
This range is defined using the continuous slowing down approximation (CSDA) in the electrons are assumed to have many collisions over very small dimensions making it appear to be continuous energy loss instead of discrete. The range is then calculated by integrating over these average energy losses dEdxs.
2.) Practical Range (RP)
This stopping distance is defined by extrapolating the electron transmission curve to zero (see below).

SPIM PracticalRangStraggline 4Electrons.jpg

Electron Capture and Loss

Bohr Criterion

"A rapidly moving nucleus is fully ionized if its velocity exceeds that of its most tightly bound electron"

The Bohr Model:

E=mz2e48ϵ20h2n2

for the inner most electron (n=1)

Electron K.E. = 12mv2=mz2e42(4πϵ0)22v=ze24πϵ0


the fine structure constant αe24πϵ0c=1137
v=zcα

If v>zcα the nucleus is fully ionized

or

if zv/c=zβ<1α=137

alternatively if the ion is moving through a material with a speed such that

zβ>1α=137


Then electrons may be captured by the projectile and lost by the target.

Z-effective

Describing the charge state of your heavy ion traveling through matter at a velocity below the Bohr criterion is very complicated. There is a competition between electron capture and loss. Accurate cross sections are needed to simulate the process reliably.

Some insight into this process can be found using the Thomas-Fermi model

VZer/ar

to describe an atom moving slow enough so it has captured many electrons but fast enough so its not neutral. In the Thomas-Fermi model the distribution of electrons in an atom is described as being uniformly distributed such that there are 2 electrons in each discrete volume of phase space( the space in which all possible states of a system are represented) defined using planks constant as h3.

For the purpose of simulations you would like a relationship for Zeff in terms of β and Z.

It is usually adequate to use fits for empirical data as long as we know that we are in the kinematic range in which those fits are valid.


when E<10 MeV the data indicates that

Zeff=Z(1eβBZ2/3)

where

B=130±5
Zeff effective charge f the projectile = Zˉqc
Z = number of protons
ˉqc = average number of captured electrons


When calculating stopping power for E < 10 MeV you use Zeff in the Bethe-Bloch equation.

Note: As the ions charge state fluctuates while it slows down (or if accelerated through materials) you will need to recalculate the energy loss, and as a result you will get larger energy loss fluctuations in this energy range.

For thin absorber you will look for stripping and loss cross sections.

Here a thin absorber is one whose thickness is less than the charge equilibrium distance defined as the distance traveled until the projectile's velocity is vzcα

A rule of thumb is that a thin absorber for low energy ions has a thickness 5μgcm2ρ

For thick absorbers: The experimentally determined expression for the change in Zeff from Z is

ΔZeff=12[Zeff(1ZeffZ)1.67]

Multiple Scattering

The Bethe-Bloch equation tells us how much energy is lost and GEANT4s calculation of this energy is described above.

Now we need to know which direction the scattered particle goes after it has lost this energy.

The work of Moliere describes the angular deflection of the particle which lost the energy thereby leading to a prediction of the Cross-section. GEANT4 though uses the more complete Lewis theory to describe Multiple Couloumb Scattering (MCS) sometimes generically referred to as multiple scattering.

There are 3 regions in which coulomb scattering is calculated

1.) Single Scattering
For thin materials.
If the probability of more than 1 coulomb scattering is small
The use the Rutherford formula for dσdΩ
2.)Multiple Scattering
In this case the number of independent scatterings is large (N > 20) and the energy loss is small such that the problem can be treated statisticaly to obtain a probability distribution for the net deflection angle [P(θ)] as a function of the material thickness that is traversed.


3.) Plural Scattering
If 1< N 20 then you can't use Rutherford to describe the scattering nor use a normal random statistical description.

see E. Keil, Z. Naturforsch, vol 15 (1960), pg 1031


Reviews of rigorous multiple scattering calculations may be found in

P.C. Hemmer, et. al., Phys. Rev, vol 168 (1968), pg 294

GEANT4's implementation of MSC (N>20)

GEANT4 models MSC when N>20 using model functions to determine the angular and spatial distributions chosen to give the same moments of these distributions as the Lewis theory.

H.W. Lewis, Phys. Rev., vol 78 (1950), pg 526

modern versions of the above are at

J.M. Fernandez-Varea, et. al., NIM, B73 (1993), pg 447
I. Kawrakow, et. al., NIM, B142 (1998) pg 253

When N>20 multiple scattering can be described as a statistical process using a modified version of the Boltzman transport equation from statistical mechanics.

Note
The simulation step size is chosen such that (N>20), If you have materials so thin that N < 20 then GEANT4 will likely skip the material. (one way around this is to increase the thickness and change the density). If the material thickness can't be increased because its sandwhiched between two other materials then you will need to write a special step algorithm for the volume and have GEANT4 use it for the step.


Let f(s,x,ˆv) the distribution function for a system of incident particles traveling through a material.

where

s= arc length of the particle's path through the material
x= position of a charged particle
ˆv= direction of motion of the particle v|v|

The multiple scattering experienced by a single charged particle traveling through the material is then simulated by sampling from the distribution f(s,x,ˆv)

The governing transport/diffusion equation is based on the continuity equation but with a "sink" term representing the possibility of collisions ejecting particles out of the volume.

SPIM MultScatDiffEq.jpg

f(s,x,ˆv)s+ˆvf(s,x,ˆv)=Nσ(ˆvˆv)[f(s,x,ˆv)f(s,x,ˆv)]dˆv

where

N = number of atoms per volume
σ(ˆvˆv) = cross sections for elastic scattering per Solid angle (dσdΩ)

To solve the above diffusion equation the distribution function, f(s,x,ˆv) is expanded in Spherical Harmonics ( Ym(θ,ϕ) ) and σ expand in Legendre Polynomials (PN(cosθ)) since it has no ϕ angle dependence.

Note
For Coulomb Scattering in polar coordinates you can write the potential in terms of Legendre Polynomials such that:
U=kqr
= kqr2a22arcosθ in polar coordinates
= kqrn=0Pn(cosθ)(ar)n (the sqrt term above is expanded using binomial series
f(s,x,ˆv)=,mf,m(x,s)Ym(ˆv)

after substituting into the diffusion equation and doing the integral on the righ hand side you get

f,m(x,s)s+f,m(s,x,ˆvλ=λ,i,jfi,j(x,s)Y,mˆvYi,jdˆvˆv=f(θ.ϕ)

where

1λ=2πNπ0[1P(cosθ)]σ(θ)sin(θ)dθ = th transport mean free path for the f distribution function ( ϕ symmetry is assumed making it m independent)

From the above one can find the average distances traveled and the average deflection angle of the distribution. Again, see :

J.M. Fernandez-Varea, et. al., NIM, B73 (1993), pg 447


The "moments" of f(s,x,ˆv) are defined as

<z>=2πzf(s,x,ˆv)sin(θ)dθd|x|=λ1[1es/λ1] = mean geometrical path length
<cos(θ)>=2π11P(cosθ)f(s,x,ˆv)sin(θ)dθd|x|=es/λ1
1λ1=2πNπ0[1P1(cosθ)]σ(θ)sin(θ)dθ

Notice there are 3 lengths

SPIM MultScatDiffEq PathLength.jpg

s = geometrical path length between endpoints of the step ={lineifB=0arcifB0
t = true path length = actual length of the path taken by particle
<z> - mean geometrical path length along the z-axis

In GEANT4 the λ's are taken from

If 100 eV < K.E. of electron or positron < 10 MeV

D. Liljequist, J. Applied Phys, vol 62 (1987), 342
J. Applied Phys, vol 68 (1990), 3061

If K.E. > 10 MeV

R. Mogol, Atomic Data, Nucl, Data tables, vol 65 (1997) pg 55


with <z> now known GEANT will try to determine "t" for the energy loss and scattering calculations.

A model is used for this where

t=1α[1(1αωz)1ω)]

where

ω=1+1αλ10
α={λ10λ11sλ10K.E.Mparticle1RK.E.<Mparticle
s = stepsize
λ10λ11αs
λ11=λ1 at end of strep

while <cosθ> is calculable, GEANT4 evaluates cos(θ) from a probability distribution whose general form is

g[cos(θ)]p(qg1[cos(θ)]+(1=q)g3[cos(θ)])+(1p)g2[cos(θ)]

where

g1(x)=C1ea(1x)
g2(x)=C2(bx)d
g3(x)=C3
C1,C2,C3 are normalization constants
p,q,a,b,d are parameters which follow the work reported in
V.L. Highland, NIM, vol 219 (1975) pg497

The GEANT4 files in version 4.8 were located in

/source/processes/electromagnetic/utils/src/G4VMultipleScattering.cc

and

/source/processes/electromagnetic/standard/src/G4MscModel.cc

/source/processes/electromagnetic/standard/src/G4MultipleScattering.cc

Interactions of Electrons and Photons with Matter

Bremsstrahlung

Definition
Radiation produced when a charged particle is deflected by the electric field of nuclei in a material.
Note: There is also electron-electron brehmstrahlung but the interaction is with the electric field of the materials atomic electrons.

The Cross section formula is given in Formula 3Cs, pg 928 of reference H.W. Koch & J.W Motz, Rev. Mod. Phys., vol 31 (1959) pg 920 as

Note
Bethe & Heitler first calculated this radiation in 1934 which is why you will sometimes hear Bremsstrahlung radiation refererd to as Bethe-Heitler.
dσ=4Z2r2eαdνν{(1+(EE0)2)[ϕ1(γ)413lnZf(Z)]2E3E0[ϕ2(γ)413lnZf(Z)]}

where

E0 = initial total energy of the electron
E = final total energy of the electron
ν=E0Eh = energy of the emitted photon
Z = Atomic number = number of protons in target material
γ=100mec2hνE0EZ1/3 = charge screening parameter

Coulomb correction to using the Born approximation (approximation assumes the incident particle is a plane wave interacting with a static E-field the correction accounts for changes iin the plane wave due to the presence of the field) Charge screening and the coulomb correction are different effects that have been shown to be additive/independent. File:Haug 2008.pdf

f(Z)=(Zα)211n[n2+(Zα)2]
(Zα)2{11+(Zα)2+0.202060.0369(Zα)2+0.0083(Zα)40.002(Zα)6}
α=1137
ϕ1 and ϕ2 = screening functions that depend on Z

if Z5

ϕ1(γ)=20.8632ln[1+(0.55γ)2]4[10.6e0.980.4e3γ/2]
ϕ2(γ)=ϕ1(γ)23(1+6.5γ+6γ2)


For Z<5 see Tsai, Rev.Mod. Phys., vol 46 (1974) pg 815

if 3Z<5 use Equation 3.46 and 3.47
if Z<2 use Equation 3.25 and 3.26
Note
Energy loss via Bethe-Bloch is due to coulomb deflection and is a continuous process while Bremsstrahlung is a discrete process (emission of photons)
We now know 2 ways charged particles can loose energy when passsing through matter.
Energy loss
(dEdx)tot=(dEdx)rad+(dEdx)col
rad : Bremsstrahlung
col : Bethe-Bloch (collision)
(dEdx)rad=Nν0o(hν)(dσdν)dν

where

N=numberatomscm3=ρNaA=density×AvagadrosNumberAtomicnumber
(hν) = Energy of emmitted photon
(dσdν) = Probabitlity of Energy loss


The quantityΦrad is defined such that

Φrad1E0ν0o(hν)(dσ(E0,ν)dν)dν

Φrad is a macroscopic function of a given material rather than just the energy ν which we will use to define a common property of materials known as the radiation length (R0=1NΦrad)

Φrad=4Z2r2eα{[ln(2Emec2)13f(z)]γ>>1[ln(183E1/3)+118f(z)]γ0

where

γ>>1 case is no screening and 1E0mec2<1αZ1/3
γ0 case has E0mec21αZ1/3

The energy loss equation becomes

dEdx=NE0Φrad
Note
for intermediate value of γ you need to integrate numerically
(dEdx)radZ2E : Bremsstrahlung
(dEdx)colZln(E) : Bethe-Bloch

The illustration below shows the relative contributions of Bethe-Bloch and Bremsstrahlung to the total energy loss according to the above functional dependence. At low energies the physics of collisions dominates the loss (Bethe-Bloch) and as energy increases the discrete loss by radiation begins to dominate.

SPIM Bethe-Brem Eloss-vs-Energy.jpg


Critical EnergyEC

At the critical energy EC the two energy loss processes contribute equally to the total energy lost by a charged particle interacting with matter.

EC energy at which (dEdx)rad=(dEdx)col

In the PDG

EC800MeVZ+1.2
Examples

Critical Energy E_C

Material EC (MeV)
Pb 9.51
Fe 27.4
Cu 24.8
Al 51

Electron-Electron Bremsstrahlung

Electron electron bremsstrahlung
The radiation produced as 2 electrons pass near eachother
dσ is essentially the same except you have z=1 thereby adding a Z term and not a Z2 term

reference:pg 947 from Koch and Motz, Rev. Mod. Phys, vol 31 (1959) pg 920 File:SPIM Koch andMotz RevModPhysv31 1959pg920.pdf

as a result

dσtot=Z(Z+1)Z2dσBrem

= 4Z(Z+1)r2eαdνν{(1+(EE0)2)[ϕ1(γ)413lnZf(Z)]2E3E0[ϕ2(γ)413lnZf(Z)]}

Most calculations ignore electron-electron Brehmsstrahung because its linear in Z and doesn;t become important until low Z where measured atomic form factors are actually used and not Form factors calulated by the Thomas-Fermi-Moliere Model (Z>4).


Coherent Bremsstrahlung

The above equations represent the physics of incoherent bremsstrahlung production.


http://137.99.79.133/halld/tagger/references/inelasticBrems-94.pdf

Radiation Length (Xo)

Radiation Length(X0)
The distance an electron travels through matter until loosing 1e of its energy due to radiation (dEdx)rad.

in the high energy limit where (dEdx)col can be ignored (E>EC)

dEdx=NE0ΦradEE0dEE=X0NΦraddx
ln(EE0)=NΦradX

or

E=E0eNΦradX=E0eXX0

where

X01NΦrad = Radiation Length of a given material

ie:

if X=X0 Then E=1eE0 = Energy of electron after traveling a distance of X0 through the material


Table of Radiation Lengths for several materials

Material X0 (cm)
Air 30,050
Al 8.9
Cu 1.43
Fe 1.76
H2O 36.1
NaI 2.59
Pb 0.56
Polystyrene 42.9
Scintillators 42.2


If we have complete screening (γ=0)
Then 1X0=NΦrad=4αr2eNAA{Z2[Lradf(Z)]+ZLrad}
= Z2[Lradf(Z)]+ZLrad716.408gcm2A

where

Lrad14[ϕ1(γ=0)43ln(Z)]={1+me0[1F(q)Z]2dqqZ4ln(184.15Z1/3Z>4= radiation logarithm for elastic Atomic scattering
Lrad14[ϕ2(γ=0)83lnZ]={1+12me0Ginel2(t)ZdttZ4ln(1194Z2/3Z>4 = radiation logarithm for inelastic Atomic scattering
f(Z)=α2Z2[11+α2Z2+0.202060.0369α2Z2+0.0083α4Z40.002α6Z6] :Z < 92


Quick X0 Estimates
X0=716.4(gcm2)AZ(Z+1)ln(287Z)
Examples of Radiation length
1e=12.7213
an electron has lost 1/3 of its original energy after traveling 1 radiation length (1 X0) through the material
1e217
an electron has lost 1/7 of its original energy after traveling 2 radiation lengths (2 X0) through the material
1e3120
an electron has lost 1/20 of its original energy after traveling 3 radiation lengths (3 X0) through the material
After 2.3 radiation lengths the electron energy is down by a factor of 10 from its original value.

Bremsstrahlung in GEANT 4

GEANT4 uses an energy cut off (Tc,kc) to decide whether to use a continuous energy loss algorithm (msc, Bethe-Bloch, soft photons) or to generate a secondary particle (photon) and use Bremsstrahliung.

TC = incident particle K.E. cutof = secondary particle production threshold
kc = photon energy cutoff below which photons are treated as continuous energy loss.
if Esecondary<TC then no photon is created and the effect of the soft photon reaction is treated as a continuous energy loss via
EBremloss(Z,T,k)=kc0(dσ(z,T,k)dk)kdk = continuous energy loss via "soft" photon emission
dσ(Z,T,k)dk = cross sections parametrerized by the Evaluated Electrons Data Library (EEDL)
reference: J. Tuli, "Evaluated Nuclear Structure Data File", BNL-NCS - 51655 -Rev 87, 1987 from Brookhaven Nat. Lab
see National Nuclear Data Center:
Note
Soft photons are photons created in the scattering process which have less energy than the energy of the particles participating in the interaction. Soft photon are not energtic enough to be detected.

To improve simulation speed though, GEANT 4 actually uses a fit to the above cross sections such that

EBremloss(Z,T,k)=(2CthZ1/4)Z(Z+ϵ)(T+m)2T+2m[kCT]βa+bTTm1+cTTmfNa

where

m = electron mass
T = kinetic energy of incident particle
Na = Avagadros number
ϵ,β,Cth,a,b,c = constants
f = polynomial (in log(T) ) chosen to fit the data
if Esecondary>TC then a photon is created and tracked
The energy of the emitted photon is determine by sampling a probability distribution from
S. Seltzer and M. Berger, Atomic Data & Nucle. Data tables, vol 35 (1986) pg 345-418

and

the angular distribution (cos(θ)) is sampled according to
E. Acosta, Appl. Phys. Letter, vol 80 # 17 (2002) pg 3228-3230


Note

  • The MC program PENELOPE was used to generate the energy distributions that are sampled
  • GEANT4 uses a modified version of base equations for e+e bremsstrahlung with model corrections for e+
LPM effect
There is also a correction kown as the Landau Pomeranchuk Migdal (LPM) effect which corrects for multiple scattering experiences by the electron during the scattering which causes the emission of a photon.

Bragg's Rule for compound materials

The radiation length for compounds and mixtures is determined by parallel weighting (resistors in parallel)

1Lrad=ω1(1Lrad)1+ω2(1Lrad)2

where

ω1 = fraction , by wieght, of each element in the mixture/compound.
=aiAiAm
a1 = # of atoms of element "i"
Ai = atomic # of element "i"
Am=aiAi = effective atomic mass of the compound/mixture

Photo-electric effect

The photo-electric effect identifies the physics process by which bound electrons in an atom are liberated by an interaction with an incident photon.

SPIM PhotoElectricEffectSchematic.jpg

Ef=EEB=hνEB

where

hν = incident photon energy
EB = electron binding energy

Moseley's Law

Moseley's law approximates the binding energies of electrons in atoms as

EB=13.605(Zks)2n2 (eV)

X-ray electron shells are labeled K,L,M


Shell n Spect. Notation (low E) Spect. Notation (High E) k_s
K 1 1S0 3
L 2 2P3/2,2P1/2 3P{3/2} 5
Example
Binding Energies for Argon (A=18) "Chemical Rubber Company Handbook of Chemistry and Physics", CRC press. Boca Raton FL, 81st ed, 2000.
Shell n Spect. Notation Binding Energy (eV)
Measured GEANT4 Moseley
K 1 1S 3218 3178 3061
LI 2 2S 328 313.5 575
LII 2 2P1/2 251 247 575
LIII 2 2P3/2 248.4 247 575


Binding energies for a few common elements

Element Binding Energy (eV)
n=1 n=2 n=3
B 201 14.2 8.3
C 298 17.9 11.4
N 450 26 15
O 548 33 13.6
Na 1083 71 38 5.2
Mg 1313 94 55 7.7
Al 1573 126 81 11 6
Si 1854 157 107 15 8.2
P 2167 195 141 20 10.5
S 2490 236 172 21.3 10.4
Cl 2844 279 210 25 13
K 3615 386 303 41 25

Photo-electric cross section

the most general expression
dσdΩ=32e24πc|k|mccω(zao)5(ˆϵk)2[z2a20+q2]4

where

k=ph = scattered electron wave number [1m ]
ω=c|k| = incident photon wave frequency
ao=2(mc)2
ˆϵ = incident photon polarization
q=kk = momentum given to the atom divided by Plank's constant (h)

if the electron's K.E. after emission is larger than its binding energy

then

k(2mω)1/2
a0=r0α2
ˆϵk=ksin(θ)cos(ϕ)

dσdΩ=α4r20Z5(mc2ω)7/242sin2(θ)cos2(ϕ)[1vccos(θ)]4

For K shell emmission

σ=428πr2o3α4Z5(mc2ω)7/2

at higher energies (ωmc2) (the ultra-relativistic limit

σ=328πr2o3α4Z5(mc2ω)

References

http://physics.nist.gov/PhysRefData/Xcom/html/xcom1.html

http://www-amdis.iaea.org/LANL/

http://www.nist.gov/pml/data/ionization/index.cfm

Mass Attenuation Coefficient

The mass attenuation coefficient (μρ) is used to describe the attenutation of a photon interacting with matter via the photo-electric effect ( absorption), coherent scattering (Rayleigh), incoherent scattering (Compton), or pair production.

μ = linear photo-electric attenutaion
ρ = density of the material
μρ=σPEamu


Eample
Below is an example of the mass atenuation coefficeint as a function of the incident photon energy

SPIM MassAttenCoef H2O.jpg

a 10 keV photon (0.01 MeV) will have μρ=1cm2g when traveling through water (ρ=1gcm3)

μ=1cm2gρ=11cm = attenuation coefficient
I=I0eμx = intensity of light
if I=I02
x=λ1/2 = half length = 1μln(12) = 0.69 cm

This means that 1/2 of the photons impinging on water get absorbed by the water atoms after a depth of 0.69 cm.

Scaling
Sometimes when μρ is not available for your material you can scale a μρ of a material with similar atomic number using the equation
(μρ)unknown=(μρ)known[ZnAρ]

where the coefficientn varies with the photon energy from 4 5 according to:

SPIM ScalingMassAttCoeff.jpg

GEANT4

GEANT4 uses a parameterization of photon absorption cross sections to determine the mean free path, atomic shell data to determine the ejected electron energy, and the k-shell angular distribution to determine the direction of the ejected electron.

The fit to the photoabsorption cross sections

The photoabsorption cross section is parametrized according to
σ(Z,Eγ)=a(Z,Eγ)Eγ+b(Z,Eγ)E2γ+c(Z,Eγ)E3γ+d(Z,Eγ)E4γ

where

a(Z,Eγ),b(Z,Eγ),c(Z,Eγ),d(Z,Eγ) are determined by a least squares fit to the data as outlined in

F. Biggs & R. Lighthill, Sandia Lab Preprint, SAND 87-0070 (1990)

File:Biggs Lighthill SandiaPreprint 87-0070.pdf

You select Eγ by sampling from a distribution generated by the above cross section.

The mean free path (λ) of the photon through the material is given by

λ(Eγ)=1iNiσ(Zi,Eγ)

where

Ni=number of Atoms ofithelement Ziin the materialVolume

K.E. of ejected electron

Given that a photo-electric event happens then the energy of the ejected electron is given by

Tp.e.=EγBshell(Zi)

where

Eγ = energy of the incident photon
Bshell(Zi) = electron shell energy from the closest available atomic shell as tabulated in data/G4EMLOW/fluor/binding.dat

The shell is selected according to the shell cross sections


Electron direction

The ejected electron is chosen by an angle according to the Souter-Gavrila distribution (Gavrila_M._Phys.Rev._vol113_1959_pg514) in the "standard" package such that

cos(θ)=rnd+βrnd×β+1

where rnd is a random number chosen such that

1cos2(θ)(1βcos(θ))2×[1+b(1cos(θ)]<rnd×{γ2(1+b(1β))γ<2γ2(1+b(1+β))otherwise
b=γ(γ1)(γ2)2
γ=1+K.E.emec2
Physics Models
G4PhotoElectricEffect

This model will generate an ionized electron which is about the same as the incident photon energy. Don't use this one if your simulation is sensitive to atomic energy levels (ie; looking at keV energy effects). This should be O.K. if you are just interested in attenuating photons.

G4LowEnergyPhotoElectric

This process will generate ionized electrons for each possible electron binding energy which is less than the incident photon energy. It should be cross section weighted.

This model seems to break when Eγ 100 keV (GEANT4 version 4.8)

PAI Model

PhotoAbsorption Ionizaton (PAI) Model

The PAI model uses a least squares fit of a 4th order polynomial in 1ω to the experimental photoabsorption data for the cross section such than

σ(ω)=4iak(E)ωk

where

ak(E) = fit coefficent for energy bin E
ω = energy transfered in the ionization collision

Compton Scattering

Compton scattering is like the photo-electric effect except the photon isn't absorbed but scattered by atomic electrons.

"Ideal" compton scattering is described in terms of free electrons.

SPIM IdealComptonScattering.jpg

The collision is elastic

λ=λ+λC(1cos(θ))=2πω=chEγ=12,400AngstromsEγ
λC = electron compton wavelength = hmec=2.43×1012m
Ek=ωλCλ1cos(θ)1+λCλ(1cos(θ)) = electron final kinetic energy
ϕ=cot[(1+λCλ)tan(θ2] = ejected electron angle w.r.t original photon direction
Note
ϕmax=π2 : No electrons can be backscattered in the compton process.
The photon can backscattered
θ=π = Max energy transfered to the e
Ek(max)=2ωλCλ+2λC = The max energy transfer point corresponds to the "compton" edge
Example
Find Ek(max) of the compton edge for a given Eγ.
Ek(max)=ωλ2λC+1=Eγλ2λC+1


λ=cν=chEγ
Ek(max)=Eγch2λCEγ+1=Eγ3×108ms4.14×1015eVs2×2.43×1012mEγ+1
4×106E2γ1+4×106Eγ
If Eγ = 8 keV
Then Ek(max)256 eV = max energy lost by photon and given to electron


SPIM EnergyDistributionComptonElectrons.jpg

Cross Section

The Klein-Nishina formula (Oskar Klein & Yoshio Nashina, Z. fur Phys., vol 52 (1929), pg 853 ) is given as

dσdΩ=r2e21+cos2(θ)+ξ2[1+cos(θ)]21+ξ(1+cos(θ))[1+ξ(1cos(θ))]2

where

ξ=hνmec2=EγEe0=Eγ0.511MeV2EγMeV
Note
The above cross section is for a free electron. Multiple by Z (the number of electrons in the target) to get the atomic cross section.

After integrating over dΩ

σcompt=2πr2e{1+ξξ2[2(1+ξ)1+2ξ1ξln(1+2ξ)]}

SPIM ComptonScatt KleinNishiwaXsect.jpg

Energy Distribution

The compton electron energy distribution can be evaluated from the differential cross section below

dσdEe=πr2emec2ξ2[2+s2ξ2(1s)2+s1s(s2ξ)]

where

s=Eehν=EeEγ
ξ2Eγ
r2e=0.794 barns
mec2=0.511 MeV

GEANT 4

GEANT 4 parametrized the Compton cross section to reproduce the data down to 10 keV using the expression

σ(Z,Eγ)=[P1(Z)log(1+2ξ)ξ+P2(Z)+P3(Z)ξ+P4(Z)ξ21+aξ+bξ2+cξ3]


Pi(Z)=diZ+eiZ2+fiZ3
1Z100
a,b,c,di,ei,fi are determined from fit

The data used in the fit may be found in

Hubbell, Grimm, & Overbo, J. Phys. Chem. Ref. Data 9, (1980) pg 1023
H. Storm, Nucl. Data Tables, A7 (1970) pg 565

In addition to the default and low energy models which come with GEANT4 (as was available with the Photo Electric effect), there is also a model called "G4LECS" which may be installed.

Models
a.) G4ComptonScattering: listed as "compt" in the process name. No Rayleigh scattering in the model.
b.) G4LowEnergyCompton: Process name is "LowEnCompton" in the tracking code. It has errors in the treatment of Rayleigh scattering and does not account for doppler broadening (the effect of bound electron momentum on the scattered particle energies).
c.) G4LECS: Bound electron effects are corrected for on an :shell-by-shell" basis. Rayleigh scattering is modeled using the coherent scattering cross section and form factor data. The Doppler broadening effect is included ( a result of the compton telescope simulation work).
Note
Thomson & Rayleigh scattering are classical processes related to Compton scattering. Klein-Nishina formula reduces to the Thomson cross section at low energies such that σThompson=8π3r2e. Thomson scattering produces polarized light because at these low non-relativistic energies the particle that absorbs the photon emits it in a direction perpendicular to its motion, that motion is the results of sees the oscillating E & M wave from the incident photon. Rayleigh scattering (why our sky is blue) is photon scattering from an atom as a whole, coherent scattering. No energy is transfered to the Medium in either case, γ only changes direction. Rayleigh scattering is the elastic scattering of the photon from a particle that is smaller than the wavelength of the light. Mei theory is used to describe elastic scattering from particles that are larger than the wavelength of the incident photon.

Pair Production

Pair production is similar to the Bremsstrahlung process.


Remember, in Bremsstrahlung the incident charged particle interacts with the E of the Nucleus (or shell electron)


SPIM BremProcessDiagram.jpg


In pair production a photon interacts with the E of the Nucleus.

SPIM PairProductionProcessDiagram.jpg

when the recoil of the atom is taken into account

Ethreshold=2me(1+meMA) = Threshold energy for pair production from an atom of mass MA
Note
You can also have photon-electron pair production analogous to electron-electron bremsstrahlung production.


Pair Production Cross Section

The pair production cross section is given by Equation 6.35 in (Bethe, Phys. Rev., vol. 93 (1964) pg 768)

at small angles

A version which assumes small angles is given in Eq 7.35 of the same reference as the triple differential cross section:

dσdϵ1dθ1dθ2=8(πasinh(πa))2a22πe2c(mec)2ϵ1ϵ2k3θ1θ2
×{V2(x)q4[k2(u2+v2)ξη2ϵ1ϵ2(u2ξ2+v2η2)+2(ϵ21+ϵ22)uvξηcos(ϕ)]
+a2W2(x)ξ2η2[k2(1(u2+v2)ξη2ϵ1ϵ2(u2ξ2+v2η2)2(ϵ21+ϵ22)uvξηcos(ϕ)]}

where

k= photon momentum/energy
θ1 = scattering angle of e+
θ2 = scattering angle of e
ϕ=ϕ1ϕ2=ϕ angle between the e+ and e pair
ϵ1=p21+m2e = Energy of the positron
ϵ2=p22+m2e = Energy of the electron
u=ϵ1θ1
v=ϵ2θ2
ξ=11+u2
η=11+v2
q2=u2+v2+2uvcos(ϕ)
x=1q2ξη
V(x)=1+a2(1!)2+a2(1+a2)x2(2!)2+a2(1+a2)(22+a2)x4x2(3!)2+
W(x)=1a2dV(x)dx
a=Ze2c
Note
The above equations for the differential cross section are using "natural" units where c1


Davies' version integrates over all angles

Davies published a version which has been integrated over angles and includes some screening effects ( see Eq 35):

dσdϵ1=2a2e2c(mec)2ϵ21+ϵ22++23ϵ1ϵ2k2[2log(2ϵ1ϵ2k2)12f(Z)]
=4Z2αr22ϵ21+ϵ22++23ϵ1+ϵ2(hν)3[2log(2ϵ1ϵ2hνmec2)12f(Z)]

where

f(Z)=a211ν(Z2+a2)11+a2+0.202060.0369a2+0.0083a40.002a6

If you integrate over all positron (ϵ1 ) energies you get Eq. 44 (no screening)

σe+e=4Z2αr2e[79(ln(2hνmec2)f(Z))763378]

and Eq. 45 (complete screening)

σe+e=4Z2αr2e[79(ln(183Z13)f(Z))7378]

Davies expressions were shown to work well at high energies (Eγ>88 MeV)

Overbo's low energy Cross sections

At low energies ( Eγ<5 MeV), Overbo published an exact calculation in the case that the Atomic field is unscreened. Overbo then provided a fit to the results of his calculation which he claims is valid to within 0.1% for the energy range (3MeV<Eγ<5MeV). The fit is given in Eq. 7.1 of his paper as

σe+e=σB(1+a+bk2)

where


a=0.44(αZ)20.07(αZ)4
b=5.06(αZ)22.1(αZ)4
σB=αZ2r2e2π3(k2k)3[1+ϵ2+23ϵ240+11ϵ360+29ϵ4960]= Low Energy unscreened Born approximation total cross section for pair production
k=hνmec2=Eγ0.511MeV = incident photon energy in units of the electron rest mass energy
ϵ2k42+k+22k
Intermediate Energy Cross sections

For 5MeV<Eγ<80MeV the Gradstein semi-ephirical formula is used from G. White Gradstein, Natl. Bur. Standard., Circ 583 (1957) pg 1.

σ=σBHΔe+b2kln(k0.57)

where

Δe = empirical constant = 4.02 barns for Pb
b2 = empirical constant = 16.8 barns for Pb
σBH = Simulations_of_Particle_Interactions_with_Matter#Bremsstrahlung Bethe-Heitler cross section
Triplet production
Triplet Production
identifies photon-electron pair production. The recoiling electron track adds to the two e+e tracks making three total particle tracks (kind of like pair production ionization).

A description for how to calculate the cross section for this process is illustrated for 10<Eγ<20MeV in L.E. Wright, Phys. Rev. C 36 (1987) pg 582. Unfortunately, analytic expression is not given but one could construct tables of Tq(92) and Tq(1) in equation 65 of L.E. Wright's paper.

An example for Eγ=6MeV may be found in Sud & Vargus, Phys. Rev. A49 (1994) pg 4624.

GEANT4 Pair production

GEANT4 uses the pair production cross section given in Tsai, Rev. Mod. Phys, vol 46 (1974) pg 815.

dσdϵ=Z(Z+η)αr2e{[ϵ2+(1ϵ)2(ϕ14f(Z))]+23ϵ(1ϵ)(ϕ24f(Z))}

where

Eγ= energy of incident photon
Ee= KE of create electron
ϵ=Ee+mec2Eγ= fraction of Eγ taken away by e
η= triplet production correction
f(Z)= high energy coulomb correction from Davies above
ϕ1 & ϕ2 = electron screening functions

The formula GEANT4 uses may also be found on pg 541 in J. Bono , Radiation Physics Chemistry, vol 44 (1994) pg 531

dσdϵ=23Z(Z+η)αr2eCr[2(12ϵ)2ϕ1(ϵ)+ϕ2(ϵ)]

where

ϕ1(ϵ)=g1(b)+g0(κ)
ϕ2(ϵ)=g2(b)+g0(κ)
g1(b)=232ln(1+b2)6btan1(1bb2[44btan1(1b3ln(1+1b2]
g2(b)=1162ln(1+b2)3btan1(1bb22[44btan1(1b3ln(1+1b2]
g0(κ)=4ln(Rmec)+4f(Z)+F0(κ,Z)
F0(κ,Z)=[0.177412.10αZ+11.18(αZ)2]2κ+[8.523+73.26αZ44.41(αZ)2]2κ
[13.52+121.1αZ96.41(αZ)2](2κ)2/3+[8.946+62.05αZ63.41(αZ)2](2κ)2= low energy coulomb correction
R = screening radius (adjustable parameter)
mec=3.8616×1013m = Compton wavelength
b=Rmec12κ1ϵ(1ϵ)
κ=Eγmec2

An older simulation description with graphs of the cross-sections may be found below.

File:Bigg Lighthill conversion 1Mev-100MeV SandiaPreprint SC-RR-68-619.pdf


Below is the review of Modern Physics article basically summarizing all of the physics for pair production up to 1969

File:RevModPhys PairPoduction 1969 MotzOlsonKoch.pdf

Contributions as function of Z

The plot below shows the contributions of the three photon absorption physics processes as a function of the incident photon energy and the Z of the target material. At low energy (keV), the photo-electric effect dominant while at high energies (> 1 MeV) pair production starts to dominate. Compton scattering dominates in the intermediate energy region.

SPIM PhotoAbsorptionPhysicsProcess-vs-Z.jpg

Hadronic Interactions

Proton Bremsstrahlung

σclass|90o=2.1×1031cm2/sterad = cross section for dipole radiation emitted at 90 degrees with respect to incident beam of particles scattered in a Coulomb field.

File:ProtonBrem Drell Huang PhysRev v99 n3 1955 pg686.pdf


Pluto event generator

A ROOT based Hadronic Simulation package based on Pluto

I installed Pluto V 5.14.1 on inca

I needed to set the environmental variables under tcsh

setenv ROOTSYS ~/src/ROOT/root
setenv PATH ${PATH}:${ROOTSYS}/bin
setenv LD_LIBRARY_PATH $ROOTSYS/lib


There is a subdirectory called "macros"

cd macros

Go to that subdirectory and type root, this will run the contents of the file "rootlogin.C"

cd macros
inca:~/src/Pluto/pluto_v5.14.1/macros> root
 *******************************************
 *                                         *
 *        W E L C O M E  to  R O O T       *
 *                                         *
 *   Version   5.17/03    30 August 2007   *
 *                                         *
 *  You are welcome to visit our Web site  *
 *          http://root.cern.ch            *
 *                                         *
 *******************************************
Compiled on 5 September 2007 for linux with thread support.
CINT/ROOT C/C++ Interpreter version 5.16.24, July 26, 2007
Type ? for help. Commands must be C++ statements.
Enclose multiple statements between { }.
 *********************************************************
 * The Pluto event generator                              
 * (C) HADES collaboration and all contributing AUTHORS   
 * www-hades.gsi.de/computing/pluto/html/PlutoIndex.html  
 * Version: 5.14.1
 * Compiled on 10 December 2008
 *********************************************************
Shared library Pluto.so loaded

to run a pp elastic model type

root [0] .x pp_elastic.C 

a root ntuple is generate called "pp_elastic.root"

you can then analyze the data in the root file with

data->MakeClass();

the above command within root generates an analysis skeleton program.

using t.Show you can see the structure of the events within the ntuple. A few functions are also stored in the root tree which you can use. You can use the root file event to create an input file which GEANT4 can then use as its event generator. GEANT4 then reads the events in and propagates them through your geometry.

Neutron Interactions

Name Energy
Cold Neutron micro eV
Thermal 140 eV
epithermal 140eV100keV
fast 100keV100MeV
high energy >100MeV


Note: Interaction length for neutrons is ~1013 .
Neutrons are even better than photons for penetrating matter.

Elastic scattering

File:Elastic scattering from Nuclei.jpg

vCM=mnvL+M(0)mn+M=v01+Mmn=v01+A= velocity of CM frame

{v_L}^' = Magnitude of Neutron velocity in CM frame before and after collision
=vcvCM=v0v01+A=(1+A)11+Av0=A1+Av0

v= Magnitude of Nucleus velocity in CM frame before and after collision
=vCM=v01+A


Note: In elastic collision only the particles direction changes.

\vec{v}_L = {\vec{v}_L}^' + \vec{v}_{CM}

File:Rule of cosines.jpg

c2=a2+b22abcosθ

(v_L)^2 = ({v_L}^')^2 + (v_{CM})^2 - 2 v_{CM} {v_L}^' cos(\pi - {\theta}_{CM})=

= ({v_L}^')^2 + (V)^2 - 2 V {v_L}^' cos(\pi - {\theta}_{CM})=

where

({v_L}^')^2 = (\frac{A}{1+A})^2 {v_0}^2
(V)2=(11+A)2v02

After substitution we get following:

(vLv0)2=A2+12Acos(πθCM)(1+A)2=A2+1+2Acos(θCM)(1+A)2

cos(A+/B)=cosAcosB/+sinAsinB

EE0=A2+1+2Acos(θCM)(1+A)2

when θCM=0, Emax=E0.


Emin=(A1)2(A+1)2E0=(A1A+1)E0= Minimum energy of scattered Neutron in LAB frame.

File:Rule of cosines 1.jpg

({v_L}^')^2 = (v_L)^2 + (v_{CM})^2 - 2 v_{CM} v_L cos(\pi - {\theta}_{CM})=

=(vL)2+(V)22VvLcos(θL)=

(Av01+A)2=vL2+(v01+A)22vL(v01+A)cos(θL)

After substituting vL

cosθL=[A2+1+2AcosθCM(1+A)2+(11+A)2(A1+A)2]×(1+A)22A2+1+2AcosθCM=

=[A2+1+2AcosθCM+1A2]2A2+1+2AcosθCM=1+AcosθCMA2+1+2AcosθCM

Note: EACM=12MAV2=12Amn(v01+A)2=A(1+A)2mnv022=

=A(1+A)2E0= Energy of recoil Nuclei in CM frame.

Conservation of Energy: E0=E+EA

EA=E0E=E0A2+1+2AcosθCM(1+A)2E0=
(1+A)2(A2+1+2AcosθCM)(1+A)2E0=

Inelastic Scattering

Homework Problems

HomeWork_Simulations_of_Particle_Interactions_with_Matter

Changing the Random number seed in GEANT4

You can set the random number seed by adding the relevant calls in the vis.mac file

typing the command below turns on the ability to save the random number seed

/random/setSavingFlag 1

then create a file to save the random seed to

/random/saveThisRun

is will create the files

currentEvent.rndm currentRun.rndm


then use the command

/random/resetEngineFrom currentRun.rndm

to restart the run using the random number seed stored in the file "currentRun.rndm"

The easiest way to use this is to create several of these random number seed files by running geant for X events and saving the seed to a different filename each time.

Resources

GEANT4 Home Page

ROOT Home page

Fermi Lab Example


NIST Range Tables

X-ray specturm


Installing_GEANT4.9.3_Fsim


Running on Inca

To use my version of software for this class try

ROOT
setenv ROOTSYS /home/tforest/src/ROOT/root
$ROOTSYS/bin/root
GEANT4
source /home/tforest/src/GEANT4/geant/env.csh

Assessment

learning outcomes

  1. Student will learn how to compile and run the GEANT4 software.
  2. Students will learn how the alter target materials and incident projectile kinematics
  3. Student will learn how to extract trajectory information for analysis

assess if outcomes are meet

A series of simulation projects will be completed during the course to assess the students ability to meet outcome goals

Shortfall Identification

If outcomes are not met the shortfall will be identified by comparing available learning materials to students goal achievement level.

Remediation

Projects will be adjusted to overcome identified shortfall.


GEANT4.9.5

resources

http://geant4.web.cern.ch/geant4/UserDocumentation/UsersGuides/InstallationGuide/html/

http://geant4.web.cern.ch/geant4/UserDocumentation/UsersGuides/ForApplicationDeveloper/html/ch02s07.html

Commands used

Download the source code to a subdirectory.

I stored it in /Users/tforest/src/GEANT4/geant4.9.5/geant4.9.5.p01

Then I created a build subdirectory

mkdir /Users/tforest/src/GEANT4/geant4.9.5/geant4.9.5-build

From inside the build directory I execute the cmake command using a switch to download the data files and install visulatization

cmake -DCMAKE_INSTALL_PREFIX=/Users/tforest/src/GEANT4/geant4.9.5/geant4.9.5-install -DGEANT4_USE_OPENGL_X11=ON GEANT4_INSTALL_DATA=ON /Users/tforest/src/GEANT4/geant4.9.5/geant4.9.5.p01

cmake -DCMAKE_INSTALL_PREFIX=/Users/tforest/src/GEANT4/geant4.9.5/geant4.9.5-install -DGEANT4_USE_XM=ON GEANT4_INSTALL_DATA=ON /Users/tforest/src/GEASNT4/geant4.9.5/geant4.9.5.p01


Then I install if teh make was succcessfull

make install

Build example N02

To build an example you need to create a build subdirectory under the subdirectory of teh example source code.


 cmake -DGeant4_DIR=/Users/tforest/src/GEANT4/geant4.9.5/geant4.9.5-install ../

make


GUIXM was build and causes crash on MACOS

Building GEANT4

4.9.5

mkdir geant4.9.5

cd geant4.9.5

mv ../geant4.9.5.p01.tar ./

tar -xvf geant4.9.5.p01.tar

ls

geant4.9.5.p01 geant4.9.5.p01.tar

mkdir geant4.9.5-build

cd geant4.9.5-build

You need data file for the physics interaction processes

If the server is up you can tell CMake to download them for you

cmake -DCMAKE_INSTALL_PREFIX=~/src/GEANT4/geant4.9.5/geant4.9.5-install -DGEANT4_INSTALL_DATA=ON -DGEANT4_USE_OPENGL_X11=ON ~/src/GEANT4/geant4.9.5/geant4.9.5.p01

(the data files will be installed at geant4.9.5-install/share/Geant4-9.5.1/data)

If the server is down then you need to download, install and set environmental variables by hand

cmake -DCMAKE_INSTALL_PREFIX=~/src/GEANT4/geant4.9.5/geant4.9.5-install -DGEANT4_INSTALL_DATA=OFF -DGEANT4_USE_OPENGL_X11=ON ~/src/GEANT4/geant4.9.5/geant4.9.5.p01


make -j2 VERBOSE=1

make install

the above creates the subdirectory ~/src/GEANT4/geant4.9.5/geant4.9.5.p01/geant4.9.5-install


examples

You can test your installation by compiling and running the example programs

first try to compile example/novice/N01 located in the directory where you untarred everything (geant4.9.5.p01)

source geant4.9.5-install/bin/geant4.csh

cd geant4.9.5.p01/examples/novice/N01

cmake .

make -f Makefile

./exampleN01

exampleN02 will allow you to test that you have installed the visual drivers needed to draw paraticle trajectories

creating a copy of an example

cp -r geant4.9.5.p01/examples/novice/N02 ./


problems

1.) bus error on Mac if using -DGEANT4_USE_OPENGL_X11=ON

try using XM instead

cmake -DCMAKE_INSTALL_PREFIX=~/src/GEANT4/geant4.9.5/geant4.9.5-install -DGEANT4_INSTALL_DATA=ON -DGEANT4_USE_XM=ON ~/src/GEANT4/geant4.9.5/geant4.9.5.p01

opens up the GUI but also has a Bus error.