Geant4 Hadronic Physics - II

Size: px
Start display at page:

Download "Geant4 Hadronic Physics - II"

Transcription

1 Geant4 Hadronic Physics - II Geant4 Tutorial, Marshall Space Flight Center April 2012 Daniel Brandt (based on slides by T. Koi) based on Geant4 v9.5-p01

2 Overview Low energy neutron physics High-precision (HP) models Low-energy (LE) models Thermal scattering & chemical bonds Ion physics Cascade models Abrasion/Ablation models EM Dissociation 2

3 Low Energy Neutron Physics Low energy: <20 MeV High precision (HP) models are built by extrapolating data sets Datasets G4 Neutron Data Library (G4NDL) based on file format similar to Evaluated Nuclear data Library (ENDL) 3

4 HP processes available Elastic scattering - G4NeutronHPElastic Differential cross sections tabulated in cos θ, E Inelastic scattering - G4NeutronHPInelastic Supporting a large number of final states and secondary distribution models (isotropic emission, discrete two-body kinematics...) Capture - G4NeutronHPCapture Final capture state described by photon multiplicity or production cross-section given by data libraries Fission - G4NeutronHPFission Currently, only Uranium data available. Different neutron energy distribution functions are provided (tabulated, Maxwellian, evaporation spectrum...) 4

5 Elastic Capture Inelastic Inelastic Inelastic Inelastic Inelastic Inelastic CrossSection [barn] Verification of HP processes MeV Neutrons on 157 Gd G4 ENDF (n,nγ) (n,2n) (n,nα) (n,np) (n,p) (n,α) 5

6 Verification of HP processes - II Verification of High Precision Neutron models Energy Spectrum of Secondary Particles Gd154 (n,2n) channel 4.5E E E E E E E E E E E+06 4E+06 6E+06 8E+06 1E+07 1E+07 secondary neutron energy [ev] ENDF G4 result 6

7 Physics List for NeutronHP Create HP process and register data & model //For example elastic scattering below 20 MeV G4HadronElasticProcess* theneutronelasticprocess = new G4HadronElasticProcess(); // Cross Section Data set G4NeutronHPElasticData* thehpelasticdata = new G4NeutronHPElasticData(); theneutronelasticprocess->adddataset( thehpelasticdata ); // Model G4NeutronHPElastic* theneutronelasticmodel = new G4NeutronHPElastic(); theneutronelasticprocess->registerme(theneutronelasticmodel) Register the process with G4ProcessManager G4ProcessManager* pmanager = G4Neutron::Neutron()-> GetProcessManager(); pmanager->adddiscreteprocess( theneutronelasticprocess ); 7

8 Low Energy models In some cases, data for HP models may not be available When no HP model is available, the G4NeutronHPorLE models can be used G4NeutronHPorLE models provide low energy parametrization models/cross sections to replace the data-driven HP models. Elastic, inelastic, fission and capture models are available as G4NeutronHPorLE. 8

9 Physics List for NeutronHPorLE Create HPorLE process and register data & model //For example Elastic scattering below 20 MeV G4HadronElasticProcess* theneutronelasticprocess = new G4HadronElasticProcess(); // Model G4NeutronHPorLElasticModel* theneutronelasticmodel = new G4NeutronHPorLElasticModel(); theneutronelasticprocess->registerme(theneutronelasticmodel) // Cross Section Data set theneutronelasticprocess->adddataset( theneutronelasticmodel- >GiveHPXSectionDataSet() ); Notice that rather than acquiring data from a library, the data set is provided by the HPorLE model 9

10 Thermal Neutron Scattering At thermal energies, neutron scattering needs to take into account properties of chemically bound atoms: Translational motion, vibration and rotation of chemically bound atoms influences cross-sections and scattering energies Scattering cross section: E b E 2kT E Based on momentum transfer α, energy transfer β: E, S, ; E E 2 AkT E E, E E kt 10

11 Thermal Scattering Physics List Thermal scattering is created like any other neutron process Since it is only valid for thermal energies (~a few ev), usually combined with HP model so that scattering still works at higher E // Cross Section Data set theneutronelasticprocess->adddataset(new G4NeutronHPElasticData() ); theneutronelasticprocess->adddataset(new G4NeutronHPThermalScatteringData() ); // Neutron HP Elasctic scattering > 4eV G4NeutronHPElastic* theneutronelasticmodel = new G4NeutronHPElastic(); theneutronelasticmodel->setminenergy ( 4.0*eV ); // Neutron thermal Elasctic scattering < 4eV G4NeutronHPThermalScattering* thethermalmodel = new G4NeutronHPThermalScattering(); thethermalmodel->setmaxenergy ( 4.0*eV ); //register thermal and HP models theneutronelasticprocess->registerme(theneutronelasticmodel); theneutronelasticprocess->registerme(thethermalmodel); 11

12 Ion Physics Inelastic collisions Geant4 provides cross sections for N-N interactions from empirical, parametrized models Interactions between nuclei can be modelled by physics based cascade models or by less computationally intensive Abrasion/Ablation models Geant4 also provides a process for EM dissociation 12

13 Ion Physics Inelastic collisions Geant4 provides cross sections for N-N interactions from empirical, parametrized models Interactions between nuclei can be modelled by physics based cascade models or by less computationally intensive Abrasion/Ablation models Geant4 also provides a process for EM dissociation 13

14 Ion Physics cross sections Geant4 provides many different cross-section formulae from empirical, parametrized models The G4GeneralSpaceNNCrossSection class was created to help in selection of the model References for the different models used are provided in the appendix to this presentation 14

