KCDC TUTORIAL - SKYPLOT

Size: px
Start display at page:

Download "KCDC TUTORIAL - SKYPLOT"

Transcription

1 Version 4.0 / KCDC TUTORIAL - SKYPLOT HOW DOES KASCADE SEE THE SKY? This description can be downloaded from Requirements basic knowledge on cosmic radiation basic knowledge on air showers basic knowledge in astronomy knowledge in programming language C++ knowledge in using Data Analysis Framework "ROOT" Skyplot_Tutorial_v4_en.docx 1/17

2 INHALT Physical Background... 3 What can we say about the origin of cosmic radiation?... 3 What are the sources of the cosmic RADIATION?... 3 The Skymap of the Cosmic Radiation... 4 Why is the Skyplot of Cosmic Radiation interesting?... 4 Data sets and Analysis... 4 Preparing the analysis... 4 Analysing and plotting the data... 6 Interpretation of the plots... 7 Advanced tasks... 9 Glossary... 9 Sources & Links: Appendix A. Download the Data sets using the KCDC DataShop Appendix B. Used files & scripts Anhang C Data sets available Skyplot_Tutorial_v4_en.docx 2/17

3 PHYSICAL BACKGROUND High energetic cosmic rays (fully ionised atomic nuclei) collide with the molecules of air when entering the earth atmosphere initiating a particle cascade. The primary cosmic particle does then not exist anymore. Thus the KASCADE experiment is designed to measures only the part of the cosmic ray air shower reaching ground level not the primary particle. The data analysis of such a wide shower should reveal many of the properties of the primary particle. Therefore, besides the mass and the energy the origin of the particle is of interest. WHAT CAN WE SAY ABOUT THE ORIGIN OF COSMIC RADIATION? The direction from which a cosmic ray particle is penetrating in our atmosphere can be derived from the reconstructed shower direction and its arrival times. The direction of the shower, and thus the direction of the primary particle, is determined by means of the individual arrival times of the secondary particles of all detector stations participating in this event. This plot shows the distribution of the individual arrival times in the 252 detector stations of the KLASCADE Array. A plain characterising the shower front is fitted to this distribution, its surface normal point in the direction of the incoming primary particle. But even if we know the direction from which the primary particle is hitting our atmosphere we still do know nothing at all about the source of the particle in deep space. The problem is that we are talking about atomic nuclei, i.e. charged particles which are deflected in the galactic and the intergalactic magnetic fields and thus lose all information on their origin. WHAT ARE THE SOURCES OF THE COSMIC RADIATION? The cosmic radiation is classified according to their origin in solar (source is the sun) galactic (sources are within our galaxy) extragalactic (sources are outside of our galaxy) cosmic radiation. The solar wind represents the major part of the SOLAR COSMIC RADIATION. It consists mainly of charged particles like protons, electrons and helium atomic nuclei from the outer spheres of the sun. The energy of these particles is below 10 9 ev. Cosmic radiation above this energy up to about ev has a high probability of being of galactic origin and is thus called GALACTIC COSMIC RADIATION. In this energy range the gyromagnetic radius is smaller than the diameter of our galaxy. This means that the charged particles are practically caught in the magnetic field of our galaxy, no able to leave and without any information about their origin. Skyplot_Tutorial_v4_en.docx 3/17

4 Here super nova remnants, like the crab nebula, are thought to be the sources and the location of acceleration. But also pulsars and binary star systems where both stars have very different masses and the larger stars draw matter from the smaller one could be sources. Cosmic ray particles of the highest energies are called EXTRAGALCTIC COSMIC RADIATION, accelerated by certain mechanisms to this ultra-high energies, where unfortunately the location of the acceleration is unknown. A theory of the acceleration states that a massive black hole at the center of a galaxy accretes matter from its surroundings. This matter revolves in a disk around the black hole and approaches this spirally. THE SKYMAP OF THE COSMIC RADIATION Without the presence of the different magnetic fields we could conclude from the shower direction directly on the origin of cosmic rays. If however we knew the exact structure of the magnetic fields, we could draw conclusions by means of so called transport models. Since the distribution and structure of the magnetic fields is not very well understood both in our galaxy and throughout the universe, however, only the ultra-high-energy cosmic particles may provide us with information about their origin. Because they are travelling nearly at the speed of light they are not deflected by the magnetic fields and practically come in a straight line from the source to the earth, if the source is close on an astronomical scale. WHY IS THE SKYPLOT OF COSMIC RADIATION INTERESTING? Nevertheless, it is interesting to plot a skymap of the cosmic particles in all energy ranges especially since these are also suitable to investigate the quality of the reconstruction software. Such skymaps can indicate an accumulation of events from nearby sources (point sources), or large-scale structures (anisotropy), from which we can conclude to the distributions of the source or to the magnetic field structures in our galaxy. DATA SETS AND ANALYSIS This tutorial presents the main steps for creating a skyplot in C / C ++. read and prepare the data sets transform to galactic coordinates graphical representation of data There are a numerous programming languages, which are suitable to carry out these analyses and create the plots. As an example a program in C / C ++ is discussed. Also conceivable, however, are all other programs to create histograms from a text file (ASCII) as supplied by KCDC. PREPARING THE ANALYSIS To generate a skyplot of cosmic rays measured by KASCADE the following parameters of the KCDC data sets are required: Arrival Time (Datetime, Gt, Mt): Datetime in UTC (yyyy-mm-dd hh:mm:ss) or Global Time (GT) and Micro Time (Mt) to increase the accuracy. Shower Direction (Az, Ze): Azimuth and Zenith angles Energy (E): reconstructed energy of the primary particle The ASCII data set used for this example analysis DataSkyplot.zip can be downloaded from ftp://kcdc.ikp.kit.edu/education/dataskyplot.zip or it can be generated in the KCDC Data Shop (instructions see App-A). Skyplot_Tutorial_v4_en.docx 4/17

