Enrico Fermi and the FERMIAC. Mechanical device that plots 2D random walks of slow and fast neutrons in fissile material

Size: px
Start display at page:

Download "Enrico Fermi and the FERMIAC. Mechanical device that plots 2D random walks of slow and fast neutrons in fissile material"

Transcription

1 Monte Carlo History Statistical sampling Buffon s needles and estimates of π 1940s: neutron transport in fissile material Origin of name People: Ulam, von Neuman, Metropolis, Teller Other areas of use: population growth, statistics, finance anywhere where the occurrence of events can be described with a probability distribution function

2 Brief History Buffon s needles first Monte Carlo simulation Statistical sampling draw conclusions on an entire population by conducting a study on a small subset of the population. Used in maths since 1800s, but slow before computers. Lord Kelvin studied kinetic theory using random sampling to evaluate integrals. Generated random numbers by pulling pieces of paper from a jar. Fission of 235 U by neutrons discovered in 1938, possibility of chain reactions for power and explosives Enrico Fermi developed mechanical machine, the FERMIAC, to simulate neutron random walks

3 Enrico Fermi and the FERMIAC Mechanical device that plots 2D random walks of slow and fast neutrons in fissile material

4 Los Alamos Development of computers from the 1940s made Monte Carlo practical the ENIAC, MANIAC, etc Ideas from Metropolis, Ulam, von Neumann, Teller developed for neutron propagation

5 No whining about fortran!!!! Stan Ulam with the FERMIAC The ENIAC Electronic Numerical Integrator and Computer MANIAC: Mathematical Analyzer Numerical Integrator and Computer

6 Stan Ulam had ideas on numerical simulations when he was ill and playing solitaire (patience) Technique given name by Nick Metropolis First declassified paper published in 1949 by Metropolis & Ulam: The Monte Carlo Method

7 Los Alamos Computational cost of calculating trigonometric and exponential functions led to very elegant techniques and efficient ways for sampling from probability distribution functions, e.g., replacing computation of trigonometric functions with ratios Will show some examples of these techniques in a later lecture

8 Throwing dice Random number generator gives ξ i in range (0,1) ran = ξ * 6. if (ran.lt. 1.) then dice = 1 elseif(ran.lt. 2.) then dice = 2 elseif etc, etc endif

9 Monte Carlo integration Use the relation: I = a b f (x) dx = (b a) f Generate n random values x i = a + ξ i (b - a), compute f(x i ) to give: f = 1 n n i=1 f (x i ) Estimate integral: I = (b a) n n i=1 f (x i ) This is brute force Monte Carlo Variance reduction techniques algorithms for reducing variance in estimate of I

10 Radiation transport: What happens? Photons emitted, travel some distance, interact with material Scattered, absorbed, re-emitted Photon interactions heat material; change level populations of atoms, ions, molecules; alter ionization balance and hence change opacity If medium in hydrostatic equilibrium: density structure related to temperature structure Density structure may depend on radiation field and vice versa radiation hydrodynamics

11 Monte Carlo Radiation Transport Emit from location (x, y, z) in direction n = (n x, n y, n z ) z n n x = sinθ cosφ x φ θ y Particle (photon, neutron, electron, etc) travels a distance before it interacts function of particle energy, geometry, density structure, and composition of the medium Interaction occurs: n y = sinθ sinφ n z = cosθ Scattering: change direction and possibly energy Absorption: deposit energy, emit new particle Fission: produce secondary neutrons and photons

12 Monte Carlo Radiation Transport Example of electron transport in fayalite (Fe 2 SiO 4 )

13 Monte Carlo Radiation Transport Photon transport through skin around a blood vessel mcxyz.c by Steve Jacques

14 Monte Carlo Radiation Transport Need probability distribution functions to describe: Emission location: point sources, extended volume emission (e.g., in astronomy can approximate stars as points, extended emission from gaseous nebulae) Emission direction: isotropic, beamed or collimated Interaction cross sections probability for a particular type of interaction to occur Scattering: isotropic (neutrons), non isotropic (dust, clouds, electrons, skin)

15 Monte Carlo Radiation Transport Generate lots of particles and follow their random walks not practical to store all information as we want quantities to compare to measurement: fluxes, pressure, temperatures, etc Monte Carlo detectors and estimators for mean intensities, fluxes, radiation pressure, heating and ionization rates, number of fissions, etc Not solving equation of radiation transport, but performing a numerical simulation of the transport processes and interactions Sample from probability distribution functions that describe the processes, so need a good random number generator