15 Binary Cascade Model 3-D model of nucleus constructed from A, Z A<16: Use harmonic oscillator shell model A>16: Use Woods Saxon model Each nucleon is treated as Gaussian wave packet, total nucleus wave function is product of all of these For every interacting nucleon, its momentum is sampled from the range [0, E Fermi ] and taken into account for collision probability and final state caluclation 15

16 Validating Binary Cascade Model 400 MeV neutrons incident on Carbon For low scattering angles, very good agreement between models and data Additional validation graphs in Appendix B of this presentation 16

17 Cross Section [mb] Cross Section [mb] Validating Binary Cascade Model - II Fragment Production Si 453 MeV/n on Al Si 490 MeV/n on Cu DATA G4 DATA G Al Mg Na Ne F O N C Particle Species 1 Al Mg Na Ne F O N C Particle Species According to F. Flesch et al., J, RM,

18 Binary Cascade Physics List Geant4 provides cross sections for N-N interactions from empirical, parametrized models //create process G4HadronInelasticProcess* theipgenericion = new G4HadronInelasticProcess("IonInelastic", G4GenericIon::GenericIon() ); // Cross Section Data Set G4TripathiCrossSection * TripathiCrossSection= new G4TripathiCrossSection; G4IonsShenCrossSection * ashen = new G4IonsShenCrossSection; theipgenericion->adddataset(ashen); theipgenericion->adddataset(tripathicrosssection); // Model G4BinaryLightIonReaction * thegenionbc= new G4BinaryLightIonReaction(); theipgenericion->registerme(thegenionbc); //Apply Processes to Process Manager of Neutron G4ProcessManager* pmanager = G4GenericIon:: GenericIon()-> GetProcessManager(); pmanager->adddiscreteprocess( theipgenericion ); 18

19 Abrasion/Ablation Model Basic idea: Use geometric arguments to simulate nuclearnuclear interactions without running full cascade model Ablation simulates de-excitation of nuclear prefragments increases accuracy of geometric models Ablation process Abrasion process projectile target nucleus 19

20 Abrasion/Ablation Model - II Abrasion/Ablation models are much less computationally expensive than full cascade models Provides reduced accuracy Ablation/Abrasion processes are provided by G4WilsonAbrasionModel and G4WilsonAblationModel Ablation is simulated using Geant4 nuclear excitation models 20

21 cross-section [mb] Validating Abrasion/Ablation 12 C-C 1050 MeV/nuc Abrasion + ablation Experiment NUCFRG C11 C10 B11 B10 Be10 Be9 Be7 Li8 Li7 Li6 He6 Fragment 21

22 Abrasion Physics List G4HadronInelasticProcess* theipgenericion = new G4HadronInelasticProcess("IonInelastic", G4GenericIon::GenericIon() ); // Cross Section Data Set G4IonsShenCrossSection * ashen = new G4IonsShenCrossSection; theipgenericion->adddataset(ashen); // Low-E model G4BinaryLightIonReaction * thegenionbc= new G4BinaryLightIonReaction; thegenionbc->setminenergy(0*mev); thegenionbc->setmaxenergy(0.07*gev); // High-E model using abrasion for faster simulation theipgenericion->registerme(thegenionbc); G4WilsonAbrasionModel* thegenionabrasion = new G4WilsonAbrasionModel(); theipgenericion->registerme(thegenionabrasion); //Apply Processes to Process Manager of Neutron G4ProcessManager* pmanager = G4GenericIon:: GenericIon()-> GetProcessManager(); pmanager->adddiscreteprocess( theipgenericion ); 22

23 EM Dissocation In the EM Dissociation process a relativistic nucleus causes a target nucleus to fragment by exhange of a virtual photon Especially important for nuclei with large proton numbers Geant4 EM dissociation is based on NUCFRG2 (NASA TP 3533), validation table provided in Appendix C 23

24 EM Dissocation Physics List G4HadronInelasticProcess* theipgenericion = new G4HadronInelasticProcess("IonInelastic", G4GenericIon::GenericIon() ); // Cross Section Data Set G4EMDissociationCrossSection* EMDCrossSec = new G4EMDissociationCrossSection(); theipgenericion->adddataset( EMDCrossSect ); // Model G4EMDissociation* theemdmodel = new G4EMDissociation; theipgenericion->registerme(theemdmodel); //Apply Processes to Process Manager of Neutron G4ProcessManager* pmanager = G4GenericIon:: GenericIon()-> GetProcessManager(); pmanager->adddiscreteprocess( theipgenericion ); 24

25 Summary Geant4 provides high-precision (HP) data-drivven neutron elastic, inelastic, fission and capture processes Parametrized models are provided where no HP data is available Thermal neutron scattering takes into account chemical properties Geant4 provides sophisticated models for N-N interaction of varying computational complexity There is a wealth of validation information for all hadronic processes, indicating good agreement between experiment and simualtion 25

26 Appendix A Cross section references Tripathi Formula NASA Technical Paper TP-3621 (1997) Tripathi Light System NASA Technical Paper TP (1999) Kox Formula Phys. Rev. C (1987) Shen Formula Nuclear Physics. A (1989) Sihver Formula Phys. Rev. C (1993) 26

27 Appendix B Cascade Validation 400 MeV neutrons incident on Carbon 27

28 Appendix B Cascade Validation II Copper Thick Target Lead Thick Target 28

29 Appendix C EM Dissociation Validation Target Emulsion nuclei: Ag 61.7%, Br 34.2%, CNO 4.0% and H 0.1% Projectile Energy [GeV/nuc] Product from ED G4EM Dissociation [mbarn] Experiment [mbarn] Mg Na-23 + p Si Al-27 + p Al-27 + p O N-15 + p * M A Jilany, Nucl Phys, A705, ,

