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

Size: px
Start display at page:

Download "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"

Transcription

1 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

2 J Mean Intensity I dω 2π 4π 4π 0 0 π I sinθ dθ dφ Same units as I : J/m 2 /s/hz/sr (ergs/cm 2 /s/hz/sr) Function of position (and time), but not direction Determines heating, ionization, level populations, etc s I (r, n) dω θ da

3 R * θ * I * r What is J at r from a star with uniform specific intensity I * across its surface? I I * for 0 < θ < θ * (µ * < µ < ); µ cos θ I 0 for θ > θ * (µ < µ * ) J 2 µ * I dµ 2 I * ( µ * ) J I ( * 2 R 2 * / r 2 ) w I * w dilution factor Large r, w R 2 /4r 2

4 Monochromatic Flux Energy passing through a surface. Units: J/s/m 2 /Hz df I cos θ dω F I cosθ dω 2π 0 π 0 I cosθ sinθ dθ dφ If I is isotropic thermal radiation, get: F π I π B

5 Momentum Flux The momentum of a photon is E/c Momentum flux p in the direction of n photon flux times momentum per photon: p (n) / c I cos 2 θ dω One factor of cos θ comes from foreshortening of da Only the normal component of the momentum acts on the surface, hence the second factor of cos θ Units: N/m 2 /Hz

6 Energy density of radiation Consider a cylinder along a ray of length c dt. Define: u (Ω) energy per unit solid angle per unit volume per unit frequency in the cylinder: de u (Ω) dv dω dv u (Ω) (da c dt) dω dv All this radiation will exit the cylinder through da in time dt, so: de I da dω dt dv Equating gives: u (Ω) I / c Integrating over angles, we obtain the specific energy density, u (units J/m 3 /Hz). This is the energy per unit volume per unit frequency interval, u u (Ω) d Ω ( / c) I dω ( 4π/ c) J The total energy density of radiation requires one more integration over frequencies (this has dimensions of Energy / Volume): u u dv (4 π / c) J dv

7 Moments of the Radiation Field First three moments of specific intensity are named J (zeroth moment), H (first), and K (second): Ω Ω Ω d cos 4 d cos 4 d 4 2 θ π θ π π I K I H I J Physically: J mean intensity; H F / 4π K related to momentum flux: π K c p 4

8 Intensity Moments The moments of the radiation field are: J I dω dω 2 H I µ K I µ dω 4π 4π 4π J mean intensity; H flux; K momentum flux Compute these moments throughout the slab. First split the slab into layers, then tally number of packets, weighted by powers of their direction cosines to obtain J, H, K. Contribution to specific intensity from a single packet is: ΔI ΔE µ ΔAΔt Δ ΔΩ F µ N ΔΩ π B µ N ΔΩ

9 Substitute into intensity moment equations and convert the integral to a summation to get: J B 4 N i µ i H B 4 N i µ i µ i K B 4 N i µ i 2 µ i Note the mean flux, H, is just the net energy passing each level: number of packets traveling up minus number traveling down. Pathlength formula (Lucy 999) Long history of use in neutronics J i L 4π N ΔV i l

10 J i L 4π N ΔV i l Some Monte Carlo photon packets may pass through a cell without interacting (scatter or absorbed), but the path length estimator ensures they still contribute to the estimates for mean intensity, absorbed energy, radiation pressure, etc

11 Summing path lengths gives better estimates for intensities, absorbed energy, radiation pressure, etc. More packets pass through a cell than interact with a cell Mean intensity, J, related to photon energy density, u, via Packet contributes a fraction ε t/δt to the energy density of a cell where t l/c is time the packet spends in a cell, so can form Monte Carlo estimator: u Where ε MC packet energy L Δt / N. Hence, get estimator for J which will be accurate in optically thin regions: J i u 4 π J /c c Δt ΔV i L 4π N ΔV i ε l l

12 How much energy absorbed in a cell? Could count number of absorption events in each cell, but this is inaccurate for optically thin systems. We know the change in intensity for radiation passing through a medium with absorbing particles is di - I n σ abs dl - I dτ abs Hence, a Monte Carlo estimator for absorbed energy: E i abs L 4π N ΔV i nσ abs l