16 How far can we get without these? Equation of radiation transfer: 1 c t I ν + Ω.. I ν + ( k ν,s + k ) ν,a I ν = j ν π c k ν,s I ν dω Ω Boltzmann transport equation: f t + p m f. f + F. p = $ & f % t ' ) ( collisions

17 Your first Monte Carlo code: Estimate π using rejection method 2 R FORTRAN: Pick N random positions (x i, y i ): x i in range [-R, R]: x i = (2ξ - 1) R y i in range [-R, R]: y i = (2ξ - 1) R Reject (x i, y i ) if x i 2 + y i 2 > R 2 Number accepted / N = π R 2 / 4R 2 N A / N = π / 4 Increase accuracy: large N do i = 1, N x = 2.*ran 1. y = 2.*ran 1. if ( (x*x + y*y).lt. 1. ) NA = NA + 1 end do pi = 4.*NA / N

Monte Carlo Sampling

Monte Carlo Sampling Monte Carlo Sampling Sampling from PDFs: given F(x) in analytic or tabulated form, generate a random number ξ in the range (0,1) and solve the equation to get the randomly sampled value X X ξ = F(x)dx

More information

Monte Carlo Radiation Transfer I

Monte Carlo Radiation Transfer I Monte Carlo Radiation Transfer I Monte Carlo Photons and interactions Sampling from probability distributions Optical depths, isotropic emission, scattering Monte Carlo Basics Emit energy packet, hereafter

More information

MCRT: L4 A Monte Carlo Scattering Code

MCRT: L4 A Monte Carlo Scattering Code MCRT: L4 A Monte Carlo Scattering Code Plane parallel scattering slab Optical depths & physical distances Emergent flux & intensity Internal intensity moments Constant density slab, vertical optical depth

More information

MCRT L10: Scattering and clarification of astronomy/medical terminology

MCRT L10: Scattering and clarification of astronomy/medical terminology MCRT L10: Scattering and clarification of astronomy/medical terminology What does the scattering? Shape of scattering Sampling from scattering phase functions Co-ordinate frames Refractive index changes

More information

Stars AS4023: Stellar Atmospheres (13) Stellar Structure & Interiors (11)

Stars AS4023: Stellar Atmospheres (13) Stellar Structure & Interiors (11) Stars AS4023: Stellar Atmospheres (13) Stellar Structure & Interiors (11) Kenneth Wood, Room 316 kw25@st-andrews.ac.uk http://www-star.st-and.ac.uk/~kw25 What is a Stellar Atmosphere? Transition from dense

More information

MCRT L9: Neutron Transport

MCRT L9: Neutron Transport MCRT L9: Neutron Transport Outline of code for mono-energetic particles, if change particle energy must change cross sections Bank locations of fission neutrons for subsequent generations Criticality calculations,

More information

Monte Carlo Radiation Transport Kenny Wood

Monte Carlo Radiation Transport Kenny Wood MCRT: L0 Some background, what previous courses students should look over, gentle introduction/recap of probabilities Get an idea of computer programming experience of the class Overview of course structure

More information

Monte Carlo Radiation Transport Kenny Wood

Monte Carlo Radiation Transport Kenny Wood Monte Carlo Radiation Transport Kenny Wood kw25@st-andrews.ac.uk A practical approach to the numerical simulation of radiation transport Develop programs for the random walks of photons and neutrons using

More information

Introduction to Machine Learning CMU-10701

Introduction to Machine Learning CMU-10701 Introduction to Machine Learning CMU-10701 Markov Chain Monte Carlo Methods Barnabás Póczos Contents Markov Chain Monte Carlo Methods Sampling Rejection Importance Hastings-Metropolis Gibbs Markov Chains

More information

Mean Intensity. Same units as I ν : J/m 2 /s/hz/sr (ergs/cm 2 /s/hz/sr) Function of position (and time), but not direction

Mean Intensity. Same units as I ν : J/m 2 /s/hz/sr (ergs/cm 2 /s/hz/sr) Function of position (and time), but not direction MCRT: L5 MCRT estimators for mean intensity, absorbed radiation, radiation pressure, etc Path length sampling: mean intensity, fluence rate, number of absorptions Random number generators J Mean Intensity

More information

Reflection Nebulae: can reflections from grains diagnose albedo?

Reflection Nebulae: can reflections from grains diagnose albedo? Why are you here? Use existing Monte Carlo codes to model data sets set up source locations & luminosities, change density structure, get images and spectra to compare with observations Learn techniques

More information

Opacity and Optical Depth

Opacity and Optical Depth Opacity and Optical Depth Absorption dominated intensity change can be written as di λ = κ λ ρ I λ ds with κ λ the absorption coefficient, or opacity The initial intensity I λ 0 of a light beam will be

More information

