EM Physics I. Geant4 Tutorial, Marshall Space Flight Center April 2012

Size: px
Start display at page:

Download "EM Physics I. Geant4 Tutorial, Marshall Space Flight Center April 2012"

Transcription

1 EM Physics I Geant4 Tutorial, Marshall Space Flight Center April 2012 Daniel Brandt (based on slides by T. Koi and D. Wright) based on Geant4 v9.5-p01

2 Outline EM physics assumptions and processes Physics list and EM process ordering Energy loss processes Process implementation Multiple scattering Ionization Production thresholds Summary 2

3 Basic Assumptions Projectile energy 1 kev Atomic electrons are quasi-free, their binding energy is negligible (excpet in the photoelectric effect) The atomic nucleus is fixed, its recoil momentum is negligible Matter is homogenous, isotropic and amorphous 3

4 List of processes - I 1. Common to all charged particles Ionization (> ~kev) Coulomb scattering from nuclei (> ~kev) Cherenkov emission Scintillation Transition radiation 2. Muons (e+, e-) pair production (>100 GeV) Bremsstrahlung (>100 GeV) Nuclear interaction (> 1 TeV) 4

5 List of processes - II 3. Electrons and Positrons Bremsstrahlung (> 10 MeV) e+ annihilation 4. Photons Gamma conversion (> 10 MeV) Coherent (< 100 kev) Incoherent scattering (100 kev 10 MeV) Photoelectric effect (< 100 kev) 5. Optical Photons Reflection and refraction Absorbtion Rayleigh scattering 5

6 The EM Physics List Each type of particle has its own list of processes There are three ordered lists per particle: AtRest action AlongStep action PostStep action These lists of processes are registered in an implementation of the G4VUserPhysicsList class Unless explicitly specified, processes occur in the order in which they were registered 6

7 The EM Physics List - II When building EM Physics lists from scratch, many processes have to be considered Different EM physics lists are provided by Geant4 MyPhysicsList::MyPhysicsList():G4VModularPhysicsList() {... G4int ver = 1; SetVerboseLevel(ver); RegisterPhysics( new G4EmStandardPhysics(ver) );... } The pre-made physics list builders can be found at $G4INSTALL/source/physics_list/builders 7

8 Energy loss processes - I Charged particle range inside material: Unfortunately dε/dx is a strong function of ε. In the case of muons, the following processes contribute to continuous energy loss: Ionisation Pair production Bremsstrahlung Nuclear scattering 8

9 Energy loss processes - II The maximum step length is limited and following each step the particle energy is reduced by the energy loss processes Since dε/dx varies strongly with ε, can t use Instead, use tabulated values 9

10 Energy loss processes - III Need to implement all relevant loss processes to get correct range For muons: Ionisation e+/e- pair production Bremsstrahlung Nuclear scattering These processes must occur in the correct order! 10

11 Building EM Physics Lists It is possible to specify process priority. The priority determines the order in which DoIt methods are called. OrdAtRestDoIt OrdPostStepDoIt if(particlename== e+ ){ pmanager->addprocess(new G4MultipleScattering,-1, 1,1); pmanager->addprocess(new G4eIonisation, -1, 2,2); pmanager->addprocess(new G4eBremsstrahlung, -1,-1,3); pmanager->addprocess(new G4eplusAnnihilation, 0,-1,4); } Each DoIt (AtRest, AlongStep, PostStep) has its own priority A priority of -1 indicates DoIt = inactive. OrdAlongStepDoIt 11

12 Building EM Physics Lists - II If priority is not specified explicitly, processes will occur in the order in which they are added to the physics list: if(particlename== gamma ){ pmanager->adddiscreteprocess(new G4PhotoElectricEffect); pmanager->adddiscreteprocess(new G4ComptonScattering); pmanager->adddiscreteprocess(new G4gammaConversion); } In newer versions of Geant4, process ordering is handled by the physics list helper. 12

13 Multiple Scattering Charged particle scattering by the potentials of nuclei Coulomb Scattering or Rutherford Scattering. Geant4 estimates cumulative effect of many scatters. 13

14 Multiple Scattering Figure shows histogram of angular distribution of electrons passing through foil Geant4 simulation (line) is in good agreement with real data (circles, squares) 14

15 Ionization Process An energetic charged particle can transfer energy to the atomic electron system and liberate an electron µ + atom µ + atom + + e - The energy transfer from a single ionization event is small. The majority of ionization events are just dealt with as average energy loss de/dx (slides 7 9). Occasionally enough energy is transferred to warrant tracking the ejected electron explicitly 15

16 Production thresholds - I Below the threshold energy T cut energy loss is continuous where E=energy of impactor, T=energy of ejected electron Cross section for δ-ray production above T cut : 16

17 Production thresholds - II Production thresholds are set in terms of the minimum range below which a particle will not be tracked Thresholds are set in the physics list SetCuts() method MyPhysicsList::SetCuts(){ SetCutValue(1.0*mm, gamma ); SetCutValue(0.8*mm, e- ); SetCutValue(0.8*mm, e+ ); } If no threshold cut is set, the default cut is 1 mm. 17

18 Processes with different models For some processes different models are available If a model different from the default is required, this can be set in the physics list implementation if (particlename== gamma ){ } G4PhotoElectricEffect* pef = new G4PhotoElectricEffect(); G4PenelopePhotoElectricModel* amodel; amodel = new G4PenelopePhotoElectricModel(); amodel->sethighenergylimit(limit); pef->addemmodel(0, amodel); pmanager->adddiscreteprocess(pef); 18