13 Random Number Generators Want random numbers in range 0 < ξ < Generate sequence of numbers rapidly No patterns or correlations Pass statistical tests for randomness Because using computer algorithms the sequence will be periodic, so period should be as long as possible pseudo random numbers Anyone who considers arithmetical methods for producing random digits is, of course, in a state of sin. John von Neumann

14 Random Number Generators Pseudo random number generators PRNGs ξ ran(seed), seed usually an integer, updated in each call to ran Can easily de-bug Monte Carlo codes: if use same seed for PRNG will get same random sequence Use uniformly distributed random numbers from (0 < ξ < ) to sample from complex functions Much research devoted to PRNGs Computer modular arithmetic, remainders and bits

15 Middle Square Method Used by von Neumann in 940s Recursive relation: square a n-digit number and take the middle n digits (add zeroes to make a 2n digit number if necessary), repeat process e.g., n 4: gives 5946, ξ gives 3549, ξ gives 5954, ξ etc, etc Problems: short period, can get stuck in very short loops, or crash (e.g., 0000) Von Neumann acknowledged problems, but found this fast (940s), adequate for problems, and crashes were obvious

16 Linear Congruential Generators Based on integer recurrence relation: y i+ mod(a y i + c, M) mod(a,b) gives remainder when A divided by B Careful choice of a, c, M gives periods around 2 32 (0 9 ) Random number in range (0,) from: ξ i y i M ran2.f from Numerical Recipes is more complex, involving shuffling of sequences. Authors offered prize of $000 if anyone finds a statistical test that ran2 fails.

17 Good and Bad Random Number Generators y i+ mod(a y i + c, M ) a 366, c 50889, M a 37, c 87, M 256 ξ i y i M First return maps plot successive pairs of (ξ i, ξ i+ ) ξ i+ ξ i xn+ Xn x n ξ i X n (a) (b) Figure 4.4. First return maps for (a) Random Number Generator #; (b) Random Number Generator #2. ξ i

18 Should we worry? Maybe but if you read you ll get scared! OK for our needs, need better for cryptography Mersenne Twister: period ~ 4.3 E600

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

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

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

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 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

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

PHYS 390 Lecture 23 - Photon gas 23-1

PHYS 390 Lecture 23 - Photon gas 23-1 PHYS 39 Lecture 23 - Photon gas 23-1 Lecture 23 - Photon gas What's Important: radiative intensity and pressure stellar opacity Text: Carroll and Ostlie, Secs. 9.1 and 9.2 The temperature required to drive

More information

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

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

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

Fundamental Stellar Parameters

Fundamental Stellar Parameters Fundamental Stellar Parameters Radiative Transfer Specific Intensity, Radiative Flux and Stellar Luminosity Observed Flux, Emission and Absorption of Radiation Radiative Transfer Equation, Solution and

More information

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

Enrico Fermi and the FERMIAC. Mechanical device that plots 2D random walks of slow and fast neutrons in fissile material 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:

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

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

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

Fundametals of Rendering - Radiometry / Photometry

Fundametals of Rendering - Radiometry / Photometry Fundametals of Rendering - Radiometry / Photometry Physically Based Rendering by Pharr & Humphreys Chapter 5: Color and Radiometry Chapter 6: Camera Models - we won t cover this in class Realistic Rendering

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

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

E n = n h ν. The oscillators must absorb or emit energy in discrete multiples of the fundamental quantum of energy given by.

E n = n h ν. The oscillators must absorb or emit energy in discrete multiples of the fundamental quantum of energy given by. Planck s s Radiation Law Planck made two modifications to the classical theory The oscillators (of electromagnetic origin) can only have certain discrete energies determined by E n = n h ν with n is an

More information

Stellar Atmospheres: Basic Processes and Equations

Stellar Atmospheres: Basic Processes and Equations Stellar Atmospheres: Basic Processes and Equations Giovanni Catanzaro Abstract The content of this chapter is a very quick summary of key concepts that concern the interaction between photons created in

More information

F = c where ^ı is a unit vector along the ray. The normal component is. Iν cos 2 θ. d dadt. dp normal (θ,φ) = dpcos θ = df ν