Lecture #8. Light-matter interaction. Kirchoff s laws

Lecture #8. Light-matter interaction. Kirchoff s laws 1 Lecture #8 Light-matter interaction Kirchoff s laws 2 Line emission/absorption Atoms: release and absorb photons with a predefined set of energies (discrete). The number of protons determine the chemical

More information

Monte Carlo Methods in High Energy Physics I

Monte Carlo Methods in High Energy Physics I Helmholtz International Workshop -- CALC 2009, July 10--20, Dubna Monte Carlo Methods in High Energy Physics CALC2009 - July 20 10, Dubna 2 Contents 3 Introduction Simple definition: A Monte Carlo technique

More information

Topics ASTR 3730: Fall 2003

Topics ASTR 3730: Fall 2003 Topics Qualitative questions: might cover any of the main topics (since 2nd midterm: star formation, extrasolar planets, supernovae / neutron stars, black holes). Quantitative questions: worthwhile to

More information

Radioactivity. L 38 Modern Physics [4] Hazards of radiation. Nuclear Reactions and E = mc 2 Einstein: a little mass goes a long way

Radioactivity. L 38 Modern Physics [4] Hazards of radiation. Nuclear Reactions and E = mc 2 Einstein: a little mass goes a long way L 38 Modern Physics [4] Nuclear physics what s inside the nucleus and what holds it together what is radioactivity, halflife carbon dating Nuclear energy nuclear fission nuclear fusion nuclear reactors

More information

energy loss Ionization + excitation of atomic energy levels Mean energy loss rate de /dx proportional to (electric charge) 2 of incident particle

energy loss Ionization + excitation of atomic energy levels Mean energy loss rate de /dx proportional to (electric charge) 2 of incident particle Lecture 4 Particle physics processes - particles are small, light, energetic à processes described by quantum mechanics and relativity à processes are probabilistic, i.e., we cannot know the outcome of

More information

Nuclear Reactions and E = mc 2. L 38 Modern Physics [4] Hazards of radiation. Radiation sickness. Biological effects of nuclear radiation

Nuclear Reactions and E = mc 2. L 38 Modern Physics [4] Hazards of radiation. Radiation sickness. Biological effects of nuclear radiation L 38 Modern Physics [4] Nuclear physics what s s inside the nucleus and what holds it together what is radioactivity, halflife carbon dating Nuclear energy nuclear fission nuclear fusion nuclear reactors

More information

Monte Carlo sampling. FLUKA Beginner s Course

Monte Carlo sampling. FLUKA Beginner s Course Monte Carlo sampling FLUKA Beginner s Course Overview: General concepts: Phase space Monte Carlo foundations Simulation vs. integration Sampling techniques discrete by inversion by rejection Results and

More information

ASTR-1010: Astronomy I Course Notes Section IV

ASTR-1010: Astronomy I Course Notes Section IV ASTR-1010: Astronomy I Course Notes Section IV Dr. Donald G. Luttermoser Department of Physics and Astronomy East Tennessee State University Edition 2.0 Abstract These class notes are designed for use

More information

Theory of optically thin emission line spectroscopy

Theory of optically thin emission line spectroscopy Theory of optically thin emission line spectroscopy 1 Important definitions In general the spectrum of a source consists of a continuum and several line components. Processes which give raise to the continuous

More information

Lecture 06. Fundamentals of Lidar Remote Sensing (4) Physical Processes in Lidar

Lecture 06. Fundamentals of Lidar Remote Sensing (4) Physical Processes in Lidar Lecture 06. Fundamentals of Lidar Remote Sensing (4) Physical Processes in Lidar Physical processes in lidar (continued) Doppler effect (Doppler shift and broadening) Boltzmann distribution Reflection

More information

Monte Carlo Methods. Part I: Introduction

Monte Carlo Methods. Part I: Introduction Monte Carlo Methods Part I: Introduction Spring Semester 2013/14 Department of Applied Mathematics, University of Crete Instructor: Harmandaris Vagelis, email: vagelis@tem.uoc.gr Course web page: http://www.tem.uoc.gr/~vagelis/courses/em385/

More information

Beer-Lambert (cont.)

Beer-Lambert (cont.) The Beer-Lambert Law: Optical Depth Consider the following process: F(x) Absorbed flux df abs F(x + dx) Scattered flux df scat x x + dx The absorption or scattering of radiation by an optically active

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

Card #1/28. Card #2/28. Science Revision P2. Science Revision P2. Science Revision P2. Card #4/28. Topic: F = ma. Topic: Resultant Forces