5 The data set includes data from 2 years odf measurement (1999 and 2000). There is as well a reduced data set from just one year measurement period offered (for details see table). Data set DataSkyplot DataSkyplot-small Size Zip-File 1500 MB 677 MB Number of Events Size data files inflated 5500 MB 2500 MB The included file Info.txt contains all information about the supplied data format, like the quantities available and their ranges. For this plot we are besides in the shower direction also interested in the arrival time and for additional tasks in the energy. We see in Info.txt that the columns labeled E (energy), ZE (zenith angle), AZ (azimuth angle), Date (date) and MT (Micro time) are need. The reconstructed primary energy E can be used for interesting cuts (see advanced tasks). It is displayed logarithmically as the number varies between (10 13 ) and (10 18 ). The Global Time (GT) is a redundant information for date but much easier to handle because it counts the seconds from (often called UNIX time). R (run) and Ev (event ) numbers are always provided the user. Number of events matching Cuts: Your requested observables: Event Info (general) Datetime [DateTime] type=date unit=none Cut: to Ev [Event Number] type=numerical[int32] unit=none Gt [Global Time] type=numerical [Int32] unit=ssec Mt [Mt] type=numerical [Int32] unit=ns R [Run Number] type=numerical [Int32] unit=none KASCADE (array) Az [Azimuth Angle] type=numerical [Float64] unit= E [Energy] type=numerical [Float64] unit=ev [log10] Ze [Zenith Angle] type=numerical [Float64] unit= Number of events matching Cuts: The ranges of the parameters selected include the complete data set of KASCADE, only that the selected time is limited to 2 years, so keep the size of the data set manageable. A look into the files general.txt, array.txt and row_mapping.txt shows how the first 6 records of the data sets used in this example are stored. Skyplot_Tutorial_v4_en.docx 5/17

6 general.txt Datetime Ev Gt Mt R T00:00: T00:00: T00:00: T00:00: T00:00: T00:00: array.txt row_mapping.txt Az E Ze general array e e e e e e e e e e e e e e e e e e ANALYSING AND PLOTTING THE DATA The KASCADE experiment is at a fixed location and has thus in the local coordinate system a fixed angular range accessible for incoming cosmic ray particles (Azimuth: degrees, Zenith: 0-60 degrees). In this local coordinate system the direction of incidence of the particle is reconstructed. The rotation of the earth and its motion within the solar system within a year requires a transformation to a suitable celestial coordinate system where the exact event time, which describes the present location of the earth, is used to transform the reconstructed shower direction to a celestial coordinate system where for example the stars of our galaxy are at a fix position. For reading the data, transforming them into suitable (celestial-) coordinate system and the presentation of results in a so-called skyplot is a C ++ -program package can be downloaded. Apart from the program skymap.cpp the zip file ProgSkyplot.zip includes a definition file skymap.h and an explanation on how this program must be executed within ROOT (Skyplot_README.txt). ProgSkyplot.zip can be downloaded via the link ftp://kcdc.ikp.kit.edu/education/dataskyplot.zip. For the execution of the program a C-compiler and the Data Analysis Framework ROOT from CERN must be installed (details on ROOT see section Sources and Links). The unzipped files skymap.cpp and skymap.h need to be in the directory where ROOT is to be executed. After ROOT has been started, skymap.cpp will be translated with.l skymap.cpp + and then executed with run (). Program flow chart : definitions (coordinates of KASCADE, conversions for equatorial coordinates (J2000)) definitions for ROOT event loop o conversion zenith angle and azimuth angle to radiant Skyplot_Tutorial_v4_en.docx 6/17

7 o calculation of the sidereal time for the coordinate transformation o rotation of the coordinate system relative to KASCADE (rotation by 180 ) o transformation horizontal equatorial coordinates o transformation equatorial galactic coordinates o performing a projection after Hammer-Aitoff o filling predefined 2-dimensional histograms plot ouput o drawing the histogram o drawing the coordinate system (equatorial & galactic system) o output as pdf As a result you get 2 plots which show the sky as it is viewed by KASCADE Skymap_equ.pdf Skymap_gal.pdf skyplot in equatorial coordinates skyplot in galactic coordinates INTERPRETATION OF THE PLOTS Skymap_equ.pdf An equatorial coordinate system is a geocentric coordinate system used by the astronomers where the earth (observer) is in the centre at 0/0. The axis are called declination (angular distance from the equatorial layer, positive sign for the northern hemisphere) and right ascension. In this plot generated within the KCDC tutorial are displayed the KASCADE data as well as the galactic plane a few astronomical objects. Skyplot_Tutorial_v4_en.docx 7/17

8 Skymap_gal.pdf As it is very helpful when investigating properties of our galaxy, the galactic coordinate system is often used by the astronomers. The reference is the plane of our Milky Way called galactic plane (x-axis). The galactic longitude l is measured anti-clockwise. The galactic latitude b is measured perpendicular, pointing north is positive, pointing south is negative. remark These plots show the frequency of the measured events. This does not imply that the different colours indicate anisotropies in the distribution of the arrival directions. To investigate anisotropy one would have to correct each bin for the true measuring time of KASCADE as well as for the angular dependent efficiency of the detector. The first is necessary because KASCADE was not running uniformly for a whole year thus the sky is not uniformly exposed. The latter correction is necessary as the detector is only recording data above a certain threshold i.e. a minimum number of secondary particles in an air shower which depends on the zenith angle. As the atmospheric depth is getting larger with increasing angle the threshold energy increases as well. These corrections are called normalisation which leads to a uniform distribution of the arrival directions, i.e. KASCADE did not see any anisotropies. Skyplot_Tutorial_v4_en.docx 8/17

9 ADVANCED TASKS Finally some suggestions how this exercise can be extended by some interesting plots. draw a skyplot with a limited zenith angle range p.e. 0-5 (vertical showers) draw skyplots for different energy ranges (search for point sources) (see above remark) Both tasks can be solved with the data set DataSkyplot.zip applying appropriate cuts in skymap.cpp. As an alternative a separate data sample can be downloaded from the KCDC DataShop analog to the example displayed in Appendix A applying cuts on the quantities ZE and/or E. Another interesting task would be the normalisation of the measured distribution. This however requires some deeper knowledge in Astronomy and the principles of measuring cosmic ray showers on ground based experiments. But in principle everything is possible using the KCDC data published in the KCDC DataShop. GLOSSARY ev primary energy In physics the electronvolt is a unity of energy used in atomic physics, nuclear physics and particle physics. The symbol is ev. By definition, it is the amount of energy gained (or lost) by the charge of a single electron moved across an electric potential difference of one volt. The highest energy measured up to now (in cosmic ray physics of course!) is ev which corresponds to the energy content of a tennis ball moving at 100km/h but concentrated on the size of an atomic nucleus. The primary energy of high energetic cosmic radiation cannot be measured directly because the incoming particle collides with the molecules of the earth s atmosphere and triggers a shower cascade and is lost for the direct measurement at ground level. Huge detector systems like KASCADE can measure many of the secondary particles. From their energy deposits in the different detectors one can draw conclusions one the energy and the mass of the primary particle by means of highly sophisticated simulations including air shower properties and detector response functions. Skyplot_Tutorial_v4_en.docx 9/17

10 SOURCES & LINKS: Cosmic radiation in general (german videos): Astronomy: Jean Meeus, Astronomical Algorithms, Atlantic Books; 1998 Programming: Skyplot_Tutorial_v4_en.docx 10/17