Geant4 v10.00.p01. Hadronic Physics II. Koi, Tatsumi SLAC National accelerator Laboratory

Geant4 v10.00.p01. Hadronic Physics II. Koi, Tatsumi SLAC National accelerator Laboratory Geant4 v10.00.p01 Hadronic Physics II Koi, Tatsumi SLAC National accelerator Laboratory Overview Elastic process, cross section and model Low Energy Neutron Physics High Precision Neutron Package Thermal

More information

Hadronic Physics II. University of Pennsylvania Geant4 Tutorial 17 May 2011 Dennis Wright. Geant April 2011, CMRP, UOW

Hadronic Physics II. University of Pennsylvania Geant4 Tutorial 17 May 2011 Dennis Wright. Geant April 2011, CMRP, UOW Hadronic Physics II University of Pennsylvania Geant4 Tutorial 17 May 2011 Dennis Wright Geant4 9.4 Outline Low energy neutrons Ion-ion collisions Radioactive decay High energy models (QCD strings) 2 Low

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

Ion-ion Physics in Geant4. Dennis Wright (SLAC) 5 th Geant4 Space Users' Workshop 14 February 2008

Ion-ion Physics in Geant4. Dennis Wright (SLAC) 5 th Geant4 Space Users' Workshop 14 February 2008 Ion-ion Physics in Geant4 Dennis Wright (SLAC) 5 th Geant4 Space Users' Workshop 14 February 2008 Outline Introduction and Motivation Cross sections Existing models New Models Interfaces to external models

More information

Technical Note on Software Validation

Technical Note on Software Validation Technical Note on Software Validation Title: Nuclear-Nuclear Interaction Models in Geant4 Document reference Project reference: Prepared by: Parent project: QINETIQ/KI/SPACE/20/119 Dr Pete Truscott Signature:

More information

GEANT4 HADRONIC PHYSICS

GEANT4 HADRONIC PHYSICS GEANT4 HADRONIC PHYSICS Training course at International User Conference on Medicine and Biology applications Bordeaux, 8-11 October 2013 V. Ivanchenko Based on lectures developed by Dennis Wright Geant4

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

Geant4 version 10.0.p01. Hadronic Physics I. Geant4 Tutorial: version 10.0.p01. Michael Kelsey, Wed 5 Mar 2014

Geant4 version 10.0.p01. Hadronic Physics I. Geant4 Tutorial: version 10.0.p01. Michael Kelsey, Wed 5 Mar 2014 Michael Kelsey, Wed 5 Mar 2014 Hadronic Physics I Geant4 Tutorial: version 10.0.p01 Hadronic Physics I What is Hadronic Physics? The Hadronic Framework - Processes vs. Models - Cross sections and process

More information

Improvements and developments of physics models in PHITS for radiotherapy and space applications

Improvements and developments of physics models in PHITS for radiotherapy and space applications Improvements and developments of physics models in PHITS for radiotherapy and space applications L. Sihver 1-9, T. Sato 10, S. Hashimoto 10, T. Ogawa 10, K. Niita 11 1 Atominstitut, TU Wien, Austria, 2

More information

Neutron Interactions Part I. Rebecca M. Howell, Ph.D. Radiation Physics Y2.5321

Neutron Interactions Part I. Rebecca M. Howell, Ph.D. Radiation Physics Y2.5321 Neutron Interactions Part I Rebecca M. Howell, Ph.D. Radiation Physics rhowell@mdanderson.org Y2.5321 Why do we as Medical Physicists care about neutrons? Neutrons in Radiation Therapy Neutron Therapy

More information

Hadronic Physics I. University of Pennsylvania Geant4 Tutorial 17 May 2011 Dennis Wright. Geant4 V9.4

Hadronic Physics I. University of Pennsylvania Geant4 Tutorial 17 May 2011 Dennis Wright. Geant4 V9.4 Hadronic Physics I University of Pennsylvania Geant4 Tutorial 17 May 2011 Dennis Wright Geant4 V9.4 Outline Overview of hadronic physics processes, cross sections, models hadronic framework and organization

More information

Chapter V: Interactions of neutrons with matter

Chapter V: Interactions of neutrons with matter Chapter V: Interactions of neutrons with matter 1 Content of the chapter Introduction Interaction processes Interaction cross sections Moderation and neutrons path For more details see «Physique des Réacteurs

More information

Validation of Hadronic Models in Geant4

Validation of Hadronic Models in Geant4 SLAC-PUB-12836 Validation of Hadronic Models in Geant4 Tatsumi Koi, Dennis H. Wright, Gunter Folger, Vladimir Ivantchenko, Mikhail Kossov, Nikolai Starkov, Aatos Heikkinen, Pete Truscott, Fan Lei, and

More information

Lecture 4: Nuclear Energy Generation

Lecture 4: Nuclear Energy Generation Lecture 4: Nuclear Energy Generation Literature: Prialnik chapter 4.1 & 4.2!" 1 a) Some properties of atomic nuclei Let: Z = atomic number = # of protons in nucleus A = atomic mass number = # of nucleons

More information

Geant4 Hadronic Physics Developments

Geant4 Hadronic Physics Developments Geant4 Hadronic Physics Developments José Manuel Quesada University of Sevilla on behalf of Geant4 Hadronic Working Group 9th Geant4 Space Users Workshop Barcelona, March 2013 Outline General matters Photo-nuclear

More information

Hadronic Physics III. University of Pennsylvania Geant4 Tutorial 18 May 2011 Dennis Wright. Geant4 V9.4