19 Validating EM Physics 19

20 The EM Physics calculator Geant4 calculates many physically relevant quantities like scattering cross sections Those quantities can be retrieved using the EMCalculator class #include G4EmCalculator.hh... G4EmCalculator emcalc; G4double density = material->getdensity(); G4double masssigma = emcalc.computecrosssectionpervolume (energy, particle, procname, material)/density; G4cout<< G4BestUnit(massSigma, Surface/mass ) << G4endl; 20

21 Summary A wide variety of physics processes is provided and can be registered using pre-made physics list builders Production thresholds prevent infrared divergences. They are set using the G4VUserPhysicsList::SetCuts() method Geant4 EM physics is well validated. Online validation plots are available at www-zeuthen.desy.de/geant4/web/ Physics quantities can be extracted using the G4EmCalculator class 21

Electromagnetic Physics in Geant4

Electromagnetic Physics in Geant4 Electromagnetic Physics in Geant4 Luciano Pandola INFN-LNGS Partially based on presentations by A. Lechner, M.G. Pia, V. Ivanchenko, S. Incerti, M. Maire and A. Howard Part I: EM physics models available

More information

ELECTROMAGNETIC PHYSICS. Slides by Sebastien Incerti (CNRS) & Vladimir Ivantchenko (CERN)

ELECTROMAGNETIC PHYSICS. Slides by Sebastien Incerti (CNRS) & Vladimir Ivantchenko (CERN) 1 ELECTROMAGNETIC PHYSICS Slides by Sebastien Incerti (CNRS) & Vladimir Ivantchenko (CERN) 2 ELECTROMAGNETIC (EM) PHYSICS OVERVIEW Geant4 Electromagnetic Physics 3 Released with the 1st version of Geant4

More information

Physics II Overview and Processes

Physics II Overview and Processes Physics II Overview and Processes Geant4 Tutorial, Marshall Space Flight Center April 2012 Daniel Brandt (based on slides by T. Koi) based on Geant4 v9.5-p01 Outline Physics Overview oelectromagnetic processes

More information

Training course at International User Conference on Medicine and Biology applications Bordeaux, 8-11 October 2013 V. Ivanchenko

Training course at International User Conference on Medicine and Biology applications Bordeaux, 8-11 October 2013 V. Ivanchenko Training course at International User Conference on Medicine and Biology applications Bordeaux, 8-11 October 2013 V. Ivanchenko General interface to Geant4 physics Adaptation of Marc Verderi original lecture

More information

Particles, processes and production cuts

Particles, processes and production cuts Corso nazionale sull utilizzo del toolkit di simulazione Geant4 Laboratori Nazionali del Gran Sasso 10 Novembre 2010 Particles, processes and production cuts Outline Introduction A mention to physics list

More information

Physics processes in general

Physics processes in general Physics processes in general CERN Geant4 User s Workshop November 11 th 15 th 2002 John Apostolakis Derived from a talk by Marc Verderi Ecole Polytechnique - LLR Introduction Present the ingredients needed

More information

GEANT4 LOW ENERGY ELECTROMAGNETIC PHYSICS

GEANT4 LOW ENERGY ELECTROMAGNETIC PHYSICS http://geant4.org 1 GEANT4 LOW ENERGY ELECTROMAGNETIC PHYSICS On behalf of the Geant4 Standard and Low Energy EM Physics working groups Sébastien Incerti (CNRS) & Vladimir Ivantchenko (CERN) Geant4 EM

More information

Physics of Radiotherapy. Lecture II: Interaction of Ionizing Radiation With Matter

Physics of Radiotherapy. Lecture II: Interaction of Ionizing Radiation With Matter Physics of Radiotherapy Lecture II: Interaction of Ionizing Radiation With Matter Charge Particle Interaction Energetic charged particles interact with matter by electrical forces and lose kinetic energy

More information

Particle Interactions in Detectors

Particle Interactions in Detectors Particle Interactions in Detectors Dr Peter R Hobson C.Phys M.Inst.P. Department of Electronic and Computer Engineering Brunel University, Uxbridge Peter.Hobson@brunel.ac.uk http://www.brunel.ac.uk/~eestprh/

More information

Monte Carlo Tutorial. Part 2 Practical MC

Monte Carlo Tutorial. Part 2 Practical MC Monte Carlo Tutorial Part 2 Practical MC IFJ-PAN, Cracow, May 2014 Niels Bassler Dept. Physics and Astronomy Aarhus University, Denmark General recipe to setup a MC run How to setup a MC run First: think

More information

Outline. Chapter 6 The Basic Interactions between Photons and Charged Particles with Matter. Photon interactions. Photoelectric effect

Outline. Chapter 6 The Basic Interactions between Photons and Charged Particles with Matter. Photon interactions. Photoelectric effect Chapter 6 The Basic Interactions between Photons and Charged Particles with Matter Radiation Dosimetry I Text: H.E Johns and J.R. Cunningham, The physics of radiology, 4 th ed. http://www.utoledo.edu/med/depts/radther

More information

Interaction of particles with matter - 2. Silvia Masciocchi, GSI and University of Heidelberg SS2017, Heidelberg May 3, 2017

Interaction of particles with matter - 2. Silvia Masciocchi, GSI and University of Heidelberg SS2017, Heidelberg May 3, 2017 Interaction of particles with matter - 2 Silvia Masciocchi, GSI and University of Heidelberg SS2017, Heidelberg May 3, 2017 Energy loss by ionization (by heavy particles) Interaction of electrons with