F = c where ^ı is a unit vector along the ray. The normal component is. Iν cos 2 θ. d dadt. dp normal (θ,φ) = dpcos θ = df ν INTRODUCTION So far, the only information we have been able to get about the universe beyond the solar system is from the eletromagneti radiation that reahes us (and a few osmi rays). So doing Astrophysis

More information

Lecture 2 Solutions to the Transport Equation

Lecture 2 Solutions to the Transport Equation Lecture 2 Solutions to the Transport Equation Equation along a ray I In general we can solve the static transfer equation along a ray in some particular direction. Since photons move in straight lines

More information

Algorithms and Networking for Computer Games

Algorithms and Networking for Computer Games Algorithms and Networking for Computer Games Chapter 2: Random Numbers http://www.wiley.com/go/smed What are random numbers good for (according to D.E. Knuth) simulation sampling numerical analysis computer

More information

TRANSFER OF RADIATION

TRANSFER OF RADIATION TRANSFER OF RADIATION Under LTE Local Thermodynamic Equilibrium) condition radiation has a Planck black body) distribution. Radiation energy density is given as U r,ν = 8πh c 3 ν 3, LTE), tr.1) e hν/kt

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

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

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

The Black Body Radiation

The Black Body Radiation The Black Body Radiation = Chapter 4 of Kittel and Kroemer The Planck distribution Derivation Black Body Radiation Cosmic Microwave Background The genius of Max Planck Other derivations Stefan Boltzmann

More information

Random Number Generation. Stephen Booth David Henty

Random Number Generation. Stephen Booth David Henty Random Number Generation Stephen Booth David Henty Introduction Random numbers are frequently used in many types of computer simulation Frequently as part of a sampling process: Generate a representative

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

The Radiative Transfer Equation

The Radiative Transfer Equation The Radiative Transfer Equation R. Wordsworth April 11, 215 1 Objectives Derive the general RTE equation Derive the atmospheric 1D horizontally homogenous RTE equation Look at heating/cooling rates in

More information

Introduction to the School

Introduction to the School Lucio Crivellari Instituto de Astrofísica de Canarias D.pto de Astrofísica, Universidad de La Laguna & INAF Osservatorio Astronomico di Trieste (Italy) Introduction to the School 10/11/17 1 Setting the

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

Homework 3 Solutions Problem 1 (a) The technique is essentially that of Homework 2, problem 2. The situation is depicted in the figure:

Homework 3 Solutions Problem 1 (a) The technique is essentially that of Homework 2, problem 2. The situation is depicted in the figure: Homework 3 Solutions Problem (a) The technique is essentially that of Homework 2, problem 2. The situation is depicted in the figure: θ photon vdt A θ d Figure : The figure shows the system at time t.

More information

1 CHAPTER 5 ABSORPTION, SCATTERING, EXTINCTION AND THE EQUATION OF TRANSFER

1 CHAPTER 5 ABSORPTION, SCATTERING, EXTINCTION AND THE EQUATION OF TRANSFER 1 CHAPTER 5 ABSORPTION, SCATTERING, EXTINCTION AND THE EQUATION OF TRANSFER 5.1 Introduction As radiation struggles to make its way upwards through a stellar atmosphere, it may be weakened by absorption

More information

Exam 2 Solutions. ε 3. ε 1. Problem 1

Exam 2 Solutions. ε 3. ε 1. Problem 1 Exam 2 Solutions Problem 1 In the circuit shown, R1=100 Ω, R2=25 Ω, and the ideal batteries have EMFs of ε1 = 6.0 V, ε2 = 3.0 V, and ε3 = 1.5 V. What is the magnitude of the current flowing through resistor

More information

Physics 403. Segev BenZvi. Monte Carlo Techniques. Department of Physics and Astronomy University of Rochester

Physics 403. Segev BenZvi. Monte Carlo Techniques. Department of Physics and Astronomy University of Rochester Physics 403 Monte Carlo Techniques Segev BenZvi Department of Physics and Astronomy University of Rochester Table of Contents 1 Simulation and Random Number Generation Simulation of Physical Systems Creating

More information

Exploring Monte Carlo Methods