11 APPENDIX A. DOWNLOAD THE DATA SETS USING THE KCDC DATASHOP As a registered KCDC user you have access to the DataShop on the KCDC Homepage ( If you are not registered you will be asked to register by generating a user account Fig. A.1.. KCDC DataShop Skyplot_Tutorial_v4_en.docx 11/17

12 Fig. A.2.. Select detector components and quantities This window enables you to select the quantities required for your analysis and to apply cuts to reduce the amount of data transferred via ftp. For our example we need the following quantities: Ze Az E DateTime Gt Mt Zenith angle Azimuth angle Reconstructed Energy Date & Time Global time Mikro time The parameters Run Number and Event Number are always shipped with the data for a unique identification of an event. These two quantities cannot be deselected. Skyplot_Tutorial_v4_en.docx 12/17

13 Fig. A.3. Applying Cuts If alle parameters are selected some cuts have to be applied by pressing the add cut button of the respective quantity. As in our case the amount of data should be reduced we will cut on the Date parameter. All other quantities are requested within their full range. The information boxes at the right hand side provide helpful information on how to supply the quantitie s cuts. Check and submit your request Tis page holds an overview on the parameters chosen as well as the cuts applied. If everything is fine submit your request using the submit retrieval request button. Skyplot_Tutorial_v4_en.docx 13/17

14 Fig. A.4.. Overview on data selected and cuts On the KCDC User Review Page you can follow the status of your job. After a few seconds the status information will switch from PENDING to PROCESSING, indicating that the data selection is in progress. After successfully terminating your request the status will switch to SUCCESS and you will get an with a link to download your data selection via the DOWNLOAD button on this page. Skyplot_Tutorial_v4_en.docx 14/17

15 Fig. A.5.. Your request Skyplot_Tutorial_v4_en.docx 15/17

16 APPENDIX B. USED FILES & SCRIPTS The packed file Skyplot.zip contains 5 files array.txt Data file for the quantities E, Ze, Az general.txt Data file for the quantities Datetime, Gt, Mt and R, Ev (always provided) row_mapping.txt Mapping table holding the correlations between array.txt and general.txt info.txt Information concerning the selected parameters, cuts and the number of events EULA.pdf License agreement to use the KCDC data The packed file ProgSkyplot.zip holds program codes and helps skymap.cpp C++ programm code skymap.h Include file skymap_readme.txt Help file Skyplot_Tutorial_v4_en.docx 16/17

17 ANHANG C DATA SETS AVAILABLE For this tutorial two data sets are available. The 'normal' data set DataSkyplot.zip contains data as described above, the file DataSkyplot-small.zip contains data from to Details are given in the following tables Data set DataSkyplot DataSkyplot-small Size Zip-File 1468 MB 677 MB Number Events Size data files inflated 5613 MB 2577 MB Cuts at Data set DataSkyplot DataSkyplot-small Datetime Gt [sec] 8.946e e e e+9 Mt [ns] e e8 E (log10) [ev] Ze [ ] Az [ ] Download: ftp://kcdc.ikp.kit.edu/education/dataskyplot.zip ftp://kcdc.ikp.kit.edu/education/dataskyplot-small.zip Skyplot_Tutorial_v4_en.docx 17/17

High-energy neutrino detection with the ANTARES underwater erenkov telescope. Manuela Vecchi Supervisor: Prof. Antonio Capone

High-energy neutrino detection with the ANTARES underwater erenkov telescope. Manuela Vecchi Supervisor: Prof. Antonio Capone High-energy neutrino detection with the ANTARES underwater erenkov telescope Supervisor: Prof. Antonio Capone 1 Outline Neutrinos: a short introduction Multimessenger astronomy: the new frontier Neutrino

More information

COSMIC RAYS DAY INTRODUCTION TO COSMIC RAYS WINDWARD COMMUNITY COLLEGE - SEPTEMBER 26, 2015 VERONICA BINDI - UNIVERSITY OH HAWAII

COSMIC RAYS DAY INTRODUCTION TO COSMIC RAYS WINDWARD COMMUNITY COLLEGE - SEPTEMBER 26, 2015 VERONICA BINDI - UNIVERSITY OH HAWAII COSMIC RAYS DAY WINDWARD COMMUNITY COLLEGE - SEPTEMBER 26, 2015 VERONICA BINDI - UNIVERSITY OH HAWAII INTRODUCTION TO COSMIC RAYS MAJOR QUESTIONS: Are there forms of matter in the Universe that do not

More information

The Physics of Cosmic Rays

The Physics of Cosmic Rays The Physics of Cosmic Rays QuarkNet summer workshop July 23-27, 2012 1 Recent History Most natural phenomena can be explained by a small number of simple rules. You can determine what these rules are by

More information

An Auger Observatory View of Centaurus A

An Auger Observatory View of Centaurus A An Auger Observatory View of Centaurus A Roger Clay, University of Adelaide based on work particularly done with: Bruce Dawson, Adelaide Jose Bellido, Adelaide Ben Whelan, Adelaide and the Auger Collaboration

More information

Gamma-ray Astrophysics with VERITAS: Exploring the violent Universe

Gamma-ray Astrophysics with VERITAS: Exploring the violent Universe Gamma-ray Astrophysics with VERITAS: Exploring the violent Universe K. Ragan McGill University Soup & Science 11-Jan-2008 Soup & Science Jan. '08 1 How do we know about the Universe? Historically, all

More information

The Milky Way Galaxy

The Milky Way Galaxy The Milky Way Galaxy A. Expert - I have done a lot of reading in this area already. B. Above Average - I have learned some information about this topic. C. Moderate - I know a little about this topic.

More information

Cosmic Rays - R. A. Mewaldt - California Institute of Technology

Cosmic Rays - R. A. Mewaldt - California Institute of Technology Cosmic Rays - R. A. Mewaldt - California Institute of Technology Cosmic rays are high energy charged particles, originating in outer space, that travel at nearly the speed of light and strike the Earth

More information

PHYS 160 Astronomy Take-home Test #4 Fall 2017

PHYS 160 Astronomy Take-home Test #4 Fall 2017 PHYS 160 Astronomy Take-home Test #4 Fall 2017 Instructions: This is a take-home test. The test period starts Monday 11/27/2017 at 2:10pm and ends at Wednesday 11/29/2017 at 1:10pm. The test must represent

More information

Cosmic Rays. Discovered in 1912 by Viktor Hess using electroscopes to measure ionization at altitudes via balloon

Cosmic Rays. Discovered in 1912 by Viktor Hess using electroscopes to measure ionization at altitudes via balloon Cosmic Rays Discovered in 1912 by Viktor Hess using electroscopes to measure ionization at altitudes via balloon Nobel Prize in 1936 Origin of high energy cosmic rays is still not completely understood

More information

Chapter 13 Notes The Deaths of Stars Astronomy Name: Date:

Chapter 13 Notes The Deaths of Stars Astronomy Name: Date: Chapter 13 Notes The Deaths of Stars Astronomy Name: Date: I. The End of a Star s Life When all the fuel in a star is used up, will win over pressure and the star will die nuclear fuel; gravity High-mass

More information

The Night Sky. The Universe. The Celestial Sphere. Stars. Chapter 14

The Night Sky. The Universe. The Celestial Sphere. Stars. Chapter 14 The Night Sky The Universe Chapter 14 Homework: All the multiple choice questions in Applying the Concepts and Group A questions in Parallel Exercises. Celestial observation dates to ancient civilizations

More information

Physics HW Set 3 Spring 2015

Physics HW Set 3 Spring 2015 1) If the Sun were replaced by a one solar mass black hole 1) A) life here would be unchanged. B) we would still orbit it in a period of one year. C) all terrestrial planets would fall in immediately.