More information

Geant4 based Monte Carlo simulations for proton beam radiation therapy

Geant4 based Monte Carlo simulations for proton beam radiation therapy Geant4 based Monte Carlo simulations for proton beam radiation therapy an experimentalist s view of Geant4 Adam Hecht, nuclear engineering hecht@unm.edu definition of the problem x-ray beam treatment shoot

More information

Interaction of Electron and Photons with Matter

Interaction of Electron and Photons with Matter Interaction of Electron and Photons with Matter In addition to the references listed in the first lecture (of this part of the course) see also Calorimetry in High Energy Physics by Richard Wigmans. (Oxford

More information

EEE4101F / EEE4103F Radiation Interactions & Detection

EEE4101F / EEE4103F Radiation Interactions & Detection EEE4101F / EEE4103F Radiation Interactions & Detection 1. Interaction of Radiation with Matter Dr. Steve Peterson 5.14 RW James Department of Physics University of Cape Town steve.peterson@uct.ac.za March

More information

Introduction to Geant4 Physics Overview

Introduction to Geant4 Physics Overview Introduction to Geant4 Physics Overview Koi, Tatsumi SLAC SCCS Based on Presentations at SLAC Geant4 Tutorial 2007 Outline Geant4 Physics Overview Process Physics List Standard EM Low Energy EM Hadron

More information

The interaction of radiation with matter

The interaction of radiation with matter Basic Detection Techniques 2009-2010 http://www.astro.rug.nl/~peletier/detectiontechniques.html Detection of energetic particles and gamma rays The interaction of radiation with matter Peter Dendooven

More information

Nuclear Physics and Astrophysics

Nuclear Physics and Astrophysics Nuclear Physics and Astrophysics PHY-30 Dr. E. Rizvi Lecture 4 - Detectors Binding Energy Nuclear mass MN less than sum of nucleon masses Shows nucleus is a bound (lower energy) state for this configuration

More information

Tracking. Witold Pokorski, Alberto Ribon CERN PH/SFT

Tracking. Witold Pokorski, Alberto Ribon CERN PH/SFT Tracking Witold Pokorski, Alberto Ribon CERN PH/SFT ESIPAP, Archamps, 8-9 February 2016 Geant4 User Guides geant4.web.cern.ch/geant4/support/userdocuments.shtm User's Guide: For Application Developers

More information

Monte Carlo radiation transport codes

Monte Carlo radiation transport codes Monte Carlo radiation transport codes How do they work? Michel Maire (Lapp/Annecy) 16/09/2011 introduction to Monte Carlo radiation transport codes 1 Outline From simplest case to complete process : Decay

More information

Electromagnetic and hadronic showers development. G. Gaudio, M. Livan The Art of Calorimetry Lecture II

Electromagnetic and hadronic showers development. G. Gaudio, M. Livan The Art of Calorimetry Lecture II Electromagnetic and hadronic showers development 1 G. Gaudio, M. Livan The Art of Calorimetry Lecture II Summary (Z dependence) Z Z 4 5 Z(Z + 1) Z Z(Z + 1) 2 A simple shower 3 Electromagnetic Showers Differences

More information

Last Lecture 1) Silicon tracking detectors 2) Reconstructing track momenta

Last Lecture 1) Silicon tracking detectors 2) Reconstructing track momenta Last Lecture 1) Silicon tracking detectors 2) Reconstructing track momenta Today s Lecture: 1) Electromagnetic and hadronic showers 2) Calorimeter design Absorber Incident particle Detector Reconstructing

More information

Physics 736. Experimental Methods in Nuclear-, Particle-, and Astrophysics. Lecture 3

Physics 736. Experimental Methods in Nuclear-, Particle-, and Astrophysics. Lecture 3 Physics 736 Experimental Methods in Nuclear-, Particle-, and Astrophysics Lecture 3 Karsten Heeger heeger@wisc.edu Review of Last Lecture a colleague shows you this data... what type of reaction is this?

More information

Chapter 2 Radiation-Matter Interactions

Chapter 2 Radiation-Matter Interactions Chapter 2 Radiation-Matter Interactions The behavior of radiation and matter as a function of energy governs the degradation of astrophysical information along the path and the characteristics of the detectors.

More information

III. Energy Deposition in the Detector and Spectrum Formation

III. Energy Deposition in the Detector and Spectrum Formation 1 III. Energy Deposition in the Detector and Spectrum Formation a) charged particles Bethe-Bloch formula de 4πq 4 z2 e 2m v = NZ ( ) dx m v ln ln 1 0 2 β β I 0 2 2 2 z, v: atomic number and velocity of

More information

Monte Carlo radiation transport codes

Monte Carlo radiation transport codes Monte Carlo radiation transport codes How do they work? Michel Maire (Lapp/Annecy) 23/05/2007 introduction to Monte Carlo radiation transport codes 1 Decay in flight (1) An unstable particle have a time

More information

Comparative Analysis of Nuclear Cross Sections in Monte Carlo Methods for Medical Physics Applications

Comparative Analysis of Nuclear Cross Sections in Monte Carlo Methods for Medical Physics Applications Comparative Analysis of Nuclear Cross Sections in Monte Carlo Methods for Medical Physics Applications Christopher T. Myers 1 Georgia Institute of Technology Bernadette L. Kirk 2 Luiz C. Leal 2 Oak Ridge