Hadronic Physics III. University of Pennsylvania Geant4 Tutorial 18 May 2011 Dennis Wright. Geant4 V9.4 Hadronic Physics III University of Pennsylvania Geant4 Tutorial 18 May 2011 Dennis Wright Geant4 V9.4 2 Outline Gamma and lepto-nuclear models Chiral Invariant Phase Space (CHIPS) model Other models capture

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

Physics with Exotic Nuclei

Physics with Exotic Nuclei Physics with Exotic Nuclei Hans-Jürgen Wollersheim NUclear STructure, Astrophysics and Reaction Outline Projectile Fragmentation A Route to Exotic Nuclei Fragmentation Cross Sections Nuclear Reaction Rates

More information

Today, I will present the first of two lectures on neutron interactions.

Today, I will present the first of two lectures on neutron interactions. Today, I will present the first of two lectures on neutron interactions. I first need to acknowledge that these two lectures were based on lectures presented previously in Med Phys I by Dr Howell. 1 Before

More information

Recent Developments in Geant4 Hadronics. Geant4/Spenvis Workshop at JPL 6 November 2006 Dennis Wright

Recent Developments in Geant4 Hadronics. Geant4/Spenvis Workshop at JPL 6 November 2006 Dennis Wright Recent Developments in Geant4 Hadronics Geant4/Spenvis Workshop at JPL 6 November 2006 Dennis Wright Outline Treatment of isotopes (abundance,masses,pdg code) Cross section improvements Elastic scattering

More information

INCL INTRA-NUCLEAR CASCADE AND ABLA DE-EXCITATION MODELS IN GEANT4

INCL INTRA-NUCLEAR CASCADE AND ABLA DE-EXCITATION MODELS IN GEANT4 Joint International Conference on Supercomputing in Nuclear Applications and Monte Carlo (SNA + MC) Hitotsubashi Memorial Hall, Tokyo, Japan, October -, INCL INTRA-NUCLEAR CASCADE AND ABLA DE-EXCITATION

More information

arxiv:nucl-th/ v1 2 Jun 2003

arxiv:nucl-th/ v1 2 Jun 2003 CHEP 2003, La Jolla, California, USA, March 24-28 2003 1 Bertini intra-nuclear cascade implementation in Geant4 Aatos Heikkinen, Nikita Stepanov Helsinki Institute of Physics, P.O. Box 64, FIN-00014 University

More information

Recent Developments in Geant4 Hadronic Physics

Recent Developments in Geant4 Hadronic Physics Recent Developments in Geant4 Hadronic Physics Dennis Wright (SLAC) 1 st Geant4 Australian School Recently Released Many new features added in Geant4 9.4 (December 2010) and patch 9.4 p01 2 Energy/Momentum

More information

Nuclear Physics 2. D. atomic energy levels. (1) D. scattered back along the original direction. (1)

Nuclear Physics 2. D. atomic energy levels. (1) D. scattered back along the original direction. (1) Name: Date: Nuclear Physics 2. Which of the following gives the correct number of protons and number of neutrons in the nucleus of B? 5 Number of protons Number of neutrons A. 5 6 B. 5 C. 6 5 D. 5 2. The

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

Elastic scattering. Elastic scattering

Elastic scattering. Elastic scattering Elastic scattering Now we have worked out how much energy is lost when a neutron is scattered through an angle, θ We would like to know how much energy, on average, is lost per collision In order to do

More information

Emission of Helium Nuclei in Relativistic Proton Interactions Leading to Total Break up of Ag and Br Nuclei. Z.Physik A 279, 407 (1976).

Emission of Helium Nuclei in Relativistic Proton Interactions Leading to Total Break up of Ag and Br Nuclei. Z.Physik A 279, 407 (1976). Emission of Helium Nuclei in Relativistic Proton Interactions Leading to Total Break up of Ag and Br Nuclei. Z.Physik A 279, 407 (1976). Inelastic Interactions of 69.0 GeV/c Protons with Emulsion Nuclei.

More information

Introduction to Nuclear Engineering

Introduction to Nuclear Engineering 2016/9/27 Introduction to Nuclear Engineering Kenichi Ishikawa ( ) http://ishiken.free.fr/english/lecture.html ishiken@n.t.u-tokyo.ac.jp 1 References Nuclear Physics basic properties of nuclei nuclear

More information

Analysis of cosmic ray neutron-induced single-event phenomena

Analysis of cosmic ray neutron-induced single-event phenomena Analysis o cosmic ray neutron-induced single-event phenomena Yasuyuki TUKAMOTO Yukinobu WATANABE and Hideki NAKASHIMA Department o Advanced Energy Engineering Science Kyushu University Kasuga Fukuoka 816-8580

More information

Results obtained with nuclear models of Geant4 in IAEA Benchmark of Spallation

Results obtained with nuclear models of Geant4 in IAEA Benchmark of Spallation Results obtained with nuclear models of Geant4 in IAEA Benchmark of Spallation J. M. Quesada on behalf of the Geant4 Hadronic Group IAEA, Vienna, 05.05.2009 1 General Introduction 2 What is Geant4? Geant4

More information

Hadronic Showers. KIP Journal Club: Calorimetry and Jets 2009/10/28 A.Kaplan & A.Tadday

Hadronic Showers. KIP Journal Club: Calorimetry and Jets 2009/10/28 A.Kaplan & A.Tadday Hadronic Showers KIP Journal Club: Calorimetry and Jets 2009/10/28 A.Kaplan & A.Tadday Hadronic Showers em + strong interaction with absorber similarities to em-showers, but much more complex different

More information

Fundamentals in Nuclear Physics

Fundamentals in Nuclear Physics 018/ Fundamentals in Nuclear Physics Kenichi Ishikawa ( ) http://ishiken.free.fr/english/lecture.html ishiken@n.t.u-tokyo.ac.jp 1 Schedule Nuclear reactions 5/1 Nuclear decays and fundamental interactions