More information

Lessons 19 and 20. Detection of C.R. with energy > TeV Study of the C.R. isotropy/anisotropy Ground based detectors:

Lessons 19 and 20. Detection of C.R. with energy > TeV Study of the C.R. isotropy/anisotropy Ground based detectors: Lessons 19 and 20 Detection of C.R. with energy > TeV Study of the C.R. isotropy/anisotropy Ground based detectors: Detection at ground of extensive Air Showers: nature, direction and energy of the primary

More information

LOCATING CELESTIAL OBJECTS: COORDINATES AND TIME. a. understand the basic concepts needed for any astronomical coordinate system.

LOCATING CELESTIAL OBJECTS: COORDINATES AND TIME. a. understand the basic concepts needed for any astronomical coordinate system. UNIT 2 UNIT 2 LOCATING CELESTIAL OBJECTS: COORDINATES AND TIME Goals After mastery of this unit, you should: a. understand the basic concepts needed for any astronomical coordinate system. b. understand

More information

Dr G. I. Ogilvie Lent Term 2005 INTRODUCTION

Dr G. I. Ogilvie Lent Term 2005 INTRODUCTION Accretion Discs Mathematical Tripos, Part III Dr G. I. Ogilvie Lent Term 2005 INTRODUCTION 0.1. Accretion If a particle of mass m falls from infinity and comes to rest on the surface of a star of mass

More information

Long Term Solar Modulation with the AMS-02 detector on the International Space Station

Long Term Solar Modulation with the AMS-02 detector on the International Space Station Long Term Solar Modulation with the AMS-02 detector on the International Space Station TEACHER NOTES DESCRIPTION In this activity, students explore whether solar activity impacts the flux of galactic cosmic

More information

A Multimessenger Neutrino Point Source Search with IceCube

A Multimessenger Neutrino Point Source Search with IceCube A Multimessenger Neutrino Point Source Search with IceCube Mădălina Chera FLC Group Meeting 04.10.2010 Mădălina Chera Overview 1 Introduction to UHE Cosmic Rays and Neutrino Astrophysics; 2 Motivation

More information

Chapter 1 Solar Radiation

Chapter 1 Solar Radiation Chapter 1 Solar Radiation THE SUN The sun is a sphere of intensely hot gaseous matter with a diameter of 1.39 10 9 m It is, on the average, 1.5 10 11 m away from the earth. The sun rotates on its axis

More information

Ultra-short Radio Pulses from High Energy Cosmic Rays

Ultra-short Radio Pulses from High Energy Cosmic Rays Ultra-short Radio Pulses from High Energy Cosmic Rays Andreas Horneffer for the LOFAR CR-KSP High Energy Cosmic Rays high energy particles dominated by atomic nuclei similar in composition to solar system

More information

John Ellison University of California, Riverside. Quarknet 2008 at UCR

John Ellison University of California, Riverside. Quarknet 2008 at UCR Cosmic Rays John Ellison University of California, Riverside Quarknet 2008 at UCR 1 What are Cosmic Rays? Particles accelerated in astrophysical sources incident on Earth s atmosphere Possible sources

More information

Dr. John Kelley Radboud Universiteit, Nijmegen

Dr. John Kelley Radboud Universiteit, Nijmegen arly impressive. An ultrahighoton triggers a cascade of particles mulation of the Auger array. The Many Mysteries of Cosmic Rays Dr. John Kelley Radboud Universiteit, Nijmegen Questions What are cosmic

More information

Preliminary results from gamma-ray observations with the CALorimeteric Electron Telescope (CALET)

Preliminary results from gamma-ray observations with the CALorimeteric Electron Telescope (CALET) Preliminary results from gamma-ray observations with the CALorimeteric Electron Telescope (CALET) Y.Asaoka for the CALET Collaboration RISE, Waseda University 2016/12/15 CTA-Japan Workshop The extreme

More information

STARS AND GALAXIES STARS

STARS AND GALAXIES STARS STARS AND GALAXIES STARS enormous spheres of plasma formed from strong gravitational forces PLASMA the most energetic state of matter; responsible for the characteristic glow emitted by these heavenly

More information

Neutron Stars. Chapter 14: Neutron Stars and Black Holes. Neutron Stars. What s holding it up? The Lighthouse Model of Pulsars