More information

Neutrino detection. Kate Scholberg, Duke University International Neutrino Summer School Sao Paulo, Brazil, August 2015

Neutrino detection. Kate Scholberg, Duke University International Neutrino Summer School Sao Paulo, Brazil, August 2015 Neutrino detection Kate Scholberg, Duke University International Neutrino Summer School Sao Paulo, Brazil, August 2015 Sources of wild neutrinos The Big Bang The Atmosphere (cosmic rays) Super novae AGN's,

More information

Particle Detectors. How to See the Invisible

Particle Detectors. How to See the Invisible Particle Detectors How to See the Invisible Which Subatomic Particles are Seen? Which particles live long enough to be visible in a detector? 2 Which Subatomic Particles are Seen? Protons Which particles

More information

CHAPTER 2 RADIATION INTERACTIONS WITH MATTER HDR 112 RADIATION BIOLOGY AND RADIATION PROTECTION MR KAMARUL AMIN BIN ABDULLAH

CHAPTER 2 RADIATION INTERACTIONS WITH MATTER HDR 112 RADIATION BIOLOGY AND RADIATION PROTECTION MR KAMARUL AMIN BIN ABDULLAH HDR 112 RADIATION BIOLOGY AND RADIATION PROTECTION CHAPTER 2 RADIATION INTERACTIONS WITH MATTER PREPARED BY: MR KAMARUL AMIN BIN ABDULLAH SCHOOL OF MEDICAL IMAGING FACULTY OF HEALTH SCIENCE Interactions

More information

Particle-Matter Interactions

Particle-Matter Interactions Particle-Matter Interactions to best detect radiations and particles we must know how they behave inside the materials 8/30/2010 PHYS6314 Prof. Lou 1 Stable Particles Visible to a Detector Hadrons (Baryon/Meson)

More information

hν' Φ e - Gamma spectroscopy - Prelab questions 1. What characteristics distinguish x-rays from gamma rays? Is either more intrinsically dangerous?

hν' Φ e - Gamma spectroscopy - Prelab questions 1. What characteristics distinguish x-rays from gamma rays? Is either more intrinsically dangerous? Gamma spectroscopy - Prelab questions 1. What characteristics distinguish x-rays from gamma rays? Is either more intrinsically dangerous? 2. Briefly discuss dead time in a detector. What factors are important

More information

Physics 663. Particle Physics Phenomenology. April 23, Physics 663, lecture 4 1

Physics 663. Particle Physics Phenomenology. April 23, Physics 663, lecture 4 1 Physics 663 Particle Physics Phenomenology April 23, 2002 Physics 663, lecture 4 1 Detectors Interaction of Charged Particles and Radiation with Matter Ionization loss of charged particles Coulomb scattering

More information

CHARGED PARTICLE INTERACTIONS

CHARGED PARTICLE INTERACTIONS CHARGED PARTICLE INTERACTIONS Background Charged Particles Heavy charged particles Charged particles with Mass > m e α, proton, deuteron, heavy ion (e.g., C +, Fe + ), fission fragment, muon, etc. α is

More information

Radiation Physics PHYS /251. Prof. Gocha Khelashvili

Radiation Physics PHYS /251. Prof. Gocha Khelashvili Radiation Physics PHYS 571-051/251 Prof. Gocha Khelashvili Interaction of Radiation with Matter: Heavy Charged Particles Directly and Indirectly Ionizing Radiation Classification of Indirectly Ionizing

More information

Ionization Energy Loss of Charged Projectiles in Matter. Steve Ahlen Boston University

Ionization Energy Loss of Charged Projectiles in Matter. Steve Ahlen Boston University Ionization Energy Loss of Charged Projectiles in Matter Steve Ahlen Boston University Almost all particle detection and measurement techniques in high energy physics are based on the energy deposited by

More information

Rad T 290 Worksheet 2

Rad T 290 Worksheet 2 Class: Date: Rad T 290 Worksheet 2 1. Projectile electrons travel from a. anode to cathode. c. target to patient. b. cathode to anode. d. inner shell to outer shell. 2. At the target, the projectile electrons

More information

Geant4 v8.3. Physics III. Makoto Asai (SLAC) Geant4 Tutorial Course

Geant4 v8.3. Physics III. Makoto Asai (SLAC) Geant4 Tutorial Course Geant4 v8.3 Physics III Makoto Asai (SLAC) Geant4 Tutorial Course Outline Production Thresholds and Cuts per Region Optical processes The Decay Process pre-assigned decay products exotic particle Physics

More information

INTERACTIONS OF RADIATION WITH MATTER

INTERACTIONS OF RADIATION WITH MATTER INTERACTIONS OF RADIATION WITH MATTER Renée Dickinson, MS, DABR Medical Physicist University of Washington Medical Center Department of Radiology Diagnostic Physics Section Outline Describe the various

More information

Bethe-Block. Stopping power of positive muons in copper vs βγ = p/mc. The slight dependence on M at highest energies through T max