More information

Lecture 4: Nuclear Energy Generation

Lecture 4: Nuclear Energy Generation Lecture 4: Nuclear Energy Generation Literature: Prialnik chapter 4.1 & 4.2!" 1 a) Some properties of atomic nuclei Let: Z = atomic number = # of protons in nucleus A = atomic mass number = # of nucleons

More information

What is Spallation???

What is Spallation??? What is Spallation??? Definition found in Nuclear Physics Academic press: projectile (p, n, π,...) target Spallation---a type of nuclear reaction in which the high-energy level of incident particles causes

More information

Statistical Model Calculations for Neutron Radiative Capture Process

Statistical Model Calculations for Neutron Radiative Capture Process Statistical Nuclear Physics and its Applications in Astrophysics, Jul. 8-, 2008 Statistical Model Calculations for Neutron Radiative Capture Process T. Kawano T-6 Nuclear Physics Los Alamos National Laboratory

More information

Theoretical Analysis of Neutron Double-Differential Cross Section of n + 19 F at 14.2 MeV

Theoretical Analysis of Neutron Double-Differential Cross Section of n + 19 F at 14.2 MeV Commun. Theor. Phys. (Beijing, China) 47 (2007) pp. 102 106 c International Academic Publishers Vol. 47, No. 1, January 15, 2007 Theoretical Analysis of Neutron Double-Differential Cross Section of n +

More information

Heavy Ion Interactions. Beginners FLUKA Course

Heavy Ion Interactions. Beginners FLUKA Course Heavy Ion Interactions Beginners FLUKA Course 1 Overview The models DPMJET RQMD BME Input options Beam definition Transport thresholds 2 Heavy ion interaction models in FLUKA - 1 E > 5 GeV/n Dual Parton

More information

Low Energy Neutron Verification in GEANT4: to 4.9.5

Low Energy Neutron Verification in GEANT4: to 4.9.5 Low Energy Neutron Verification in GEANT4: 4.9.3 to 4.9.5 Kimberly J. Palladino MiniCLEAN Collaboration Presenting the work of Katie Harrington, Peder Bruusgaard, Will Yashar What we've studied Neutron

More information

Validation of Geant4 Hadronic Physics Models at Intermediate Energies. Outline

Validation of Geant4 Hadronic Physics Models at Intermediate Energies. Outline Models at Intermediate Energies Outline Motivation Models Data Used Validation Results Summary CHEP 2009 Prague, March 23-27, 2009 Sunanda Banerjee, Fermilab (on behalf of Geant4 Hadronic Group) Motivation

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

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

1 v. L18.pdf Spring 2010, P627, YK February 22, 2012

1 v. L18.pdf Spring 2010, P627, YK February 22, 2012 L18.pdf Spring 2010, P627, YK February 22, 2012 18 T2 Nuclear Information Service at LANL: http://t2.lanl.gov/data/ ENDF/B VI Neutron Data : http://t2.lanl.gov/cgi bin/nuclides/endind Thermal neutron x

More information

Reconstruction of Neutron Cross-sections and Sampling

Reconstruction of Neutron Cross-sections and Sampling Reconstruction of Neutron Cross-sections and Sampling Harphool Kumawat Nuclear Physics Division, BARC 1 Outline Introduction Reconstruction of resonance cross-section Linearization of cross-section Unionization

More information

CHEM 312: Lecture 9 Part 1 Nuclear Reactions

CHEM 312: Lecture 9 Part 1 Nuclear Reactions CHEM 312: Lecture 9 Part 1 Nuclear Reactions Readings: Modern Nuclear Chemistry, Chapter 10; Nuclear and Radiochemistry, Chapter 4 Notation Energetics of Nuclear Reactions Reaction Types and Mechanisms

More information

Tracking at the LAND/R B setup on 17

Tracking at the LAND/R B setup on 17 3 Tracking at the LAND/R B setup on 17 the example of Ne(γ,2p)15O R. Plag*, J. Marganiec 21. Januar 2011 Dedicated to the students of LAND/R3B Outline rp process and motivation coulomb dissociation as

More information

Geant Hadronic Physics III. Geant4 Tutorial at Lund University 6 September 2018 Dennis Wright (SLAC)

Geant Hadronic Physics III. Geant4 Tutorial at Lund University 6 September 2018 Dennis Wright (SLAC) Geant4 10.4 Hadronic Physics III Geant4 Tutorial at Lund University 6 September 2018 Dennis Wright (SLAC) QCD string models Outline Quark-gluon string (QGS) model Fritiof (FTF) model Gamma- and lepto-nuclear

More information

NJCTL.org 2015 AP Physics 2 Nuclear Physics

NJCTL.org 2015 AP Physics 2 Nuclear Physics AP Physics 2 Questions 1. What particles make up the nucleus? What is the general term for them? What are those particles composed of? 2. What is the definition of the atomic number? What is its symbol?

More information

Heavy Ion Interactions. Beginners FLUKA Course

Heavy Ion Interactions. Beginners FLUKA Course Heavy Ion Interactions Beginners FLUKA Course Overview The models DPMJET RQMD BME Input options Beam definition Transport thresholds 2 Heavy ion interaction models in FLUKA - 1 E > 5 GeV/n Dual Parton

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

Secondary Radiation and Shielding Design for Particle Therapy Facilities

Secondary Radiation and Shielding Design for Particle Therapy Facilities Secondary Radiation and Shielding Design for Particle Therapy Facilities π± A p, n, π± A p, n A Nisy Elizabeth Ipe, Ph.D., C.H.P. Consultant, Shielding Design, Dosimetry & Radiation Protection San Carlos,