Neutron Stars. Chapter 14: Neutron Stars and Black Holes. Neutron Stars. What s holding it up? The Lighthouse Model of Pulsars Neutron Stars Form from a 8-20 M Sun star Chapter 14: Neutron Stars and Black Holes Leftover 1.4-3 M Sun core after supernova Neutron Stars consist entirely of neutrons (no protons) Neutron Star (tennis

More information

Detecting High Energy Cosmic Rays with LOFAR

Detecting High Energy Cosmic Rays with LOFAR Detecting High Energy Cosmic Rays with LOFAR Andreas Horneffer for the LOFAR-CR Team LOFAR CR-KSP: Main Motivation Exploring the sub-second transient radio sky: Extensive Air showers as guaranteed signal

More information

Lecture Outlines. Chapter 22. Astronomy Today 8th Edition Chaisson/McMillan Pearson Education, Inc.

Lecture Outlines. Chapter 22. Astronomy Today 8th Edition Chaisson/McMillan Pearson Education, Inc. Lecture Outlines Chapter 22 Astronomy Today 8th Edition Chaisson/McMillan Chapter 22 Neutron Stars and Black Holes Units of Chapter 22 22.1 Neutron Stars 22.2 Pulsars 22.3 Neutron-Star Binaries 22.4 Gamma-Ray

More information

Ultra-High-Energy Cosmic Rays: A Tale of Two Observatories

Ultra-High-Energy Cosmic Rays: A Tale of Two Observatories Ultra-High-Energy Cosmic Rays: A Tale of Two Observatories RuoYu Shang Nicholas Sherer Fei Sun Bryce Thurston Measurement of the Depth of Maximumof Extensive Air Showers above 10 18 ev,"phys. Rev. Letters104(2010)

More information

Chapter 19: Our Galaxy

Chapter 19: Our Galaxy Chapter 19 Lecture Chapter 19: Our Galaxy Our Galaxy 19.1 The Milky Way Revealed Our goals for learning: What does our galaxy look like? How do stars orbit in our galaxy? What does our galaxy look like?

More information

International Olympiad on Astronomy and Astrophysics (IOAA)

International Olympiad on Astronomy and Astrophysics (IOAA) Syllabus of International Olympiad on Astronomy and Astrophysics (IOAA) General Notes 1. Extensive contents in basic astronomical concepts are required in theoretical and practical problems. 2. Basic concepts

More information

Foundations of Astrophysics

Foundations of Astrophysics Foundations of Astrophysics Barbara Ryden The Ohio State University Bradley M. Peterson The Ohio State University Preface xi 1 Early Astronomy 1 1.1 The Celestial Sphere 1 1.2 Coordinate Systems on a Sphere

More information

The KASCADE-Grande Experiment

The KASCADE-Grande Experiment The KASCADE-Grande Experiment O. Sima 1 for the KASCADE-Grande Collaboration 2 1 University of Bucharest, Romania 2 https://web.ikp.kit.edu/kascade/ CSSP14 Sinaia 2014 Overview 1. KASCADE-Grande experimental

More information

An Introduction to Radio Astronomy

An Introduction to Radio Astronomy An Introduction to Radio Astronomy Second edition Bernard F. Burke and Francis Graham-Smith CAMBRIDGE UNIVERSITY PRESS Contents Preface to the second edition page x 1 Introduction 1 1.1 The role of radio

More information

Protostars on the HR Diagram. Lifetimes of Stars. Lifetimes of Stars: Example. Pressure-Temperature Thermostat. Hydrostatic Equilibrium

Protostars on the HR Diagram. Lifetimes of Stars. Lifetimes of Stars: Example. Pressure-Temperature Thermostat. Hydrostatic Equilibrium Protostars on the HR Diagram Once a protostar is hot enough to start, it can blow away the surrounding gas Then it is visible: crosses the on the HR diagram The more the cloud, the it will form stars Lifetimes

More information

Study of the arrival directions of ultra-high-energy cosmic rays detected by the Pierre Auger Observatory

Study of the arrival directions of ultra-high-energy cosmic rays detected by the Pierre Auger Observatory Study of the arrival directions of ultra-high-energy cosmic rays detected by the Pierre Auger Observatory Piera L. Ghia*, for the Pierre Auger Collaboration * IFSI/INAF Torino, Italy, & IPN/CNRS Orsay,

More information

Introduction The Role of Astronomy p. 3 Astronomical Objects of Research p. 4 The Scale of the Universe p. 7 Spherical Astronomy Spherical

Introduction The Role of Astronomy p. 3 Astronomical Objects of Research p. 4 The Scale of the Universe p. 7 Spherical Astronomy Spherical Introduction The Role of Astronomy p. 3 Astronomical Objects of Research p. 4 The Scale of the Universe p. 7 Spherical Astronomy Spherical Trigonometry p. 9 The Earth p. 12 The Celestial Sphere p. 14 The

More information

Neutrinos with a cosmic ray detector. Cosmic rays with a neutrino detector

Neutrinos with a cosmic ray detector. Cosmic rays with a neutrino detector Instead of Neutrinos with a cosmic ray detector Cosmic rays with a neutrino detector Anna Nelles University of California Radio emission of showers High energy particles interacting in dense medium (or

More information

Cosmic Rays: A Way to Introduce Modern Physics Concepts. Steve Schnetzer

Cosmic Rays: A Way to Introduce Modern Physics Concepts. Steve Schnetzer Cosmic Rays: A Way to Introduce Modern Physics Concepts Steve Schnetzer Rutgers CR Workshop May 19, 2007 Concepts Astrophysics Particle Physics Radiation Relativity (time dilation) Solar Physics Particle

More information

Unit 1: Space. Section 2- Stars

Unit 1: Space. Section 2- Stars Unit 1: Space Section 2- Stars Stars Recall: stars are celestial bodies of hot gas that give off heat and light Stars The milky way contains hundreds of billions of stars and is only one of hundreds of

More information

AST 101 Introduction to Astronomy: Stars & Galaxies

AST 101 Introduction to Astronomy: Stars & Galaxies AST 101 Introduction to Astronomy: Stars & Galaxies Life and Death of High Mass Stars (M > 8 M sun ) REVIEW Last stage: Iron core surrounded by shells of increasingly lighter elements. REVIEW When mass

More information

Make Your Own Radio Image Large Public Venue Edition

Make Your Own Radio Image Large Public Venue Edition Make Your Own Radio Image Large Public Venue Edition Adapted from the NRAO s Make Your Own Radio Image Background This Activity has been adapted from the NRAO s Make Your Own Radio Image. Radio telescopes

More information

Cosmic Rays. This showed that the energy of cosmic rays was many times that of any other natural or artificial radiation known at that time.

Cosmic Rays. This showed that the energy of cosmic rays was many times that of any other natural or artificial radiation known at that time. Cosmic Rays 1. Discovery As long ago as 1900, C. T. R. Wilson and others found that the charge on an electroscope always 'leaked' away in time, and this could never be prevented, no matter how good the

More information

EVIDENCE OF INTERMEDIATE-SCALE ENERGY SPECTRUM ANISOTROPY IN THE NORTHERN HEMISPHERE FROM TELESCOPE ARRAY

EVIDENCE OF INTERMEDIATE-SCALE ENERGY SPECTRUM ANISOTROPY IN THE NORTHERN HEMISPHERE FROM TELESCOPE ARRAY EVIDENCE OF INTERMEDIATE-SCALE ENERGY SPECTRUM ANISOTROPY IN THE NORTHERN HEMISPHERE FROM TELESCOPE ARRAY Jon Paul Lundquist for the Telescope Array Collaboration ABSTRACT Evidence of an energy dependent

More information

Parameters Sensitive to the Mass Composition of Cosmic Rays and Their Application at the Pierre Auger Observatory

Parameters Sensitive to the Mass Composition of Cosmic Rays and Their Application at the Pierre Auger Observatory WDS'12 Proceedings of Contributed Papers, Part III, 137 141, 2012. ISBN 978-80-7378-226-9 MATFYZPRESS Parameters Sensitive to the Mass Composition of Cosmic Rays and Their Application at the Pierre Auger

More information

Meridian Circle through Zenith, North Celestial Pole, Zenith Direction Straight Up from Observer. South Celestial Pole

Meridian Circle through Zenith, North Celestial Pole, Zenith Direction Straight Up from Observer. South Celestial Pole Chapter 3 How Earth and Sky Work- Effects of Latitude In chapters 3 and 4we will learn why our view of the heavens depends on our position on the Earth, the time of day, and the day of the year. We will

More information

1UNIT. The Universe. What do you remember? Key language. Content objectives

1UNIT. The Universe. What do you remember? Key language. Content objectives 1UNIT The Universe What do you remember? What are the points of light in this photo? What is the difference between a star and a planet? a moon and a comet? Content objectives In this unit, you will Learn

More information

KCDC Simulation Manual

KCDC Simulation Manual KCDC Simulation Manual KCDC - the KASCADE Cosmic Ray Data Centre Open Access Solution for the KArlsruhe Shower Core and Array Detector (KASCADE) KIT - University of the State of Baden-Wuerttemberg and

More information

Cosmic Ray Detector Software

Cosmic Ray Detector Software Cosmic Ray Detector Software Studying cosmic rays has never been easier Matthew Jones Purdue University 2012 QuarkNet Summer Workshop 1 Brief History First cosmic ray detector built at Purdue in about

More information

What we (don t) know about UHECRs

What we (don t) know about UHECRs What we (don t) know about UHECRs We know: their energies (up to 10 20 ev). their overall energy spectrum We don t know: where they are produced how they are produced what they are made off exact shape

More information

An Introduction to Radio Astronomy

An Introduction to Radio Astronomy An Introduction to Radio Astronomy Bernard F. Burke Massachusetts Institute of Technology and Francis Graham-Smith Jodrell Bank, University of Manchester CAMBRIDGE UNIVERSITY PRESS Contents Preface Acknowledgements

More information

The Large Area Telescope on-board of the Fermi Gamma-Ray Space Telescope Mission

The Large Area Telescope on-board of the Fermi Gamma-Ray Space Telescope Mission The Large Area Telescope on-board of the Fermi Gamma-Ray Space Telescope Mission 1 Outline Mainly from 2009 ApJ 697 1071 The Pair Conversion Telescope The Large Area Telescope Charged Background and Events

More information

Understanding Positional Astronomy Part 2 Celestial Co-ordinates Difficulty: Intermediate

Understanding Positional Astronomy Part 2 Celestial Co-ordinates Difficulty: Intermediate Exercise: Understanding Positional Astronomy Part 2 Celestial Co-ordinates Difficulty: Intermediate Objectives In Part 1 you learned about Celestial Sphere and how the stars appear to move across the night

More information

Very High Energy Gamma Ray Astronomy and Cosmic Ray Physics with ARGO-YBJ

Very High Energy Gamma Ray Astronomy and Cosmic Ray Physics with ARGO-YBJ Very High Energy Gamma Ray Astronomy and Cosmic Ray Physics with ARGO-YBJ Ivan DE MITRI Dipartimento di Fisica Università di Lecce and Istituto Nazionale di Fisica Nucleare Lecce,, ITALY On behalf of the

More information

Gamma-ray Astrophysics

Gamma-ray Astrophysics Gamma-ray Astrophysics AGN Pulsar SNR GRB Radio Galaxy The very high energy -ray sky NEPPSR 25 Aug. 2004 Many thanks to Rene Ong at UCLA Guy Blaylock U. of Massachusetts Why gamma rays? Extragalactic Background

More information

Ultra-High Energy Cosmic Rays and Astrophysics. Hang Bae Kim Hanyang University Hangdang Workshop,

Ultra-High Energy Cosmic Rays and Astrophysics. Hang Bae Kim Hanyang University Hangdang Workshop, Ultra-High Energy Cosmic Rays and Astrophysics Hang Bae Kim Hanyang University Hangdang Workshop, 2012. 08. 22 Ultra High Energy Cosmic Rays Ultra High Energy Cosmic Ray (UHECR)» E 3 E & 10 18 ev Energy

More information

Astroparticle Physics with IceCube

Astroparticle Physics with IceCube Astroparticle Physics with IceCube Nick van Eijndhoven nickve.nl@gmail.com http://w3.iihe.ac.be f or the IceCube collaboration Vrije Universiteit Brussel - IIHE(ULB-VUB) Pleinlaan 2, B-1050 Brussel, Belgium

More information

Publications of Francesco Arneodo: journal articles

Publications of Francesco Arneodo: journal articles Publications of Francesco Arneodo: journal articles Figure 1: Citation report from ISI Web of Science (IF=31.0) [1] E. Aprile et al., First Axion Results from the XENON100 Experiment, arxiv.org (submitted

More information

Astronomy 110: SURVEY OF ASTRONOMY. 11. Dead Stars. 1. White Dwarfs and Supernovae. 2. Neutron Stars & Black Holes

Astronomy 110: SURVEY OF ASTRONOMY. 11. Dead Stars. 1. White Dwarfs and Supernovae. 2. Neutron Stars & Black Holes Astronomy 110: SURVEY OF ASTRONOMY 11. Dead Stars 1. White Dwarfs and Supernovae 2. Neutron Stars & Black Holes Low-mass stars fight gravity to a standstill by becoming white dwarfs degenerate spheres

More information

(Astronomy for Dummies) remark : apparently I spent more than 1 hr giving this lecture

(Astronomy for Dummies) remark : apparently I spent more than 1 hr giving this lecture (Astronomy for Dummies) remark : apparently I spent more than 1 hr giving this lecture A.D. 125? Ptolemy s geocentric model Planets ( ) wander among stars ( ) For more info: http://aeea.nmns.edu.tw/aeea/contents_list/universe_concepts.html

More information

Scale in the Universe and Star Life Cycles

Scale in the Universe and Star Life Cycles Scale in the Universe and Star Life Cycles Author: Richard Beare - Faulkes Telescope Project Scale in the Universe and Star Life Cycles Measuring objects in the Solar System Jupiter 2.45 arcmin 4.59 AU

More information

Stellar Explosions (ch. 21)

Stellar Explosions (ch. 21) Stellar Explosions (ch. 21) First, a review of low-mass stellar evolution by means of an illustration I showed in class. You should be able to talk your way through this diagram and it should take at least

More information

GAMMA-RAY ASTRONOMY: IMAGING ATMOSPHERIC CHERENKOV TECHNIQUE FABIO ZANDANEL - SESIONES CCD

GAMMA-RAY ASTRONOMY: IMAGING ATMOSPHERIC CHERENKOV TECHNIQUE FABIO ZANDANEL - SESIONES CCD GAMMA-RAY ASTRONOMY: IMAGING ATMOSPHERIC CHERENKOV TECHNIQUE COSMIC RAYS Discovered in 1912 by Victor Hess (Nobel Prize) Messengers from the non-thermal part of the Universe E < 15 ev: galactic E > 17

More information

Name Class Date. For each pair of terms, explain how the meanings of the terms differ.

Name Class Date. For each pair of terms, explain how the meanings of the terms differ. Skills Worksheet Chapter Review USING KEY TERMS 1. Use each of the following terms in a separate sentence: year, month, day, astronomy, electromagnetic spectrum, constellation, and altitude. For each pair

More information

COMPUTER ACTIVITY 3: THE SEASONS: LENGTH OF THE DAY

COMPUTER ACTIVITY 3: THE SEASONS: LENGTH OF THE DAY NAME ASTRONOMY 20 SECTION DAY/ S. V. LLOYD COMPUTER ACTIVITY 3: THE SEASONS: LENGTH OF THE DAY Overview Software Configuration The seasonal variation in temperature is due to two changes in the Sun's path

More information

arxiv:astro-ph/ v1 1 May 2006

arxiv:astro-ph/ v1 1 May 2006 arxiv:astro-ph/0605020v1 1 May 2006 ANISOTROPY OF THE PRIMARY COSMIC-RAY FLUX IN SUPER-KAMIOKANDE Yuichi Oyama (for Super-Kamiokande collaboration) High Energy Accelerator Research Organization (KEK) Oho

More information

The new Siderius Nuncius: Astronomy without light

The new Siderius Nuncius: Astronomy without light The new Siderius Nuncius: Astronomy without light K. Ragan McGill University STARS 09-Feb-2010 1609-2009 four centuries of telescopes McGill STARS Feb. '10 1 Conclusions Optical astronomy has made dramatic

More information

CSSP14, Sinaia, 25 th July, Space-atmospheric interactions of ultra-high energy. cosmic rays. Gina Isar

CSSP14, Sinaia, 25 th July, Space-atmospheric interactions of ultra-high energy. cosmic rays. Gina Isar CSSP14, Sinaia, 25 th July, 2014 Space-atmospheric interactions of ultra-high energy Gina Isar isar@spacescience.ro cosmic rays Outline Outline Cosmic rays: particles from outer space Earth is subject

More information

Physics Homework Set 2 Sp 2015

Physics Homework Set 2 Sp 2015 1) A large gas cloud in the interstellar medium that contains several type O and B stars would appear to us as 1) A) a reflection nebula. B) a dark patch against a bright background. C) a dark nebula.