Bethe-Block. Stopping power of positive muons in copper vs βγ = p/mc. The slight dependence on M at highest energies through T max Bethe-Block Stopping power of positive muons in copper vs βγ = p/mc. The slight dependence on M at highest energies through T max can be used for PID but typically de/dx depend only on β (given a particle

More information

Passage of particles through matter

Passage of particles through matter Passage of particles through matter Alexander Khanov PHYS6260: Experimental Methods is HEP Oklahoma State University September 11, 2017 Delta rays During ionization, the energy is transferred to electrons

More information

Interaction of charged particles and photons with matter

Interaction of charged particles and photons with matter Interaction of charged particles and photons with matter Robert Miyaoka, Ph.D. Old Fisheries Center, Room 200 rmiyaoka@u.washington.edu Passage of radiation through matter depends on Type of radiation

More information

Basic physics Questions

Basic physics Questions Chapter1 Basic physics Questions S. Ilyas 1. Which of the following statements regarding protons are correct? a. They have a negative charge b. They are equal to the number of electrons in a non-ionized

More information

DR KAZI SAZZAD MANIR

DR KAZI SAZZAD MANIR DR KAZI SAZZAD MANIR PHOTON BEAM MATTER ENERGY TRANSFER IONISATION EXCITATION ATTENUATION removal of photons from the beam by the matter. ABSORPTION SCATTERING TRANSMISSION Taking up the energy from the

More information

Interactions with Matter Photons, Electrons and Neutrons

Interactions with Matter Photons, Electrons and Neutrons Interactions with Matter Photons, Electrons and Neutrons Ionizing Interactions Jason Matney, MS, PhD Interactions of Ionizing Radiation 1. Photon Interactions Indirectly Ionizing 2. Charge Particle Interactions

More information

Usage of GEANT 4 versions: 6, 7 & 8 in BABAR

Usage of GEANT 4 versions: 6, 7 & 8 in BABAR Usage of GEANT 4 versions: 6, 7 & 8 in BABAR Swagato Banerjee Computing in High Energy and Nuclear Physics (CHEP) 4 September 27, Victoria. SLAC-Based B-Factory: PEP II & BABAR The BABAR Detector: Simulation

More information

remsstrahlung 1 Bremsstrahlung

remsstrahlung 1 Bremsstrahlung remsstrahlung 1 Bremsstrahlung remsstrahlung 2 Bremsstrahlung A fast moving charged particle is decelerated in the Coulomb field of atoms. A fraction of its kinetic energy is emitted in form of real photons.

More information

Doppler Broadening Addition to Geant4 Code

Doppler Broadening Addition to Geant4 Code Doppler Broadening Addition to Geant4 Code Introduction... 1 Uncertainty in Energy of the Scattered Gamma-Ray as a Result of Doppler Broadening... 2 Simulation Setup... 2 Simulation Results: the Energy

More information

ELECTROMAGNETC PHYSICS LOW ENERGY CATEGORY. October 10-11, 2013 Bordeaux, France

ELECTROMAGNETC PHYSICS LOW ENERGY CATEGORY. October 10-11, 2013 Bordeaux, France ELECTROMAGNETC PHYSICS LOW ENERGY CATEGORY October 10-11, 2013 Bordeaux, France Content 2 Context Physics processes & models Livermore, including polarized photon models Penelope models Ion ICRU 73 model

More information

LECTURE 4 PRINCIPLE OF IMAGE FORMATION KAMARUL AMIN BIN ABDULLAH

LECTURE 4 PRINCIPLE OF IMAGE FORMATION KAMARUL AMIN BIN ABDULLAH LECTURE 4 PRINCIPLE OF IMAGE FORMATION KAMARUL AMIN BIN ABDULLAH Lesson Objectives At the end of the lesson, student should able to: Define attenuation Explain interactions between x-rays and matter in

More information

Particle Energy Loss in Matter

Particle Energy Loss in Matter Particle Energy Loss in Matter Charged particles loose energy when passing through material via atomic excitation and ionization These are protons, pions, muons, The energy loss can be described for moderately

More information

Exam 2 Development of Quantum Mechanics

Exam 2 Development of Quantum Mechanics PHYS40 (Spring 00) Riq Parra Exam # (Friday, April 1 th, 00) Exam Development of Quantum Mechanics Do NOT write your name on this exam. Write your class ID number on the top right hand corner of each problem

More information

Shell Atomic Model and Energy Levels

Shell Atomic Model and Energy Levels Shell Atomic Model and Energy Levels (higher energy, deeper excitation) - Radio waves: Not absorbed and pass through tissue un-attenuated - Microwaves : Energies of Photos enough to cause molecular rotation

More information

Particle Detectors. Summer Student Lectures 2010 Werner Riegler, CERN, History of Instrumentation History of Particle Physics

Particle Detectors. Summer Student Lectures 2010 Werner Riegler, CERN, History of Instrumentation History of Particle Physics Particle Detectors Summer Student Lectures 2010 Werner Riegler, CERN, werner.riegler@cern.ch History of Instrumentation History of Particle Physics The Real World of Particles Interaction of Particles

More information

Emphasis on what happens to emitted particle (if no nuclear reaction and MEDIUM (i.e., atomic effects)

Emphasis on what happens to emitted particle (if no nuclear reaction and MEDIUM (i.e., atomic effects) LECTURE 5: INTERACTION OF RADIATION WITH MATTER All radiation is detected through its interaction with matter! INTRODUCTION: What happens when radiation passes through matter? Emphasis on what happens

More information

Chemical Engineering 412

Chemical Engineering 412 Chemical Engineering 412 Introductory Nuclear Engineering Lecture 12 Radiation/Matter Interactions II 1 Neutron Flux The collisions of neutrons of all energies is given by FF = ΣΣ ii 0 EE φφ EE dddd All

More information

Geant4 Monte Carlo code application in photon interaction parameter of composite materials and comparison with XCOM and experimental data

Geant4 Monte Carlo code application in photon interaction parameter of composite materials and comparison with XCOM and experimental data Indian Journal of Pure & Applied Physics Vol. 54, Februray 2016, pp. 137-143 Geant4 Monte Carlo code application in photon interaction parameter of composite materials and comparison with XCOM and experimental

More information

Chapter 2 Interactions of Particles in Matter

Chapter 2 Interactions of Particles in Matter Chapter 2 Interactions of Particles in Matter The aim of this chapter is to introduce the reader to the different ways subatomic particles interact with matter. For a more in depth discussion of the subject,

More information

Photons: Interactions

Photons: Interactions Photons: Interactions Photons appear in detector systems as primary photons, created in Bremsstrahlung and de-excitations Photons are also used for medical applications, both imaging and radiation treatment.

More information

The Fermi Gamma-ray Space Telescope

The Fermi Gamma-ray Space Telescope Abstract The Fermi Gamma-ray Space Telescope Tova Yoast-Hull May 2011 The primary instrument on the Fermi Gamma-ray Space Telescope is the Large Area Telescope (LAT) which detects gamma-rays in the energy

More information

Airo International Research Journal October, 2015 Volume VI, ISSN:

Airo International Research Journal October, 2015 Volume VI, ISSN: 1 INTERACTION BETWEEN CHARGED PARTICLE AND MATTER Kamaljeet Singh NET Qualified Declaration of Author: I hereby declare that the content of this research paper has been truly made by me including the title

More information

Units and Definition

Units and Definition RADIATION SOURCES Units and Definition Activity (Radioactivity) Definition Activity: Rate of decay (transformation or disintegration) is described by its activity Activity = number of atoms that decay

More information

2. Passage of Radiation Through Matter

2. Passage of Radiation Through Matter 2. Passage of Radiation Through Matter Passage of Radiation Through Matter: Contents Energy Loss of Heavy Charged Particles by Atomic Collision (addendum) Cherenkov Radiation Energy loss of Electrons and

More information

Interactions of Radiation with Matter

Interactions of Radiation with Matter Main points from last week's lecture: Decay of Radioactivity Mathematics description nly yields probabilities and averages Interactions of Radiation with Matter William Hunter, PhD" Decay equation: N(t)

More information

Slides by: Prof. Abeer Alharbi

Slides by: Prof. Abeer Alharbi Slides by: Prof. Abeer Alharbi electromagnetic radiation of high energy. They are produced by sub-atomic particle interactions, such as electron-positron annihilation, neutral pion decay, radioactive decay,

More information

New photon transport model in Serpent 2

New photon transport model in Serpent 2 New photon transport model in Serpent 2 Toni Kaltiaisenaho VTT Technical Research Centre of Finland Serpent User Group Meeting 1/20 Motivation On average, 8 prompt fission photons over an energy range

More information

Motivation. g-spectroscopy deals with g-ray detection and is one of the most relevant methods to investigate excited states in nuclei.

Motivation. g-spectroscopy deals with g-ray detection and is one of the most relevant methods to investigate excited states in nuclei. Motivation Spins and excited states of double-magic nucleus 16 O Decay spectra are caused by electro-magnetic transitions. g-spectroscopy deals with g-ray detection and is one of the most relevant methods

More information

Photon Interactions in Matter

Photon Interactions in Matter Radiation Dosimetry Attix 7 Photon Interactions in Matter Ho Kyung Kim hokyung@pusan.ac.kr Pusan National University References F. H. Attix, Introduction to Radiological Physics and Radiation Dosimetry,

More information

University of Michigan Physics : Advanced Laboratory Notes on RADIOACTIVITY January 2007

University of Michigan Physics : Advanced Laboratory Notes on RADIOACTIVITY January 2007 University of Michigan Physics 441-442: Advanced Laboratory Notes on RADIOACTIVITY January 2007 1. As usual in the lab, you are forced to learn in several categories at the same time. Your goals in this

More information

SECTION A Quantum Physics and Atom Models

SECTION A Quantum Physics and Atom Models AP Physics Multiple Choice Practice Modern Physics SECTION A Quantum Physics and Atom Models 1. Light of a single frequency falls on a photoelectric material but no electrons are emitted. Electrons may

More information

Physics of Particle Beams. Hsiao-Ming Lu, Ph.D., Jay Flanz, Ph.D., Harald Paganetti, Ph.D. Massachusetts General Hospital Harvard Medical School

Physics of Particle Beams. Hsiao-Ming Lu, Ph.D., Jay Flanz, Ph.D., Harald Paganetti, Ph.D. Massachusetts General Hospital Harvard Medical School Physics of Particle Beams Hsiao-Ming Lu, Ph.D., Jay Flanz, Ph.D., Harald Paganetti, Ph.D. Massachusetts General Hospital Harvard Medical School PTCOG 53 Education Session, Shanghai, 2014 Dose External

More information

Geant4 simulations of the lead fluoride calorimeter

Geant4 simulations of the lead fluoride calorimeter Geant4 simulations of the lead fluoride calorimeter A.A. Savchenko a, *, A.A. Tishchenko a, S.B. Dabagov a,b, A. Anastasi b,c, G. Venanzoni b, M.N. Strikhanov a (et al.) a National Research Nuclear University

More information

Propagation in the Galaxy 2: electrons, positrons, antiprotons

Propagation in the Galaxy 2: electrons, positrons, antiprotons Propagation in the Galaxy 2: electrons, positrons, antiprotons As we mentioned in the previous lecture the results of the propagation in the Galaxy depend on the particle interaction cross section. If

More information

Physics Lists. Dennis Wright (SLAC) Geant4 Tutorial Bordeaux 3-5 November 2005

Physics Lists. Dennis Wright (SLAC) Geant4 Tutorial Bordeaux 3-5 November 2005 Physics Lists Dennis Wright (SLAC) Geant4 Tutorial Bordeaux 3-5 November 2005 Outline Physics list introduction Step-by-step example for building a simple physics list Modular physics lists Best guess

More information

Outline. Absorbed Dose in Radioactive Media. Introduction. Radiation equilibrium. Charged-particle equilibrium

Outline. Absorbed Dose in Radioactive Media. Introduction. Radiation equilibrium. Charged-particle equilibrium Absorbed Dose in Radioactive Media Chapter F.A. Attix, Introduction to Radiological Physics and Radiation Dosimetry Outline General dose calculation considerations, absorbed fraction Radioactive disintegration

More information

Lecture notes on Chapter 13: Electron Monte Carlo Simulation. Nuclear Engineering and Radiological Sciences NERS 544: Lecture 13, Slide # 1:13.

Lecture notes on Chapter 13: Electron Monte Carlo Simulation. Nuclear Engineering and Radiological Sciences NERS 544: Lecture 13, Slide # 1:13. Lecture notes on Chapter 13: Electron Monte Carlo Simulation Nuclear Engineering and Radiological Sciences NERS 544: Lecture 13, Slide # 1:13.0 Topics covered Basic, relevant interaction processes Hard

More information

Recent Developments in Geant4. Calice Collaboration Meeting 10 March 2010 Dennis Wright (on behalf of the Geant4 hadronic working group)

Recent Developments in Geant4. Calice Collaboration Meeting 10 March 2010 Dennis Wright (on behalf of the Geant4 hadronic working group) Recent Developments in Geant4 Calice Collaboration Meeting 10 March 2010 Dennis Wright (on behalf of the Geant4 hadronic working group) Outline Geant4 and Calice Geant4 Validation Physics Lists and Simplified

More information

Detector Simulation. Mihaly Novak CERN PH/SFT

Detector Simulation. Mihaly Novak CERN PH/SFT Detector Simulation Mihaly Novak CERN PH/SFT CERN Summer Student Program, 1 August 2017 Foreword This lecture is aimed to offer a simple and general introduction to detector simulation. Geant4 will be

More information

Alpha Decay. Decay alpha particles are monoenergetic. Nuclides with A>150 are unstable against alpha decay. E α = Q (1-4/A)

Alpha Decay. Decay alpha particles are monoenergetic. Nuclides with A>150 are unstable against alpha decay. E α = Q (1-4/A) Alpha Decay Because the binding energy of the alpha particle is so large (28.3 MeV), it is often energetically favorable for a heavy nucleus to emit an alpha particle Nuclides with A>150 are unstable against

More information

PHY138Y Nuclear and Radiation

PHY138Y Nuclear and Radiation PHY138Y Nuclear and Radiation Professor Tony Key MP401 key@physics.utoronto.ca Question Would you prefer to have music playing in the 6-7 minutes before class while Larry and I set up? A. YES B. NO C.

More information

Hadronic physics.

Hadronic physics. Hadronic physics http://geant4.cern.ch PART I Intro to the philosophy of hadronic processes Hadronic physics challenge Even though there is an underlying theory (QCD), applying it is much more difficult

More information

Total probability for reaction Yield

Total probability for reaction Yield Total probability for reaction Yield If target has thickness d, and target material has # nuclei/volume: n 0 [part./cm 3 ] Y=σ n 0 d The yield gives the intensity of the characteristic signal from the

More information

Fundamental Forces. Range Carrier Observed? Strength. Gravity Infinite Graviton No. Weak 10-6 Nuclear W+ W- Z Yes (1983)

Fundamental Forces. Range Carrier Observed? Strength. Gravity Infinite Graviton No. Weak 10-6 Nuclear W+ W- Z Yes (1983) Fundamental Forces Force Relative Strength Range Carrier Observed? Gravity 10-39 Infinite Graviton No Weak 10-6 Nuclear W+ W- Z Yes (1983) Electromagnetic 10-2 Infinite Photon Yes (1923) Strong 1 Nuclear

More information

EM interactions. Beginners FLUKA Course

EM interactions. Beginners FLUKA Course EM interactions Beginners FLUKA Course Topics General settings Interactions of leptons/photons Photon interactions Photoelectric Compton Rayleigh Pair production Photonuclear Photomuon production Electron/positron

More information

Chapter NP-4. Nuclear Physics. Particle Behavior/ Gamma Interactions TABLE OF CONTENTS INTRODUCTION OBJECTIVES 1.0 IONIZATION

Chapter NP-4. Nuclear Physics. Particle Behavior/ Gamma Interactions TABLE OF CONTENTS INTRODUCTION OBJECTIVES 1.0 IONIZATION Chapter NP-4 Nuclear Physics Particle Behavior/ Gamma Interactions TABLE OF CONTENTS INTRODUCTION OBJECTIVES 1.0 IONIZATION 2.0 ALPHA PARTICLE INTERACTIONS 3.0 BETA INTERACTIONS 4.0 GAMMA INTERACTIONS

More information

3. Particle-like properties of E&M radiation

3. Particle-like properties of E&M radiation 3. Particle-like properties of E&M radiation 3.1. Maxwell s equations... Maxwell (1831 1879) studied the following equations a : Gauss s Law of Electricity: E ρ = ε 0 Gauss s Law of Magnetism: B = 0 Faraday

More information

Lepton and gamma nuclear reactions. J.P. Wellisch, CERN/EP, Geant4 Users Workshop, SLAC, Feb 2002

Lepton and gamma nuclear reactions. J.P. Wellisch, CERN/EP, Geant4 Users Workshop, SLAC, Feb 2002 Lepton and gamma nuclear reactions J.P. Wellisch, CERN/EP, Geant4 Users Workshop, SLAC, Feb 00 Outline Partices treated Cross-section calculations The modeling Classes exposed to users Restrictions of

More information

1. What is the minimum energy required to excite a mercury atom initially in the ground state? ev ev ev

1. What is the minimum energy required to excite a mercury atom initially in the ground state? ev ev ev Page 1 of 10 modern bank Name 25-MAY-05 1. What is the minimum energy required to excite a mercury atom initially in the ground state? 1. 4.64 ev 3. 10.20 ev 2. 5.74 ev 4. 10.38 ev 2. The diagram represents

More information

Geant4 Physics Lists: Status and Proposed Upgrades. Dennis Wright (SLAC) 25 February 2011

Geant4 Physics Lists: Status and Proposed Upgrades. Dennis Wright (SLAC) 25 February 2011 Geant4 Physics Lists: Status and Proposed Upgrades Dennis Wright (SLAC) 25 February 2011 Outline Contents of a few preferred Geant4 physics lists Updating/augmenting the physics lists Comparing Fluka and

More information

Prompt Radiation Fields at Accelerators

Prompt Radiation Fields at Accelerators Prompt Radiation Fields at Accelerators Vashek Vylet, TJNAF HPS Professional Development School, Oakland, CA January 31 February 2, 2008 1 Overview Introduction ti Prompt Fields at Electron Accelerators

More information

Particle Energy Loss in Matter

Particle Energy Loss in Matter Particle Energy Loss in Matter Charged particles, except electrons, loose energy when passing through material via atomic excitation and ionization These are protons, pions, muons, The energy loss can

More information

arxiv: v1 [physics.ins-det] 22 Aug 2018

arxiv: v1 [physics.ins-det] 22 Aug 2018 On the role of radiative losses in energy scale of large liquid scintillator and water Cerenkov detectors Andrey Formozov arxiv:1808.07458v1 [physics.ins-det] 22 Aug 2018 Dipartimento di Fisica, Universita

More information

Introduction to the geant4 simulation toolkit

Introduction to the geant4 simulation toolkit University of Wollongong Research Online Faculty of Engineering - Papers (Archive) Faculty of Engineering and Information Sciences 2011 Introduction to the geant4 simulation toolkit Susanna Guatelli University

More information

Geant4 Electromagnetic Physics Updates

Geant4 Electromagnetic Physics Updates Geant4 Electromagnetic Physics Updates V. Ivanchenko, CERN & Geant4 Associates International S. Incerti, CNRS, IN2P3, CENBG, France 12 th Geant4 Space User Workshop 10-12 April 2017 University of Surrey,

More information

Geant Hadronic Physics I. Geant4 Tutorial at Lund University. 6 September 2018 Dennis Wright

Geant Hadronic Physics I. Geant4 Tutorial at Lund University. 6 September 2018 Dennis Wright Geant4 10.4 Hadronic Physics I Geant4 Tutorial at Lund University 6 September 2018 Dennis Wright Outline Overview of hadronic physics Precompoundand de-excitation models Cascade models 2 Hadronic Processes,

More information

General Information. Muon Lifetime Update. Today s Agenda. The next steps. Reports due May 14

General Information. Muon Lifetime Update. Today s Agenda. The next steps. Reports due May 14 General Information Muon Lifetime Update The next steps Organize your results Analyze, prepare plots, fit lifetime distribution Prepare report using the Latex templates from the web site Reports due May

More information

PHYS 5012 Radiation Physics and Dosimetry

PHYS 5012 Radiation Physics and Dosimetry PHYS 5012 Radiation Physics and Dosimetry Tuesday 17 March 2009 What are the dominant photon interactions? (cont.) Compton scattering, the photoelectric effect and pair production are the three main energy

More information

Quantitative Assessment of Scattering Contributions in MeV-Industrial X-ray Computed Tomography

Quantitative Assessment of Scattering Contributions in MeV-Industrial X-ray Computed Tomography 11th European Conference on Non-Destructive Testing (ECNDT 2014), October 6-10, 2014, Prague, Czech Republic More Info at Open Access Database www.ndt.net/?id=16530 Quantitative Assessment of Scattering

More information

Atomic Structure and Processes

Atomic Structure and Processes Chapter 5 Atomic Structure and Processes 5.1 Elementary atomic structure Bohr Orbits correspond to principal quantum number n. Hydrogen atom energy levels where the Rydberg energy is R y = m e ( e E n

More information

1 Geant4 to simulate Photoelectric, Compton, and Pair production Events

1 Geant4 to simulate Photoelectric, Compton, and Pair production Events Syed F. Naeem, hw-12, Phy 599 1 Geant4 to simulate Photoelectric, Compton, and Pair production Events 1.1 Introduction An Aluminum (Al) target of 20cm was used in this simulation to see the eect of incoming

More information