Card #1/28. Card #2/28. Science Revision P2. Science Revision P2. Science Revision P2. Card #4/28. Topic: F = ma. Topic: Resultant Forces Card #1/28 Card #2/28 Topic: Resultant Forces Topic: F = ma Topic: Distance-TIme Graphs Card #3/28 Card #4/28 Topic: Velocity-Time Graphs Card #2/28 Card #1/28 Card #4/28 Card #3/28 Card #5/28 Card #6/28

More information

Lecture 3: Specific Intensity, Flux and Optical Depth

Lecture 3: Specific Intensity, Flux and Optical Depth Lecture 3: Specific Intensity, Flux and Optical Depth We begin a more detailed look at stellar atmospheres by defining the fundamental variable, which is called the Specific Intensity. It may be specified

More information

PhD Qualifying Exam Nuclear Engineering Program. Part 1 Core Courses

PhD Qualifying Exam Nuclear Engineering Program. Part 1 Core Courses PhD Qualifying Exam Nuclear Engineering Program Part 1 Core Courses 9:00 am 12:00 noon, November 19, 2016 (1) Nuclear Reactor Analysis During the startup of a one-region, homogeneous slab reactor of size

More information

Brief Introduction to: Transport Theory/Monte Carlo Techniques/MCNP

Brief Introduction to: Transport Theory/Monte Carlo Techniques/MCNP 22:54 Neutron Interactions and Applications Brief Introduction to: Transport Theory/Monte Carlo Techniques/MCNP The behavior of individual neutrons and nuclei cannot be predicted. However, the average

More information

Interaction theory Photons. Eirik Malinen

Interaction theory Photons. Eirik Malinen Interaction theory Photons Eirik Malinen Introduction Interaction theory Dosimetry Radiation source Ionizing radiation Atoms Ionizing radiation Matter - Photons - Charged particles - Neutrons Ionizing

More information

Monte Carlo Methods:

Monte Carlo Methods: Short Course on Computational Monte Carlo Methods: Fundamentals Shuang Zhao Assistant Professor Computer Science Department University of California, Irvine Shuang Zhao 1 Teaching Objective Introducing

More information

Chapter 9. The Formation and Structure of Stars

Chapter 9. The Formation and Structure of Stars Chapter 9 The Formation and Structure of Stars The Interstellar Medium (ISM) The space between the stars is not completely empty, but filled with very dilute gas and dust, producing some of the most beautiful

More information

Addition of Opacities and Absorption

Addition of Opacities and Absorption Addition of Opacities and Absorption If the only way photons could interact was via simple scattering, there would be no blackbodies. We ll go into that in much more detail in the next lecture, but the

More information

Markov chain Monte Carlo

Markov chain Monte Carlo Markov chain Monte Carlo Peter Beerli October 10, 2005 [this chapter is highly influenced by chapter 1 in Markov chain Monte Carlo in Practice, eds Gilks W. R. et al. Chapman and Hall/CRC, 1996] 1 Short

More information

2. NOTES ON RADIATIVE TRANSFER The specific intensity I ν

2. NOTES ON RADIATIVE TRANSFER The specific intensity I ν 1 2. NOTES ON RADIATIVE TRANSFER 2.1. The specific intensity I ν Let f(x, p) be the photon distribution function in phase space, summed over the two polarization states. Then fdxdp is the number of photons

More information

Astro 305 Lecture Notes Wayne Hu

Astro 305 Lecture Notes Wayne Hu Astro 305 Lecture Notes Wayne Hu Set 1: Radiative Transfer Radiation Observables From an empiricist s point of view there are 4 observables for radiation Energy Flux Direction Color Polarization Energy

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

Applied Nuclear Physics (Fall 2006) Lecture 19 (11/22/06) Gamma Interactions: Compton Scattering