More information

Citation for published version (APA): Fathi, K. (2004). Dynamics and morphology in the inner regions of spiral galaxies Groningen: s.n.

Citation for published version (APA): Fathi, K. (2004). Dynamics and morphology in the inner regions of spiral galaxies Groningen: s.n. University of Groningen Dynamics and morphology in the inner regions of spiral galaxies Fathi, Kambiz IMPORTANT NOTE: You are advised to consult the publisher's version (publisher's PDF) if you wish to

More information

Search for TeV Radiation from Pulsar Tails

Search for TeV Radiation from Pulsar Tails Search for TeV Radiation from Pulsar Tails E. Zetterlund 1 1 Augustana College, Sioux Falls, SD 57197, USA (Dated: September 9, 2012) The field of very high energy astrophysics is looking at the universe

More information

Our Solar System: A Speck in the Milky Way

Our Solar System: A Speck in the Milky Way GALAXIES Lesson 2 Our Solar System: A Speck in the Milky Way The Milky Way appears to be curved when we view it but in reality it is a straight line. It is curved due to the combination of pictures taken

More information

Astronomy 101 Lab: Stellarium Tutorial

Astronomy 101 Lab: Stellarium Tutorial Name: Astronomy 101 Lab: Stellarium Tutorial Please install the Stellarium software on your computer using the instructions in the procedure. If you own a laptop, please bring it to class. You will submit