More information

nuclear states nuclear stability

nuclear states nuclear stability nuclear states 1 nuclear stability 2 1 nuclear chart 3 nuclear reactions Important concepts: projectile (A) target (B) residual nuclei (C+D) q-value of a reaction Notations for the reaction B(A,C)D A+B

More information

Detekce a spektrometrie neutronů. neutron detection and spectroscopy

Detekce a spektrometrie neutronů. neutron detection and spectroscopy Detekce a spektrometrie neutronů neutron detection and spectroscopy 1. Slow neutrons 2. Fast neutrons 1 1. Slow neutrons neutron kinetic energy E a) charged particles are produced, protons, α particle,

More information

Write down the nuclear equation that represents the decay of neptunium 239 into plutonium 239.

Write down the nuclear equation that represents the decay of neptunium 239 into plutonium 239. Q1.A rod made from uranium 238 ( U) is placed in the core of a nuclear reactor where it absorbs free neutrons. When a nucleus of uranium 238 absorbs a neutron it becomes unstable and decays to neptunium

More information

Multiple Choice Questions

Multiple Choice Questions Nuclear Physics & Nuclear Reactions Practice Problems PSI AP Physics B 1. The atomic nucleus consists of: (A) Electrons (B) Protons (C)Protons and electrons (D) Protons and neutrons (E) Neutrons and electrons

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

LECTURE 6: INTERACTION OF RADIATION WITH MATTER

LECTURE 6: INTERACTION OF RADIATION WITH MATTER LCTUR 6: INTRACTION OF RADIATION WITH MATTR All radiation is detected through its interaction with matter! INTRODUCTION: What happens when radiation passes through matter? Interlude The concept of cross-section

More information

Neutron-rich rare isotope production with stable and radioactive beams in the mass range A ~ at 15 MeV/nucleon

Neutron-rich rare isotope production with stable and radioactive beams in the mass range A ~ at 15 MeV/nucleon Neutron-rich rare isotope production with stable and radioactive beams in the mass range A ~ 40-60 at 15 MeV/nucleon A. Papageorgiou 1, G.A. Soulotis 1, M. Veselsky 2, A. Bonasera 3,4 1 Laboratory of Physical

More information

Part II Particle and Nuclear Physics Examples Sheet 4

Part II Particle and Nuclear Physics Examples Sheet 4 Part II Particle and Nuclear Physics Examples Sheet 4 T. Potter Lent/Easter Terms 018 Basic Nuclear Properties 8. (B) The Semi-Empirical mass formula (SEMF) for nuclear masses may be written in the form

More information

B. Rouben McMaster University Course EP 4D03/6D03 Nuclear Reactor Analysis (Reactor Physics) 2015 Sept.-Dec.

B. Rouben McMaster University Course EP 4D03/6D03 Nuclear Reactor Analysis (Reactor Physics) 2015 Sept.-Dec. 2: Fission and Other Neutron Reactions B. Rouben McMaster University Course EP 4D03/6D03 Nuclear Reactor Analysis (Reactor Physics) 2015 Sept.-Dec. 2015 September 1 Contents Concepts: Fission and other

More information

SOURCES of RADIOACTIVITY

SOURCES of RADIOACTIVITY Section 9: SOURCES of RADIOACTIVITY This section briefly describes various sources of radioactive nuclei, both naturally occurring and those produced artificially (man-made) in, for example, reactors or

More information

Nuclear cross-section measurements at the Manuel Lujan Jr. Neutron Scattering Center. Michal Mocko

Nuclear cross-section measurements at the Manuel Lujan Jr. Neutron Scattering Center. Michal Mocko Nuclear cross-section measurements at the Manuel Lujan Jr. Neutron Scattering Center Michal Mocko G. Muhrer, F. Tovesson, J. Ullmann International Topical Meeting on Nuclear Research Applications and Utilization

More information

(10%) (c) What other peaks can appear in the pulse-height spectrum if the detector were not small? Give a sketch and explain briefly.