Applied Nuclear Physics (Fall 2006) Lecture 19 (11/22/06) Gamma Interactions: Compton Scattering .101 Applied Nuclear Physics (Fall 006) Lecture 19 (11//06) Gamma Interactions: Compton Scattering References: R. D. Evans, Atomic Nucleus (McGraw-Hill New York, 1955), Chaps 3 5.. W. E. Meyerhof, Elements

More information

Monte Carlo programs

Monte Carlo programs Monte Carlo programs Alexander Khanov PHYS6260: Experimental Methods is HEP Oklahoma State University November 13, 2017 Monte Carlo methods: the idea In classical physics, if we need to measure something

More information

PHYS 5020 Computation and Image Processing

PHYS 5020 Computation and Image Processing PHYS 5020 and Image Processing : Monte Carlo Thursday 2 August 2012 Monte Carlo (MC) is a numerical method that uses random sampling of probability distributions to simulate stochastic processes in nature,

More information

Radiation in the atmosphere

Radiation in the atmosphere Radiation in the atmosphere Flux and intensity Blackbody radiation in a nutshell Solar constant Interaction of radiation with matter Absorption of solar radiation Scattering Radiative transfer Irradiance

More information

Basics of Monte Carlo Simulation

Basics of Monte Carlo Simulation Basics of Monte Carlo Simulation condensed from a presentation by M. Asai Dennis Wright Geant4 Tutorial at Lund University 3 September 2018 Contents Historical review of Monte Carlo methods Basics of Monte

More information

Monte Carlo Methods for Computation and Optimization (048715)

Monte Carlo Methods for Computation and Optimization (048715) Technion Department of Electrical Engineering Monte Carlo Methods for Computation and Optimization (048715) Lecture Notes Prof. Nahum Shimkin Spring 2015 i PREFACE These lecture notes are intended for

More information

Overview of Astronomical Concepts III. Stellar Atmospheres; Spectroscopy. PHY 688, Lecture 5 Stanimir Metchev

Overview of Astronomical Concepts III. Stellar Atmospheres; Spectroscopy. PHY 688, Lecture 5 Stanimir Metchev Overview of Astronomical Concepts III. Stellar Atmospheres; Spectroscopy PHY 688, Lecture 5 Stanimir Metchev Outline Review of previous lecture Stellar atmospheres spectral lines line profiles; broadening

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

MONTE CARLO METHODS. Hedibert Freitas Lopes

MONTE CARLO METHODS. Hedibert Freitas Lopes MONTE CARLO METHODS Hedibert Freitas Lopes The University of Chicago Booth School of Business 5807 South Woodlawn Avenue, Chicago, IL 60637 http://faculty.chicagobooth.edu/hedibert.lopes hlopes@chicagobooth.edu

More information

Physics 736. Experimental Methods in Nuclear-, Particle-, and Astrophysics. - Brief Review of Course -

Physics 736. Experimental Methods in Nuclear-, Particle-, and Astrophysics. - Brief Review of Course - Physics 736 Experimental Methods in Nuclear-, Particle-, and Astrophysics - Brief Review of Course - Karsten Heeger heeger@wisc.edu Final Course Presentation Date/Time for Presentations: Friday, May 11,

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

Order of Magnitude Astrophysics - a.k.a. Astronomy 111. Photon Opacities in Matter

Order of Magnitude Astrophysics - a.k.a. Astronomy 111. Photon Opacities in Matter 1 Order of Magnitude Astrophysics - a.k.a. Astronomy 111 Photon Opacities in Matter If the cross section for the relevant process that scatters or absorbs radiation given by σ and the number density of

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

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

Light carries energy. Lecture 5 Understand Light. Is light. Light as a Particle. ANSWER: Both.

Light carries energy. Lecture 5 Understand Light. Is light. Light as a Particle. ANSWER: Both. Light carries energy Lecture 5 Understand Light Reading: Chapter 6 You feel energy carried by light when light hits your skin. Energy Conservation: Radiation energy will be given to molecules making your

More information

Chemical Engineering 412

Chemical Engineering 412 Chemical Engineering 412 Introductory Nuclear Engineering Exam 1 Review 1 Chapter 1 - Fundamentals 2 Nuclear units Elementary particles/particle physics Isotopic nomenclature Atomic weight/number density

More information

The Birth Of Stars. How do stars form from the interstellar medium Where does star formation take place How do we induce star formation

The Birth Of Stars. How do stars form from the interstellar medium Where does star formation take place How do we induce star formation Goals: The Birth Of Stars How do stars form from the interstellar medium Where does star formation take place How do we induce star formation Interstellar Medium Gas and dust between stars is the interstellar

More information

The Monte Carlo Method in Medical Radiation Physics

The Monte Carlo Method in Medical Radiation Physics Monte Carlo in Medical Physics The Monte Carlo Method in Medical Radiation Physics P Andreo, Professor of Medical Radiation Physics Stockholm University @ Karolinska Univ Hospital, Stockholm, Sweden ICRM

More information

An introduction to Monte Carlo methods in XRF analysis. Tom Schoonjans Joint ICTP-IAEA school, Trieste

An introduction to Monte Carlo methods in XRF analysis. Tom Schoonjans Joint ICTP-IAEA school, Trieste An introduction to Monte Carlo methods in XRF analysis Tom Schoonjans Joint ICTP-IAEA school, Trieste Outline 1. Introduction to Monte Carlo methods 2. Monte Carlo simulation of energy dispersive X-ray

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

Copyright 2001 University of Cambridge. Not to be quoted or copied without permission.

Copyright 2001 University of Cambridge. Not to be quoted or copied without permission. Course MP3 Lecture 4 13/11/2006 Monte Carlo method I An introduction to the use of the Monte Carlo method in materials modelling Dr James Elliott 4.1 Why Monte Carlo? The name derives from the association

More information

Atoms and Star Formation

Atoms and Star Formation Atoms and Star Formation What are the characteristics of an atom? Atoms have a nucleus of protons and neutrons about which electrons orbit. neutrons protons electrons 0 charge +1 charge 1 charge 1.67 x

More information

Science 30 Unit C Review Outline GCCHS. Negatively charged Positively charged Coulomb Conductor Electric potential difference

Science 30 Unit C Review Outline GCCHS. Negatively charged Positively charged Coulomb Conductor Electric potential difference Science 30 Unit C Review Outline GCCHS Negatively charged Positively charged Coulomb Conductor Electric potential difference volt voltage Insulator Test body Gravitational field Field lines Solar wind

More information

Lecture notes on Regression: Markov Chain Monte Carlo (MCMC)

Lecture notes on Regression: Markov Chain Monte Carlo (MCMC) Lecture notes on Regression: Markov Chain Monte Carlo (MCMC) Dr. Veselina Kalinova, Max Planck Institute for Radioastronomy, Bonn Machine Learning course: the elegant way to extract information from data,

More information

Notes on x-ray scattering - M. Le Tacon, B. Keimer (06/2015)

Notes on x-ray scattering - M. Le Tacon, B. Keimer (06/2015) Notes on x-ray scattering - M. Le Tacon, B. Keimer (06/2015) Interaction of x-ray with matter: - Photoelectric absorption - Elastic (coherent) scattering (Thomson Scattering) - Inelastic (incoherent) scattering

More information

X Rays must be viewed from space used for detecting exotic objects such as neutron stars and black holes also observing the Sun.

X Rays must be viewed from space used for detecting exotic objects such as neutron stars and black holes also observing the Sun. 6/25 How do we get information from the telescope? 1. Galileo drew pictures. 2. With the invention of photography, we began taking pictures of the view in the telescope. With telescopes that would rotate

More information

JOURNAL OF THE AMERICAN STATISTICAL ASSOCIATION

JOURNAL OF THE AMERICAN STATISTICAL ASSOCIATION The Monte Carlo Method Author(s): Nicholas Metropolis and S. Ulam Reviewed work(s): Source: Journal of the American Statistical Association, Vol. 44, No. 247 (Sep., 1949), pp. 335-341 Published by: American

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

Monte Carlo Methods in Reactor Physics

Monte Carlo Methods in Reactor Physics UNIVERSITY OF LJUBLJANA Faculty of Mathematics and Physics Department of Physics Seminar on Monte Carlo Methods in Reactor Physics Author: Andrej Kavčič Mentor: prof. dr. Matjaž Ravnik Ljubljana, January

More information

Metropolis/Variational Monte Carlo. Microscopic Theories of Nuclear Structure, Dynamics and Electroweak Currents June 12-30, 2017, ECT*, Trento, Italy

Metropolis/Variational Monte Carlo. Microscopic Theories of Nuclear Structure, Dynamics and Electroweak Currents June 12-30, 2017, ECT*, Trento, Italy Metropolis/Variational Monte Carlo Stefano Gandolfi Los Alamos National Laboratory (LANL) Microscopic Theories of Nuclear Structure, Dynamics and Electroweak Currents June 12-30, 2017, ECT*, Trento, Italy

More information

Radiation Transport Calculations by a Monte Carlo Method. Hideo Hirayama and Yoshihito Namito KEK, High Energy Accelerator Research Organization

Radiation Transport Calculations by a Monte Carlo Method. Hideo Hirayama and Yoshihito Namito KEK, High Energy Accelerator Research Organization Radiation Transport Calculations by a Monte Carlo Method Hideo Hirayama and Yoshihito Namito KEK, High Energy Accelerator Research Organization Monte Carlo Method A method used to solve a problem with

More information

Astronomy 1 Winter 2011

Astronomy 1 Winter 2011 Astronomy 1 Winter 2011 Lecture 8; January 24 2011 Previously on Astro 1 Light as a wave The Kelvin Temperature scale What is a blackbody? Wien s law: λ max (in meters) = (0.0029 K m)/t. The Stefan-Boltzmann

More information

Light & Atoms. Electromagnetic [EM] Waves. Light and several other forms of radiation are called electromagnetic waves or electromagnetic radiation.

Light & Atoms. Electromagnetic [EM] Waves. Light and several other forms of radiation are called electromagnetic waves or electromagnetic radiation. Light & Atoms Electromagnetic [EM] Waves Light and several other forms of radiation are called electromagnetic waves or electromagnetic radiation. These have both and electric part and a magnetic part

More information

Radiative transfer in planetary atmospheres

Radiative transfer in planetary atmospheres Chapter 9 Radiative transfer in planetary atmospheres Warning: This chapter is just a very rough introduction to planetary atmospheres. Since the discovery of planets around other stars than the sun, the

More information

Light and Matter(LC)

Light and Matter(LC) Light and Matter(LC) Every astronomy book that I ve seen has at least one chapter dedicated to the physics of light. Why are astronomers so interested in light? Everything* that we know about Astronomical

More information

PHY-105: Nuclear Reactions in Stars (continued)

PHY-105: Nuclear Reactions in Stars (continued) PHY-105: Nuclear Reactions in Stars (continued) Recall from last lecture that the nuclear energy generation rate for the PP reactions (that main reaction chains that convert hyogen to helium in stars similar

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

Electromagnetic Spectra. AST443, Lecture 13 Stanimir Metchev

Electromagnetic Spectra. AST443, Lecture 13 Stanimir Metchev Electromagnetic Spectra AST443, Lecture 13 Stanimir Metchev Administrative Homework 2: problem 5.4 extension: until Mon, Nov 2 Reading: Bradt, chapter 11 Howell, chapter 6 Tenagra data: see bottom of Assignments

More information

Laser Beam Interactions with Solids In absorbing materials photons deposit energy hc λ. h λ. p =

Laser Beam Interactions with Solids In absorbing materials photons deposit energy hc λ. h λ. p = Laser Beam Interactions with Solids In absorbing materials photons deposit energy E = hv = hc λ where h = Plank's constant = 6.63 x 10-34 J s c = speed of light Also photons also transfer momentum p p

More information

Chapter V: Cavity theories

Chapter V: Cavity theories Chapter V: Cavity theories 1 Introduction Goal of radiation dosimetry: measure of the dose absorbed inside a medium (often assimilated to water in calculations) A detector (dosimeter) never measures directly

More information

Radiation safety of the Danish Center for Proton Therapy (DCPT) Lars Hjorth Præstegaard Dept. of Medical Physics, Aarhus University Hospital

Radiation safety of the Danish Center for Proton Therapy (DCPT) Lars Hjorth Præstegaard Dept. of Medical Physics, Aarhus University Hospital Radiation safety of the Danish Center for Proton Therapy (DCPT) Lars Hjorth Præstegaard Dept. of Medical Physics, Aarhus University Hospital Rationale of proton therapy Dose deposition versus depth in

More information

1. Why photons? 2. Photons in a vacuum

1. Why photons? 2. Photons in a vacuum Photons and Other Messengers 1. Why photons? Ask class: most of our information about the universe comes from photons. What are the reasons for this? Let s compare them with other possible messengers,

More information

Interstellar Medium Physics

Interstellar Medium Physics Physics of gas in galaxies. Two main parts: atomic processes & hydrodynamic processes. Atomic processes deal mainly with radiation Hydrodynamics is large scale dynamics of gas. Start small Radiative transfer

More information

Radiation Detection for the Beta- Delayed Alpha and Gamma Decay of 20 Na. Ellen Simmons

Radiation Detection for the Beta- Delayed Alpha and Gamma Decay of 20 Na. Ellen Simmons Radiation Detection for the Beta- Delayed Alpha and Gamma Decay of 20 Na Ellen Simmons 1 Contents Introduction Review of the Types of Radiation Charged Particle Radiation Detection Review of Semiconductor

More information

Chapter 11 The Formation of Stars

Chapter 11 The Formation of Stars Chapter 11 The Formation of Stars A World of Dust The space between the stars is not completely empty, but filled with very dilute gas and dust, producing some of the most beautiful objects in the sky.

More information

If light travels past a system faster than the time scale for which the system evolves then t I ν = 0 and we have then

If light travels past a system faster than the time scale for which the system evolves then t I ν = 0 and we have then 6 LECTURE 2 Equation of Radiative Transfer Condition that I ν is constant along rays means that di ν /dt = 0 = t I ν + ck I ν, (29) where ck = di ν /ds is the ray-path derivative. This is equation is the

More information

Statistical Methods in Particle Physics

Statistical Methods in Particle Physics Statistical Methods in Particle Physics 4. Monte Carlo Methods Prof. Dr. Klaus Reygers (lectures) Dr. Sebastian Neubert (tutorials) Heidelberg University WS 2017/18 Monte Carlo Method Any method which

More information

I, at any rate, am convinced that He does not throw dice. Albert Einstein

I, at any rate, am convinced that He does not throw dice. Albert Einstein Monte Carlo Methods I, at any rate, am convinced that He does not throw dice. Albert Einstein Fall 2010 1 Pseudo Random Numbers: 1/3 Random numbers are numbers occur in a random way. If they are generated

More information

Lecture 12. Measurements in Astronomy. Using Light. ASTR 111 Section 002. In astronomy, we need to make remote and indirect measurements

Lecture 12. Measurements in Astronomy. Using Light. ASTR 111 Section 002. In astronomy, we need to make remote and indirect measurements Lecture 12 ASTR 111 Section 002 Measurements in Astronomy In astronomy, we need to make remote and indirect measurements Think of an example of a remote and indirect measurement from everyday life Using

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

Bremsstrahlung Radiation

Bremsstrahlung Radiation Bremsstrahlung Radiation Wise (IR) An Example in Everyday Life X-Rays used in medicine (radiographics) are generated via Bremsstrahlung process. In a nutshell: Bremsstrahlung radiation is emitted when

More information

Ay Fall 2004 Lecture 6 (given by Tony Travouillon)

Ay Fall 2004 Lecture 6 (given by Tony Travouillon) Ay 122 - Fall 2004 Lecture 6 (given by Tony Travouillon) Stellar atmospheres, classification of stellar spectra (Many slides c/o Phil Armitage) Formation of spectral lines: 1.excitation Two key questions:

More information

Detectors in Nuclear Physics: Monte Carlo Methods. Dr. Andrea Mairani. Lectures I-II

Detectors in Nuclear Physics: Monte Carlo Methods. Dr. Andrea Mairani. Lectures I-II Detectors in Nuclear Physics: Monte Carlo Methods Dr. Andrea Mairani Lectures I-II INTRODUCTION Sampling from a probability distribution Sampling from a probability distribution X λ Sampling from a probability

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

11/19/08. Gravitational equilibrium: The outward push of pressure balances the inward pull of gravity. Weight of upper layers compresses lower layers

11/19/08. Gravitational equilibrium: The outward push of pressure balances the inward pull of gravity. Weight of upper layers compresses lower layers Gravitational equilibrium: The outward push of pressure balances the inward pull of gravity Weight of upper layers compresses lower layers Gravitational equilibrium: Energy provided by fusion maintains

More information

Which picture shows the larger flux of blue circles?

Which picture shows the larger flux of blue circles? Which picture shows the larger flux of blue circles? 33% 33% 33% 1. Left 2. Right 3. Neither Left Right Neither This Week: Global Climate Model Pt. 1 Reading: Chapter 3 Another Problem Set Coming Towards

More information

Q1. Describe, in as much detail as you can, the life history of a star like our Sun

Q1. Describe, in as much detail as you can, the life history of a star like our Sun Q1. Describe, in as much detail as you can, the life history of a star like our Sun..................................... (Total 6 marks) Q2. The energy radiated by a main sequence star like the Sun is

More information

Electrodynamics of Radiation Processes

Electrodynamics of Radiation Processes Electrodynamics of Radiation Processes 7. Emission from relativistic particles (contd) & Bremsstrahlung http://www.astro.rug.nl/~etolstoy/radproc/ Chapter 4: Rybicki&Lightman Sections 4.8, 4.9 Chapter

More information

PHAS3135 The Physics of Stars

PHAS3135 The Physics of Stars PHAS3135 The Physics of Stars Exam 2013 (Zane/Howarth) Answer ALL SIX questions from Section A, and ANY TWO questions from Section B The numbers in square brackets in the right-hand margin indicate the

More information

Reactor Physics: Basic Definitions and Perspectives. Table of Contents

Reactor Physics: Basic Definitions and Perspectives. Table of Contents Reactor Physics - Basic Definitions and Perspectives Reactor Physics: Basic Definitions and Perspectives prepared by Wm. J. Garland, Professor, Department of Engineering Physics, McMaster University, Hamilton,

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

Spectroscopy Lecture 2

Spectroscopy Lecture 2 Spectroscopy Lecture 2 I. Atomic excitation and ionization II. Radiation Terms III. Absorption and emission coefficients IV. Einstein coefficients V. Black Body radiation I. Atomic excitation and ionization

More information

Properties of Electromagnetic Radiation Chapter 5. What is light? What is a wave? Radiation carries information

Properties of Electromagnetic Radiation Chapter 5. What is light? What is a wave? Radiation carries information Concepts: Properties of Electromagnetic Radiation Chapter 5 Electromagnetic waves Types of spectra Temperature Blackbody radiation Dual nature of radiation Atomic structure Interaction of light and matter

More information