More information

Chapter 13 2/19/2014. Lecture Outline Neutron Stars. Neutron Stars and Black Holes Neutron Stars. Units of Chapter

Chapter 13 2/19/2014. Lecture Outline Neutron Stars. Neutron Stars and Black Holes Neutron Stars. Units of Chapter 13.1 Neutron Stars Lecture Outline Chapter 13 Neutron Stars and After a Type I supernova, little or nothing remains of the original star. After a Type II supernova, part of the core may survive. It is

More information

arxiv: v2 [astro-ph.he] 4 Jun 2014

arxiv: v2 [astro-ph.he] 4 Jun 2014 Experimental Investigation of the Nature of the Knee in the Primary Cosmic Ray Energy Spectrum with the GAMMA experiment arxiv:1406.0799v2 [astro-ph.he] 4 Jun 2014 V. P. Pavlyuchenko a, R. M. Martirosov

More information

Mass Composition Study at the Pierre Auger Observatory

Mass Composition Study at the Pierre Auger Observatory OBSERVATORY Mass Composition Study at the Pierre Auger Observatory Laura Collica for the Auger Milano Group 4.04.2013, Astrosiesta INAF Milano 1 Outline The physics: The UHECR spectrum Extensive Air Showers

More information

Numerical study of the electron lateral distribution in atmospheric showers of high energy cosmic rays