(10%) (c) What other peaks can appear in the pulse-height spectrum if the detector were not small? Give a sketch and explain briefly. Sample questions for Quiz 3, 22.101 (Fall 2006) Following questions were taken from quizzes given in previous years by S. Yip. They are meant to give you an idea of the kind of questions (what was expected

More information

Heavy Ions Interactions. FLUKA Beginner s Course

Heavy Ions Interactions. FLUKA Beginner s Course Heavy Ions Interactions FLUKA Beginner s Course Overview The models DPMJET RQMD BME Input options Beam definition Transport thresholds 2 Heavy ion interaction models in FLUKA - 1 E > 5 GeV/n Dual Parton

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

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

neutrons in the few kev to several MeV Neutrons are generated over a wide range of energies by a variety of different processes.

neutrons in the few kev to several MeV Neutrons are generated over a wide range of energies by a variety of different processes. Neutrons 1932: Chadwick discovers the neutron 1935: Goldhaber discovers 10 B(n,α) 7 Li reaction 1936: Locher proposes boron neutron capture as a cancer therapy 1939: Nuclear fission in 235 U induced by

More information

Measurements of liquid xenon s response to low-energy particle interactions

Measurements of liquid xenon s response to low-energy particle interactions Measurements of liquid xenon s response to low-energy particle interactions Payam Pakarha Supervised by: Prof. L. Baudis May 5, 2013 1 / 37 Outline introduction Direct Dark Matter searches XENON experiment

More information

PHYS3113, 3d year Statistical Mechanics Tutorial problems. Tutorial 1, Microcanonical, Canonical and Grand Canonical Distributions

PHYS3113, 3d year Statistical Mechanics Tutorial problems. Tutorial 1, Microcanonical, Canonical and Grand Canonical Distributions 1 PHYS3113, 3d year Statistical Mechanics Tutorial problems Tutorial 1, Microcanonical, Canonical and Grand Canonical Distributions Problem 1 The macrostate probability in an ensemble of N spins 1/2 is

More information

Average multiplicities of particles emitted in the h-a reactions

Average multiplicities of particles emitted in the h-a reactions Average multiplicities of particles emitted in the h-a reactions Aatos Heikkinen aatos.heikkinen@cern.ch Geant4 Hadronic Physics Working Group Meeting October 22, 2007 Group Meeting, October 22nd, 2007

More information

Slide 1 / 57. Nuclear Physics & Nuclear Reactions Practice Problems

Slide 1 / 57. Nuclear Physics & Nuclear Reactions Practice Problems Slide 1 / 57 Nuclear Physics & Nuclear Reactions Practice Problems Slide 2 / 57 Multiple Choice Slide 3 / 57 1 The atomic nucleus consists of: A B C D E Electrons Protons Protons and electrons Protons

More information

Nuclear contribution into single-event upset in 3D on-board electronics at moderate energy cosmic proton impact

Nuclear contribution into single-event upset in 3D on-board electronics at moderate energy cosmic proton impact Nuclear contribution into single-event upset in 3D on-board electronics at moderate energy cosmic proton impact N. G. Chechenin, T. V. Chuvilskaya and A. A. Shirokova Skobeltsyn Institute of Nuclear Physics,

More information

UGC ACADEMY LEADING INSTITUE FOR CSIR-JRF/NET, GATE & JAM PHYSICAL SCIENCE TEST SERIES # 4. Atomic, Solid State & Nuclear + Particle

UGC ACADEMY LEADING INSTITUE FOR CSIR-JRF/NET, GATE & JAM PHYSICAL SCIENCE TEST SERIES # 4. Atomic, Solid State & Nuclear + Particle UGC ACADEMY LEADING INSTITUE FOR CSIR-JRF/NET, GATE & JAM BOOKLET CODE PH PHYSICAL SCIENCE TEST SERIES # 4 Atomic, Solid State & Nuclear + Particle SUBJECT CODE 05 Timing: 3: H M.M: 200 Instructions 1.

More information

DIFFUSENESS OF WOODS SAXON POTENTIAL AND SUB-BARRIER FUSION

DIFFUSENESS OF WOODS SAXON POTENTIAL AND SUB-BARRIER FUSION Modern Physics Letters A Vol. 26, No. 28 (20) 229 234 c World Scientific Publishing Company DOI: 0.42/S0277303654 DIFFUSENESS OF WOODS SAXON POTENTIAL AND SUB-BARRIER FUSION MANJEET SINGH, SUKHVINDER S.

More information

Physic 492 Lecture 16

Physic 492 Lecture 16 Physic 492 Lecture 16 Main points of last lecture: Angular momentum dependence. Structure dependence. Nuclear reactions Q-values Kinematics for two body reactions. Main points of today s lecture: Measured

More information

Radiative-capture reactions

Radiative-capture reactions Radiative-capture reactions P. Descouvemont Physique Nucléaire Théorique et Physique Mathématique, CP229, Université Libre de Bruxelles, B1050 Bruxelles - Belgium 1. Introduction, definitions 2. Electromagnetic

More information

Interaction of Ionizing Radiation with Matter

Interaction of Ionizing Radiation with Matter Type of radiation charged particles photonen neutronen Uncharged particles Charged particles electrons (β - ) He 2+ (α), H + (p) D + (d) Recoil nuclides Fission fragments Interaction of ionizing radiation

More information

Sunday Monday Thursday. Friday

Sunday Monday Thursday. Friday Nuclear Structure III experiment Sunday Monday Thursday Low-lying excited states Collectivity and the single-particle degrees of freedom Collectivity studied in Coulomb excitation Direct reactions to study

More information

Lecture 3. Solving the Non-Relativistic Schroedinger Equation for a spherically symmetric potential

Lecture 3. Solving the Non-Relativistic Schroedinger Equation for a spherically symmetric potential Lecture 3 Last lecture we were in the middle of deriving the energies of the bound states of the Λ in the nucleus. We will continue with solving the non-relativistic Schroedinger equation for a spherically

More information

Cross-Sections for Neutron Reactions

Cross-Sections for Neutron Reactions 22.05 Reactor Physics Part Four Cross-Sections for Neutron Reactions 1. Interactions: Cross-sections deal with the measurement of interactions between moving particles and the material through which they

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

MCRT L8: Neutron Transport

MCRT L8: Neutron Transport MCRT L8: Neutron Transport Recap fission, absorption, scattering, cross sections Fission products and secondary neutrons Slow and fast neutrons Energy spectrum of fission neutrons Nuclear reactor safety

More information

Shielding Design Considerations for Proton Therapy Facilities

Shielding Design Considerations for Proton Therapy Facilities Shielding Design Considerations for Proton Therapy Facilities p p n π ± INC π 0 Nisy Elizabeth Ipe, Ph.D., C.H.P. Consultant, Shielding Design, Dosimetry & Radiation Protection San Carlos, CA, U.S.A. Email:

More information

Lewis 2.1, 2.2 and 2.3

Lewis 2.1, 2.2 and 2.3 Chapter 2(and 3) Cross-Sections TA Lewis 2.1, 2.2 and 2.3 Learning Objectives Understand different types of nuclear reactions Understand cross section behavior for different reactions Understand d resonance

More information

PhysicsAndMathsTutor.com 1

PhysicsAndMathsTutor.com 1 PhysicsAndMathsTutor.com 1 1. Describe briefly one scattering experiment to investigate the size of the nucleus of the atom. Include a description of the properties of the incident radiation which makes

More information

* On leave from FLNR / JINR, Dubna

* On leave from FLNR / JINR, Dubna * On leave from FLNR / JINR, Dubna 1 Introduction: Keywords of this experimental program Search for new isotopes The limits of nuclear stability provide a key benchmark of nuclear models The context of

More information

INCL Intra-Nuclear Cascade and ABLA De-Excitation Models in Geant4

INCL Intra-Nuclear Cascade and ABLA De-Excitation Models in Geant4 Progress in NUCLEAR SCIENCE and TECHNOLOGY, Vol., pp.7-79 (0) ARTICLE INCL Intra-Nuclear Cascade and ABLA De-Excitation Models in Geant Pekka KAITANIEMI,,, Alain BOUDARD, Sylvie LERAY, Joseph CUGNON and

More information

New theoretical insights on the physics of compound nuclei from laser-nucleus reactions

New theoretical insights on the physics of compound nuclei from laser-nucleus reactions New theoretical insights on the physics of compound nuclei from laser-nucleus reactions Adriana Pálffy Max Planck Institute for Nuclear Physics, Heidelberg, Germany Laser-Driven Radiation Sources for Nuclear

More information

Slowing down the neutrons

Slowing down the neutrons Slowing down the neutrons Clearly, an obvious way to make a reactor work, and to make use of this characteristic of the 3 U(n,f) cross-section, is to slow down the fast, fission neutrons. This can be accomplished,

More information

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

EM Physics I. Geant4 Tutorial, Marshall Space Flight Center April 2012 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 Outline EM physics assumptions and processes Physics

More information

22.54 Neutron Interactions and Applications (Spring 2004) Chapter 1 (2/3/04) Overview -- Interactions, Distributions, Cross Sections, Applications

22.54 Neutron Interactions and Applications (Spring 2004) Chapter 1 (2/3/04) Overview -- Interactions, Distributions, Cross Sections, Applications .54 Neutron Interactions and Applications (Spring 004) Chapter 1 (/3/04) Overview -- Interactions, Distributions, Cross Sections, Applications There are many references in the vast literature on nuclear

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

Nuclear and Particle Physics

Nuclear and Particle Physics Nuclear and Particle Physics W. S. С Williams Department of Physics, University of Oxford and St Edmund Hall, Oxford CLARENDON PRESS OXFORD 1991 Contents 1 Introduction 1.1 Historical perspective 1 1.2

More information

The Inverse Reaction Cross Sections for Some Charged Particles Using the Optical Model Parameters

The Inverse Reaction Cross Sections for Some Charged Particles Using the Optical Model Parameters Available online at www.worldscientificnews.com WSN 28 (216) 113-124 EISSN 2392-2192 The Inverse Reaction Cross Sections for Some Charged Particles Using the Optical Model Parameters Dr. Rasha S. Ahmed

More information

Nuclear Reactions and Astrophysics: a (Mostly) Qualitative Introduction

Nuclear Reactions and Astrophysics: a (Mostly) Qualitative Introduction Nuclear Reactions and Astrophysics: a (Mostly) Qualitative Introduction Barry Davids, TRIUMF Key Concepts Lecture 2013 Introduction To observe the nucleus, we must use radiation with a (de Broglie) wavelength

More information

Overview of Ion Physics and Requirements for Space Applications

Overview of Ion Physics and Requirements for Space Applications Overview of Ion Physics and Requirements for Space Applications Aero Pete Truscott, Fan Lei, Ana Keating, Laurent Desorgher, Bart Quaghebeur QinetiQ Ltd, Farnborough; LIP, Lisbon; SpaceIT, Bern; BIRA,

More information

Upcoming features in Serpent photon transport mode

Upcoming features in Serpent photon transport mode Upcoming features in Serpent photon transport mode Toni Kaltiaisenaho VTT Technical Research Centre of Finland Serpent User Group Meeting 2018 1/20 Outline Current photoatomic physics in Serpent Photonuclear

More information

Analysis of various projectile interactions with Nuclear Emulsion Detector nuclei at ~ 1 GeV per nucleon using Coulomb modified Glauber model

Analysis of various projectile interactions with Nuclear Emulsion Detector nuclei at ~ 1 GeV per nucleon using Coulomb modified Glauber model Analysis of various projectile interactions with Nuclear Emulsion Detector nuclei at ~ 1 GeV per nucleon using Coulomb modified Glauber model N. Marimuthu 1,, V. Singh 1 *, S. S. R. Inbanathan * 1 Department

More information

Physics 3204 UNIT 3 Test Matter Energy Interface

Physics 3204 UNIT 3 Test Matter Energy Interface Physics 3204 UNIT 3 Test Matter Energy Interface 2005 2006 Time: 60 minutes Total Value: 33 Marks Formulae and Constants v = f λ E = hf h f = E k + W 0 E = m c 2 p = h λ 1 A= A T 0 2 t 1 2 E k = ½ mv 2

More information

Nuclear Physics and Astrophysics

Nuclear Physics and Astrophysics Nuclear Physics and Astrophysics PHY-30 Dr. E. Rizvi Lecture 5 - Quantum Statistics & Kinematics Nuclear Reaction Types Nuclear reactions are often written as: a+x Y+b for accelerated projectile a colliding

More information

Compound and heavy-ion reactions

Compound and heavy-ion reactions Compound and heavy-ion reactions Introduction to Nuclear Science Simon Fraser University Spring 2011 NUCS 342 March 23, 2011 NUCS 342 (Lecture 24) March 23, 2011 1 / 32 Outline 1 Density of states in a

More information