Exploring Monte Carlo Methods Exploring Monte Carlo Methods William L Dunn J. Kenneth Shultis AMSTERDAM BOSTON HEIDELBERG LONDON NEW YORK OXFORD PARIS SAN DIEGO SAN FRANCISCO SINGAPORE SYDNEY TOKYO ELSEVIER Academic Press Is an imprint

More information

Scattering of Electromagnetic Radiation. References:

Scattering of Electromagnetic Radiation. References: Scattering of Electromagnetic Radiation References: Plasma Diagnostics: Chapter by Kunze Methods of experimental physics, 9a, chapter by Alan Desilva and George Goldenbaum, Edited by Loveberg and Griem.

More information

Stellar Astrophysics: The Continuous Spectrum of Light

Stellar Astrophysics: The Continuous Spectrum of Light Stellar Astrophysics: The Continuous Spectrum of Light Distance Measurement of Stars Distance Sun - Earth 1.496 x 10 11 m 1 AU 1.581 x 10-5 ly Light year 9.461 x 10 15 m 6.324 x 10 4 AU 1 ly Parsec (1

More information

Advanced Heat and Mass Transfer by Amir Faghri, Yuwen Zhang, and John R. Howell

Advanced Heat and Mass Transfer by Amir Faghri, Yuwen Zhang, and John R. Howell Advanced Heat and Mass Transfer by Amir Faghri, Yuwen Zhang, and John R. Howell 9.2 The Blackbody as the Ideal Radiator A material that absorbs 100 percent of the energy incident on it from all directions

More information

Uniformity of the Universe

Uniformity of the Universe Outline Universe is homogenous and isotropic Spacetime metrics Friedmann-Walker-Robertson metric Number of numbers needed to specify a physical quantity. Energy-momentum tensor Energy-momentum tensor of

More information

Optical Imaging Chapter 5 Light Scattering

Optical Imaging Chapter 5 Light Scattering Optical Imaging Chapter 5 Light Scattering Gabriel Popescu University of Illinois at Urbana-Champaign Beckman Institute Quantitative Light Imaging Laboratory http://light.ece.uiuc.edu Principles of Optical

More information

Physics 403 Monte Carlo Techniques

Physics 403 Monte Carlo Techniques Physics 403 Monte Carlo Techniques Segev BenZvi Department of Physics and Astronomy University of Rochester Table of Contents 1 Simulation and Random Number Generation Simulation of Physical Systems Creating

More information

THE POSSIBILITY OF PRECISE MEASUREMENT OF ABSOLUTE ENERGY OF THE ELECTRON BEAM BY MEANS OF RESONANCE ABSORPTION METHOD R.A.

THE POSSIBILITY OF PRECISE MEASUREMENT OF ABSOLUTE ENERGY OF THE ELECTRON BEAM BY MEANS OF RESONANCE ABSORPTION METHOD R.A. THE POSSIBILITY OF PRECISE MEASUREMENT OF ABSOLUTE ENERGY OF THE ELECTRON BEAM BY MEANS OF RESONANCE ABSORPTION METHOD R.A. Melikian Yerevan Physics Institute, Yerevan, Armenia Abstract In this report

More information

Electromagnetic Waves. Chapter 33 (Halliday/Resnick/Walker, Fundamentals of Physics 8 th edition)

Electromagnetic Waves. Chapter 33 (Halliday/Resnick/Walker, Fundamentals of Physics 8 th edition) PH 222-3A Spring 2007 Electromagnetic Waves Lecture 22 Chapter 33 (Halliday/Resnick/Walker, Fundamentals of Physics 8 th edition) 1 Chapter 33 Electromagnetic Waves Today s information age is based almost

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

SAMPLING SPECIAL DISTRIBUTIONS

SAMPLING SPECIAL DISTRIBUTIONS SAMPLING SPECIAL DISTRIBUTIONS M. Ragheb 4/9/4 INTRODUCTION Monte Carlo simulations require the sampling of various distributions at different steps in the simulation process. There exist a multitude of

More information

Heriot-Watt University

Heriot-Watt University Heriot-Watt University Distinctly Global www.hw.ac.uk Thermodynamics By Peter Cumber Prerequisites Interest in thermodynamics Some ability in calculus (multiple integrals) Good understanding of conduction

More information

Scattering in Cold- Cathode Discharges

Scattering in Cold- Cathode Discharges Simulating Electron Scattering in Cold- Cathode Discharges Alexander Khrabrov, Igor Kaganovich*, Vladimir I. Demidov**, George Petrov*** *Princeton Plasma Physics Laboratory ** Wright-Patterson Air Force

More information

STOCHASTIC & DETERMINISTIC SOLVERS

STOCHASTIC & DETERMINISTIC SOLVERS STOCHASTIC & DETERMINISTIC SOLVERS Outline Spatial Scales of Optical Technologies & Mathematical Models Prototype RTE Problems 1-D Transport in Slab Geometry: Exact Solution Stochastic Models: Monte Carlo

More information

E d. h, c o, k are all parameters from quantum physics. We need not worry about their precise definition here.

E d. h, c o, k are all parameters from quantum physics. We need not worry about their precise definition here. The actual form of Plank s law is: b db d b 5 e C C2 1 T 1 where: C 1 = 2hc o 2 = 3.7210 8 Wm /m 2 C 2 = hc o /k = 1.3910 mk Where: h, c o, k are all parameters from quantum physics. We need not worry

More information

Fundamentals of Rendering - Radiometry / Photometry

Fundamentals of Rendering - Radiometry / Photometry Fundamentals of Rendering - Radiometry / Photometry Image Synthesis Torsten Möller Today The physics of light Radiometric quantities Photometry vs/ Radiometry 2 Reading Chapter 5 of Physically Based Rendering

More information

A Repetition Test for Pseudo-Random Number Generators

A Repetition Test for Pseudo-Random Number Generators Monte Carlo Methods and Appl., Vol. 12, No. 5-6, pp. 385 393 (2006) c VSP 2006 A Repetition Test for Pseudo-Random Number Generators Manuel Gil, Gaston H. Gonnet, Wesley P. Petersen SAM, Mathematik, ETHZ,

More information

The Black Body Radiation

The Black Body Radiation The Black Body Radiation = Chapter 4 of Kittel and Kroemer The Planck distribution Derivation Black Body Radiation Cosmic Microwave Background The genius of Max Planck Other derivations Stefan Boltzmann

More information

Fundamentals of Rendering - Radiometry / Photometry

Fundamentals of Rendering - Radiometry / Photometry Fundamentals of Rendering - Radiometry / Photometry CMPT 461/761 Image Synthesis Torsten Möller Today The physics of light Radiometric quantities Photometry vs/ Radiometry 2 Reading Chapter 5 of Physically

More information

PHY492: Nuclear & Particle Physics. Lecture 3 Homework 1 Nuclear Phenomenology

PHY492: Nuclear & Particle Physics. Lecture 3 Homework 1 Nuclear Phenomenology PHY49: Nuclear & Particle Physics Lecture 3 Homework 1 Nuclear Phenomenology Measuring cross sections in thin targets beam particles/s n beam m T = ρts mass of target n moles = m T A n nuclei = n moles

More information

Lecture 5: Random numbers and Monte Carlo (Numerical Recipes, Chapter 7) Motivations for generating random numbers

Lecture 5: Random numbers and Monte Carlo (Numerical Recipes, Chapter 7) Motivations for generating random numbers Lecture 5: Random numbers and Monte Carlo (Numerical Recipes, Chapter 7) Motivations for generating random numbers To sample a function in a statistically controlled manner (i.e. for Monte Carlo integration)

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

Chapter 22. Dr. Armen Kocharian. Gauss s Law Lecture 4

Chapter 22. Dr. Armen Kocharian. Gauss s Law Lecture 4 Chapter 22 Dr. Armen Kocharian Gauss s Law Lecture 4 Field Due to a Plane of Charge E must be perpendicular to the plane and must have the same magnitude at all points equidistant from the plane Choose

More information

Generating Uniform Random Numbers

Generating Uniform Random Numbers 1 / 43 Generating Uniform Random Numbers Christos Alexopoulos and Dave Goldsman Georgia Institute of Technology, Atlanta, GA, USA March 1, 2016 2 / 43 Outline 1 Introduction 2 Some Generators We Won t

More information

Chapter 33. Electromagnetic Waves

Chapter 33. Electromagnetic Waves Chapter 33 Electromagnetic Waves Today s information age is based almost entirely on the physics of electromagnetic waves. The connection between electric and magnetic fields to produce light is own of

More information

Uniform Random Binary Floating Point Number Generation

Uniform Random Binary Floating Point Number Generation Uniform Random Binary Floating Point Number Generation Prof. Dr. Thomas Morgenstern, Phone: ++49.3943-659-337, Fax: ++49.3943-659-399, tmorgenstern@hs-harz.de, Hochschule Harz, Friedrichstr. 57-59, 38855

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

第 1 頁, 共 8 頁 Chap32&Chap33 1. Test Bank, Question 2 Gauss' law for magnetism tells us: the net charge in any given volume that the line integral of a magnetic around any closed loop must vanish the magnetic

More information

3 Some Radiation Basics

3 Some Radiation Basics 12 Physics 426 Notes Spring 29 3 Some Radiation Basics In this chapter I ll store some basic tools we need for working with radiation astrophysically. This material comes directly from Rybicki & Lightman

More information

Atomic Models the Nucleus

Atomic Models the Nucleus Atomic Models the Nucleus Rutherford (read his bio on pp 134-5), who had already won a Nobel for his work on radioactivity had also named alpha, beta, gamma radiation, developed a scattering technique

More information

EM Waves. From previous Lecture. This Lecture More on EM waves EM spectrum Polarization. Displacement currents Maxwell s equations EM Waves

EM Waves. From previous Lecture. This Lecture More on EM waves EM spectrum Polarization. Displacement currents Maxwell s equations EM Waves EM Waves This Lecture More on EM waves EM spectrum Polarization From previous Lecture Displacement currents Maxwell s equations EM Waves 1 Reminders on waves Traveling waves on a string along x obey the

More information

ATM 507 Lecture 4. Text reading Chapters 3 and 4 Today s topics Chemistry, Radiation and Photochemistry review. Problem Set 1: due Sept.

ATM 507 Lecture 4. Text reading Chapters 3 and 4 Today s topics Chemistry, Radiation and Photochemistry review. Problem Set 1: due Sept. ATM 507 Lecture 4 Text reading Chapters 3 and 4 Today s topics Chemistry, Radiation and Photochemistry review Problem Set 1: due Sept. 11 Temperature Dependence of Rate Constants Reaction rates change

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

A resonant cyclotron scattering model for the X-ray spectra of Magnetar Candidates

A resonant cyclotron scattering model for the X-ray spectra of Magnetar Candidates A resonant cyclotron scattering model for the X-ray spectra of Magnetar Candidates The X-ray Universe 2008 Granada, 27-390 May 2008 Silvia Zane, MSSL, UCL With: Luciano Nobili, Roberto Turolla, Nanda Rea,

More information

Angular Displacement. θ i. 1rev = 360 = 2π rads. = "angular displacement" Δθ = θ f. π = circumference. diameter

Angular Displacement. θ i. 1rev = 360 = 2π rads. = angular displacement Δθ = θ f. π = circumference. diameter Rotational Motion Angular Displacement π = circumference diameter π = circumference 2 radius circumference = 2πr Arc length s = rθ, (where θ in radians) θ 1rev = 360 = 2π rads Δθ = θ f θ i = "angular displacement"

More information

Partial Fractions. June 27, In this section, we will learn to integrate another class of functions: the rational functions.

Partial Fractions. June 27, In this section, we will learn to integrate another class of functions: the rational functions. Partial Fractions June 7, 04 In this section, we will learn to integrate another class of functions: the rational functions. Definition. A rational function is a fraction of two polynomials. For example,

More information

Modelling the Directionality of Light Scattered in Translucent Materials

Modelling the Directionality of Light Scattered in Translucent Materials Modelling the Directionality of Light Scattered in Translucent Materials Jeppe Revall Frisvad Joint work with Toshiya Hachisuka, Aarhus University Thomas Kjeldsen, The Alexandra Institute March 2014 Materials

More information

Some fundamentals. Statistical mechanics. The non-equilibrium ISM. = g u

Some fundamentals. Statistical mechanics. The non-equilibrium ISM. = g u Some fundamentals Statistical mechanics We have seen that the collision timescale for gas in this room is very small relative to radiative timesscales such as spontaneous emission. The frequent collisions

More information

Basic MonteCarlo concepts

Basic MonteCarlo concepts Departamento de Física Atómica, Molecular y Nuclear Universidad de Sevilla Introductory tutorial to Geant4 ITA/IEav, São José dos Campos, SP, Brazil July 28 28 - August 1 st, 2014 Index 1 Probability distributions

More information

Modern Methods of Data Analysis - WS 07/08

Modern Methods of Data Analysis - WS 07/08 Modern Methods of Data Analysis Lecture III (29.10.07) Contents: Overview & Test of random number generators Random number distributions Monte Carlo The terminology Monte Carlo-methods originated around

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

p(θ,φ,θ,φ) = we have: Thus:

p(θ,φ,θ,φ) = we have: Thus: 1. Scattering RT Calculations We come spinning out of nothingness, scattering stars like dust. - Jalal ad-din Rumi (Persian Poet, 1207-1273) We ve considered solutions to the radiative transfer equation

More information

Worked Examples Set 2

Worked Examples Set 2 Worked Examples Set 2 Q.1. Application of Maxwell s eqns. [Griffiths Problem 7.42] In a perfect conductor the conductivity σ is infinite, so from Ohm s law J = σe, E = 0. Any net charge must be on the

More information

Ay121 Problem Set 1. TA: Kathryn Plant. October Some parts are based on solutions by previous TAs Yuguang Chen and Rachel Theios.

Ay121 Problem Set 1. TA: Kathryn Plant. October Some parts are based on solutions by previous TAs Yuguang Chen and Rachel Theios. Ay2 Problem Set TA: Kathryn Plant October 28 Some parts are based on solutions by previous TAs Yuguang Chen and Rachel Theios. Temperatures One point for each part. (a) Since we are observing at MHz and

More information

Monte Carlo integration (naive Monte Carlo)

Monte Carlo integration (naive Monte Carlo) Monte Carlo integration (naive Monte Carlo) Example: Calculate π by MC integration [xpi] 1/21 INTEGER n total # of points INTEGER i INTEGER nu # of points in a circle REAL x,y coordinates of a point in

More information

Chapter 6. Quantum Theory of the Hydrogen Atom

Chapter 6. Quantum Theory of the Hydrogen Atom Chapter 6 Quantum Theory of the Hydrogen Atom 1 6.1 Schrodinger s Equation for the Hydrogen Atom Symmetry suggests spherical polar coordinates Fig. 6.1 (a) Spherical polar coordinates. (b) A line of constant

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

Pseudo-random Number Generation. Qiuliang Tang

Pseudo-random Number Generation. Qiuliang Tang Pseudo-random Number Generation Qiuliang Tang Random Numbers in Cryptography The keystream in the one-time pad The secret key in the DES encryption The prime numbers p, q in the RSA encryption The private

More information

Introduction to Computer Vision Radiometry

Introduction to Computer Vision Radiometry Radiometry Image: two-dimensional array of 'brightness' values. Geometry: where in an image a point will project. Radiometry: what the brightness of the point will be. Brightness: informal notion used

More information

Final Exam: Physics Spring, 2017 May 8, 2017 Version 01

Final Exam: Physics Spring, 2017 May 8, 2017 Version 01 Final Exam: Physics2331 - Spring, 2017 May 8, 2017 Version 01 NAME (Please Print) Your exam should have 11 pages. This exam consists of 18 multiple-choice questions (2 points each, worth 36 points), and

More information

Statistische Methoden der Datenanalyse. Kapitel 3: Die Monte-Carlo-Methode

Statistische Methoden der Datenanalyse. Kapitel 3: Die Monte-Carlo-Methode 1 Statistische Methoden der Datenanalyse Kapitel 3: Die Monte-Carlo-Methode Professor Markus Schumacher Freiburg / Sommersemester 2009 Basiert auf Vorlesungen und Folien von Glen Cowan und Abbildungen

More information

Physics Lecture 40: FRI3 DEC

Physics Lecture 40: FRI3 DEC Physics 3 Physics 3 Lecture 4: FRI3 DEC Review of concepts for the final exam Electric Fields Electric field E at some point in space is defined as the force divided by the electric charge. Force on charge

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

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

Lecture 21. Energy Transfer in Electromagnetism Energy and Intensity of Electromagnetic Waves. Transfer of EM Energy in Space: Poynting Formalism.

Lecture 21. Energy Transfer in Electromagnetism Energy and Intensity of Electromagnetic Waves. Transfer of EM Energy in Space: Poynting Formalism. Lecture 21. Energy Transfer in Electromagnetism Energy and ntensity of Electromagnetic Waves Outline: Transfer of EM Energy in Space: Poynting Formalism. Energy Transfer by EM Waves. Radiation Pressure

More information

Wave function and Quantum Physics

Wave function and Quantum Physics Wave function and Quantum Physics Properties of matter Consists of discreet particles Atoms, Molecules etc. Matter has momentum (mass) A well defined trajectory Does not diffract or interfere 1 particle

More information

Handout 6: Rotational motion and moment of inertia. Angular velocity and angular acceleration

Handout 6: Rotational motion and moment of inertia. Angular velocity and angular acceleration 1 Handout 6: Rotational motion and moment of inertia Angular velocity and angular acceleration In Figure 1, a particle b is rotating about an axis along a circular path with radius r. The radius sweeps

More information

Roger Johnson Structure and Dynamics: X-ray Diffraction Lecture 6

Roger Johnson Structure and Dynamics: X-ray Diffraction Lecture 6 6.1. Summary In this Lecture we cover the theory of x-ray diffraction, which gives direct information about the atomic structure of crystals. In these experiments, the wavelength of the incident beam must

More information

University of California, Berkeley Physics H7B Spring 1999 (Strovink) SOLUTION TO PROBLEM SET 11 Solutions by P. Pebler

University of California, Berkeley Physics H7B Spring 1999 (Strovink) SOLUTION TO PROBLEM SET 11 Solutions by P. Pebler University of California Berkeley Physics H7B Spring 999 (Strovink) SOLUTION TO PROBLEM SET Solutions by P. Pebler Purcell 7.2 A solenoid of radius a and length b is located inside a longer solenoid of

More information

Monte Carlo method projective estimators for angular and temporal characteristics evaluation of polarized radiation

Monte Carlo method projective estimators for angular and temporal characteristics evaluation of polarized radiation Monte Carlo method projective estimators for angular and temporal characteristics evaluation of polarized radiation Natalya Tracheva Sergey Ukhinov Institute of Computational Mathematics and Mathematical

More information

Quantum Mechanics II Lecture 11 (www.sp.phy.cam.ac.uk/~dar11/pdf) David Ritchie

Quantum Mechanics II Lecture 11 (www.sp.phy.cam.ac.uk/~dar11/pdf) David Ritchie Quantum Mechanics II Lecture (www.sp.phy.cam.ac.u/~dar/pdf) David Ritchie Michaelmas. So far we have found solutions to Section 4:Transitions Ĥ ψ Eψ Solutions stationary states time dependence with time

More information

Physics Fall Mechanics, Thermodynamics, Waves, Fluids. Lecture 20: Rotational Motion. Slide 20-1

Physics Fall Mechanics, Thermodynamics, Waves, Fluids. Lecture 20: Rotational Motion. Slide 20-1 Physics 1501 Fall 2008 Mechanics, Thermodynamics, Waves, Fluids Lecture 20: Rotational Motion Slide 20-1 Recap: center of mass, linear momentum A composite system behaves as though its mass is concentrated

More information

( ) ( ) Monte Carlo Methods Interested in. E f X = f x d x. Examples:

( ) ( ) Monte Carlo Methods Interested in. E f X = f x d x. Examples: Monte Carlo Methods Interested in Examples: µ E f X = f x d x Type I error rate of a hypothesis test Mean width of a confidence interval procedure Evaluating a likelihood Finding posterior mean and variance

More information