Numerical study of the electron lateral distribution in atmospheric showers of high energy cosmic rays American Journal of Modern Physics 2013; 2(6): 287-291 Published online October 20, 2013 (http://www.sciencepublishinggroup.com/j/ajmp) doi: 10.11648/j.ajmp.20130206.13 Numerical study of the electron

More information

A new mechanism to account for acceleration of the solar wind

A new mechanism to account for acceleration of the solar wind A new mechanism to account for acceleration of the solar wind Henry D. May Email: hankmay@earthlink.net Abstract An enormous amount of effort has been expended over the past sixty years in attempts to

More information

Galaxy Metallicity: What Oxygen Tells Us About The Lifecycles of Galaxies Designed by Prof Jess Werk, modified by Marie Wingyee Lau

Galaxy Metallicity: What Oxygen Tells Us About The Lifecycles of Galaxies Designed by Prof Jess Werk, modified by Marie Wingyee Lau Introduction Galaxy Metallicity: What Oxygen Tells Us About The Lifecycles of Galaxies Designed by Prof Jess Werk, modified by Marie Wingyee Lau Before stars and galaxies came into existence, the very

More information

PDF / WHERE IS THE CENTER OF THE MILKY WAY

PDF / WHERE IS THE CENTER OF THE MILKY WAY 10 April, 2018 PDF / WHERE IS THE CENTER OF THE MILKY WAY Document Filetype: PDF 332.68 KB 0 PDF / WHERE IS THE CENTER OF THE MILKY WAY The center of our galaxy is teeming with black holes, sort of like

More information

Where do they originate? How do they gain their enourmous energies? What happens to them in transit from sources to us?

Where do they originate? How do they gain their enourmous energies? What happens to them in transit from sources to us? What do cosmic rays tell us about : Where do they originate? How do they gain their enourmous energies? What happens to them in transit from sources to us? Energies of cosmic ray particles: 1 watt of power

More information

The Bizarre Stellar Graveyard

The Bizarre Stellar Graveyard The Bizarre Stellar Graveyard 18.1 White Dwarfs Our goals for learning: What is a white dwarf? What can happen to a white dwarf in a close binary system? What is a white dwarf? White Dwarfs White dwarfs

More information

Astronomy Universe: all of space and everything in it

Astronomy Universe: all of space and everything in it Astronomy Universe: all of space and everything in it Most (90%) of the universe is made up of: dark matter: stuff we think is there due to amount of mass we think is there but is not detected by the instruments

More information

Low-Energy Cosmic Rays

Low-Energy Cosmic Rays Low-Energy Cosmic Rays Cosmic rays, broadly defined, are charged particles from outside the solar system. These can be electrons, protons, or ions; the latter two dominate the number observed. They are

More information

Our goals for learning: 2014 Pearson Education, Inc. We see our galaxy edge-on. Primary features: disk, bulge, halo, globular clusters All-Sky View

Our goals for learning: 2014 Pearson Education, Inc. We see our galaxy edge-on. Primary features: disk, bulge, halo, globular clusters All-Sky View Our Galaxy Chapter 19 Lecture The Cosmic Perspective 19.1 The Milky Way Revealed What does our galaxy look like? What does our galaxy look like? How do stars orbit in our galaxy? Seventh Edition Our Galaxy

More information

Deep Sky Astronomy page James E. Kotoski

Deep Sky Astronomy page James E. Kotoski page 1 2001 James E. Kotoski Part II: What is? Have you ever wondered where our solar system came from, or... what is going to happen to it when it dies? Have you ever wondered what a galaxy was, and where

More information

Search for high energy neutrino astrophysical sources with the ANTARES Cherenkov telescope

Search for high energy neutrino astrophysical sources with the ANTARES Cherenkov telescope Dottorato di Ricerca in Fisica - XXVIII ciclo Search for high energy neutrino astrophysical sources with the ANTARES Cherenkov telescope Chiara Perrina Supervisor: Prof. Antonio Capone 25 th February 2014

More information

Assignment #12 The Milky Way

Assignment #12 The Milky Way Name Date Class Assignment #12 The Milky Way For thousands of years people assumed that the stars they saw at night were the entire universe. Even after telescopes had been invented, the concept of a galaxy

More information

IceCube. francis halzen. why would you want to build a a kilometer scale neutrino detector? IceCube: a cubic kilometer detector

IceCube. francis halzen. why would you want to build a a kilometer scale neutrino detector? IceCube: a cubic kilometer detector IceCube francis halzen why would you want to build a a kilometer scale neutrino detector? IceCube: a cubic kilometer detector the discovery (and confirmation) of cosmic neutrinos from discovery to astronomy

More information

9 Exploring GalaxyZoo One

9 Exploring GalaxyZoo One ENGAGING IN ASTRONOMICAL INQUIRY 95 9 Exploring GalaxyZoo One Big Idea: The countless galaxies of stars spread throughout the universe have characteristics that can be observed and classified. Goal: Students

More information

Milky Way s Substance Loop

Milky Way s Substance Loop Milky Way s Substance Loop Wei-Xiong Huang May 6, 2015 Abstract: Milky Way center exists a star of super huge mass, its called milky way "nuclear-star". Its rotation and gravitation led milky way all substances

More information

Stars and Galaxies 1

Stars and Galaxies 1 Stars and Galaxies 1 Characteristics of Stars 2 Star - body of gases that gives off great amounts of radiant energy as light and heat 3 Most stars look white but are actually different colors Antares -

More information

[FILE] MILKY WAY AT HOME EBOOK

[FILE] MILKY WAY AT HOME EBOOK 29 May, 2018 [FILE] MILKY WAY AT HOME EBOOK Document Filetype: PDF 244.76 KB 0 [FILE] MILKY WAY AT HOME EBOOK The galaxy contains about 400 billion stars, with a 4-billion-solar-mass black hole at its

More information

CST Prep- 8 th Grade Astronomy

CST Prep- 8 th Grade Astronomy CST Prep- 8 th Grade Astronomy Chapter 15 (Part 1) 1. The theory of how the universe was created is called the 2. Which equation states that matter and energy are interchangeable? 3. All matter in the

More information

The Stellar Graveyard Neutron Stars & White Dwarfs

The Stellar Graveyard Neutron Stars & White Dwarfs The Stellar Graveyard Neutron Stars & White Dwarfs White Dwarfs White dwarfs are the remaining cores of low-mass (M < 8M sun ) stars Electron degeneracy pressure supports them against gravity Density ~

More information

Detecting Stopping Track Muons with the IceCube Neutrino Observatory

Detecting Stopping Track Muons with the IceCube Neutrino Observatory Detecting Stopping Track Muons with the IceCube Neutrino Observatory Crispin Contreras, McNair Scholar The Pennsylvania State University McNair Faculty Research Advisor: Douglas Cowen, Ph.D Professor of

More information

User's Guide version: 0.06

User's Guide version: 0.06 TEXAS INSTRUMENTS ASTRONOMICAL RESSOURCES & EPHEMERIS http://yann.duchemin.free.fr/astro/tiare/ User's Guide version: 0.06 F o r TI89 TI92(+) V200 c a l c u l a t o r s 23/12/2005 1/10 Many thanks to :

More information

Review Questions for the new topics that will be on the Final Exam

Review Questions for the new topics that will be on the Final Exam Review Questions for the new topics that will be on the Final Exam Be sure to review the lecture-tutorials and the material we covered on the first three exams. How does speed differ from velocity? Give

More information

Black Holes Thursday, 14 March 2013

Black Holes Thursday, 14 March 2013 Black Holes General Relativity Intro We try to explain the black hole phenomenon by using the concept of escape velocity, the speed to clear the gravitational field of an object. According to Newtonian

More information

IceCube: Dawn of Multi-Messenger Astronomy

IceCube: Dawn of Multi-Messenger Astronomy IceCube: Dawn of Multi-Messenger Astronomy Introduction Detector Description Multi-Messenger look at the Cosmos Updated Diffuse Astrophysical Neutrino Data Future Plans Conclusions Ali R. Fazely, Southern

More information

What is a Black Hole?

What is a Black Hole? What is a Black Hole? Robert H. Gowdy Virginia Commonwealth University December 2016 Bob G (VCU) Black Holes December 2016 1 / 29 Black Holes Bob G (VCU) Black Holes December 2016 2 / 29 Overview Spacetime

More information

HiSPARC Detector - Detector Station

HiSPARC Detector - Detector Station HiSPARC Detector - Detector Station Koos Kortland translated and adapted by K. Schadenberg 1 Introduction This module is a part of a series describing the HiSPARC detector. A detector station consists

More information