South Atlantic Anomaly definition

Size: px
Start display at page:

Download "South Atlantic Anomaly definition"

Transcription

1 South Atlantic Anomaly definition A. Contin 1), D. Grandi ) 1) University of Bologna and INFN, Bologna, Italy ) INFN, Milano Bicocca, Italy 19 June 1 1 Introduction The very high rate of particles in the South Atlantic Anomaly (SAA) region, due to the local decrease of the Earth magnetic field, saturates the AMS- data acquisition. It is therefore mandatory to exclude the region from the data analysis. A good definition of the SAA region is needed for an homogenous and coherent data analysis, taking into account that the exclusion of the SAA region subtracts to the experiment total exposure, so it has to be as limited as possible. In the following, the definition of the SAA contour is done in terms of: live time of AMS data acquisition system, as a proxy for the total trigger rate on the detector; absolute particle rate on the first plane of the TOF system; Earth magnetic field. The following analysis has been done using data collected from May 19 to December, 1 reconstructed with the B55 reconstruction program version. Experiment live time The experiment live time is computed through the ratio between two onboard scalers, one which counts the fast trigger (FT) rate when the DAQ is active (i.e., not busy), and the other which counts the total FT rate. The result is shown in Fig. 1 as a function of the geographic coordinates. A cut: defines the white region in Fig.. The total exposure time loss due to cut (1) is.%. Absolute rate on the first TOF plane live time <.65 (1) The TOF time signals and the Fast Trigger are registered on pipeline TDCs. In particular: all Low Threshold (LT) signals are registered in individual channels; the Fast Trigger (FT) signal is registered in one channel in each SFET card. The pipelines length is 655,6 channels at.ps/ch, for a total of 15,86ns. The pipelines are frozen by the LVL1 trigger. As there is a nearly fixed delay between LVL1 and FT, the FT signal is typically in the middle of the pipeline (see Fig. ). The LT signals distribution is shown in Fig.. Off-time events, i.e. events not in coincidence with a trigger, can be clearly identified as the background before and after the triggered events. A fiducial region from to, TDC channels can be defined to look for off-time events, defined as a coincidence of LTs between the two sides of a counter. The time difference between the two sides of a counter 1

2 is shown in Fig. 5a for triggered events and in Fig. 5b for off-time events. The two peaks structure is due to the different time offsets in the different layers. As the two distributions are very similar, we are confident that a coincidence of off-time LT signals in the two sides represents a real particle hitting the counter. Each analyzed event contribute to the live time of the off-time events with,. = 8ns. The total rate in each counter can thus be computed by counting the off-time events in that counter and dividing by the total live time for off-time events. Figure 6 shows the rate of hits in any of the counters in the first TOF layer as a function of the geographic coordinates. A cut: defines the white region in Fig. 7. The total exposure time loss due to cut () is.5%. Earth magnetic field rate > Hz () The Earth has a magnetic field, also known as the geomagnetic field, that extends from the Earth s inner core to where it meets the solar wind. It can be approximated with a magnetic dipole tilted at an angle of 11 o with respect to the rotational axis and shifted from the Earth center. The Earth s field changes over time and it is most probably generated by the motion of charged ions (iron) in the Earth s outer core. The International Geomagnetic Reference Field(IGRF) is a standard mathematical description of the Earth s main magnetic field widely used in studies also for the Earth s magnetosphere. In source-free regions at the Earth s surface and above, the main field, with sources internal to the Earth, is the negative gradient of a scalar potential V which can be represented by a truncated series of spherical harmonic expansion coefficients. These IGRF model coefficients are obtained using magnetic field data from satellites and from observatories and surveys around the world. The Earth magnetic field computed with the last IGRF model (IGRF-11) at an altitude of km from the surface is shown in Fig. 8 as a function of the geographic coordinates. A cut: B <.15 5 T () defines the white region in Fig. 9. We evaluated also the variation of the above mentioned region with altitude, in the range of the ISS motion (down to a minumim of km), and we found that the main differences where below. 5 T, so this essentially do not affect the magnetic definition of this region. The total exposure time loss due to cut () is.%. 5 Conclusions Figure show the comparison between cuts (1), () and () for the identification of the SAA. All three regions are completely superimposed. A simpler solution is to apply a poligonally-shaped cut, as shown in Fig. 11. The coordinates of the points A to E can be written as: A=(-8-α,-1) B=(-8+α,-1) C=(+.5α,-) D=(+α,-6) E=(-8-α,-6) with a free parameter α which determines the width of the poligon in the longitude coordinate. Figure 1 shows the data taking time loss as a function of parameter α. A value α between and seems to be a good compromise, as shown in Fig. 1, giving a total reduction in the exposure time of 11-1%.

3 In Appendix A the code for implementing the cut is given.

4 A Code to implement the cut on an event by event basis bool pnpoly(int npol, float *xp, float *yp, float x, float y){ int i, j; bool c=false; for (i =, j = npol-1; i < npol; j = i++) { if ((((yp[i] <= y) && (y < yp[j])) ((yp[j] <= y) && (y < yp[i]))) && (x < (xp[j] - xp[i]) * (y - yp[i]) / (yp[j] - yp[i]) + xp[i])) c =!c; } return c; }... AMSEventR *pev; float alpha=; float _SAA[5] = {-8.-alpha, *alpha,.+alpha,.+alpha, -8.-alpha}; float Theta_SAA[5] = {-1., -1., -., -6., -6.}; double pigr=acos(-1.);.... event loop... HeaderR* header = &(pev->fheader); float ThetaS = header->thetas*18./pigr; float S = header->s*18./pigr; if(s>18 && S<6) S = -6+S; bool in_saa = pnpoly(5, _SAA, Theta_SAA, S, ThetaS); if(!in_saa ){... event analysis... }

5 Theta Figure 1: Fraction of live time as a function of the geographic coordinates. Theta Figure : Fraction of live time as a function of the geographic coordinates. The white region corresponds to live time <.65. 5

6 events/ TDC ch FT (TDC ch.) Figure : Time distribution of the FT signals. events/ TDC ch LT (TDC ch.) Figure : Time distribution of the LT signals. 6

7 events/ ns 6 5 events/ ns a) b) LTp-LTn (ns) LTp-LTn (ns) Figure 5: Time distribution of the difference between the LT signals from the two sides of a counter for (a) triggered events and (b) off-time events. The two peaks correspond to different planes. Theta Figure 6: Particle rate (Hz) on the first TOF layer as a function of the geographic coordinates. 7

8 Theta Figure 7: Particle rate (Hz) on the first TOF layer as a function of the geographic coordinates. The white region corresponds to a rate > Hz. Theta Figure 8: Magnetic field (T) isolines as a function of the geographic coordinates. 8

9 Theta Figure 9: Magnetic field (T) isolines as a function of the geographic coordinates.the white region corresponds to B <.15 5 T. Theta Figure : SAA definition with the three methods: fraction of live time (blue line), rate (red line), magnetic field (green line). 9

10 Theta A B C - -6 E D Figure 11: SAA definition with a poligon, superimposed to the plot of Fig.. The dashed lines represent the latitude limits of the ISS orbit. exposure loss % 15% % 5% 5 15 α Figure 1: The loss in AMS- exposure time as a function of the parameter α defined in the text.

11 Theta A' A E' E B B' C D C' D' Figure 1: SAA definition with a poligon, superimposed to the plot of Fig. 6 (rate), using a value of α of (solid lne) and (dashed line), as explained in the text. 11

(ii) Observational Geomagnetism. Lecture 5: Spherical harmonic field models

(ii) Observational Geomagnetism. Lecture 5: Spherical harmonic field models (ii) Observational Geomagnetism Lecture 5: Spherical harmonic field models Lecture 5: Spherical harmonic field models 5.1 Introduction 5.2 How to represent functions on a spherical surface 5.3 Spherical

More information

Operational Impacts of Space Weather

Operational Impacts of Space Weather Operational Impacts of Space Weather R. Lambour, A. J. Coster, R. Clouser, L. E. Thornton, J. Sharma, and A. Cott 2001 Space Control Conference 3 April 2001 2001 Space Control Conf. -1 Outline Introduction

More information

Solar Energetic Particles measured by AMS-02

Solar Energetic Particles measured by AMS-02 Solar Energetic Particles measured by AMS-02 Physics and Astronomy Department, University of Hawaii at Manoa, 96822, HI, US E-mail: bindi@hawaii.edu AMS-02 collaboration The Alpha Magnetic Spectrometer

More information

A New Lithospheric Field Model based on CHAMP and Swarm Magnetic Satellite Data

A New Lithospheric Field Model based on CHAMP and Swarm Magnetic Satellite Data A New Lithospheric Field Model based on CHAMP and Swarm Magnetic Satellite Data Nils Olsen 1, Dhananjay Ravat 2, Christopher C Finlay 1, Livia K. Kother 1 1 DTU Space, Technical University of Denmark 2

More information

Introduction to Cosmic Rays Data Analysis Issues. Nicola De Simone INFN and University of Rome Tor Vergata

Introduction to Cosmic Rays Data Analysis Issues. Nicola De Simone INFN and University of Rome Tor Vergata Introduction to Cosmic Rays Data Analysis Issues Nicola De Simone INFN and University of Rome Tor Vergata SciNeGHE 2010 - Data Analysis Tutorial Trieste, September 8-9, 2010 The physics of PAMELA PRL 102,

More information

Geomagnetic cutoff simulations for low-energy cosmic rays

Geomagnetic cutoff simulations for low-energy cosmic rays simulations for low-energy cosmic rays Solar Energetic Particles (SEP), Solar Modulation and Space Radiation: New Opportunities in the AMS-02 Era Honolulu, October 2015 Philip von Doetinchem philipvd@hawaii.edu

More information

The Compact Muon Solenoid Experiment. Conference Report. Mailing address: CMS CERN, CH-1211 GENEVA 23, Switzerland

The Compact Muon Solenoid Experiment. Conference Report. Mailing address: CMS CERN, CH-1211 GENEVA 23, Switzerland Available on CMS information server CMS CR -2009/0 The Compact Muon Solenoid Experiment Conference Report Mailing address: CMS CERN, CH-11 GENEVA 23, Switzerland May 2009 Calibration of the Barrel Muon

More information

Calorimetry in particle physics experiments

Calorimetry in particle physics experiments Calorimetry in particle physics experiments Unit N. 9 The NA48 ECAL example (LKR) Roberta Arcidiacono R. Arcidiacono Calorimetry 1 Lecture overview The requirements Detector layout & construction Readout

More information

Lecture 2. Dipole-Axis-Dependent Coordinate Systems and Near Earth's Magnetic Field

Lecture 2. Dipole-Axis-Dependent Coordinate Systems and Near Earth's Magnetic Field Lecture 2. Dipole-Axis-Dependent Coordinate Systems and Near Earth's Magnetic Field 2.1. Dipole-Axis-Dependent Coordinate Systems Exercise 2.1. Please read the Appendix 3 in the following textbook Introduction

More information

Time variations of proton flux in the Earth inner radiation belt for years based on the PAMELA and the ARINA data

Time variations of proton flux in the Earth inner radiation belt for years based on the PAMELA and the ARINA data Time variations of proton flux in the Earth inner radiation belt for 2006-2015 years based on the PAMELA and the ARINA data 1, S.Yu. Aleksandrin, S.V. Koldashov, A.G. Mayorov, M.A. Mayorova on behalf of

More information

The South Atlantic Anomaly drift on the proton flux data of satellite experiments

The South Atlantic Anomaly drift on the proton flux data of satellite experiments The South Atlantic Anomaly drift on the proton flux data of satellite experiments Author affiliation E-mail: SYAleksandrin@mephi.ru Galper A.M. E-mail: AMGalper@mephi.ru Koldashov S.V. E-mail: SVKoldashov@mephi.ru

More information

OSTST, October 2014

OSTST, October 2014 OSTST, 19-23 October 2014 Update of the South-Atlantic Anomaly corrective model for JASON-1 DORIS data using the maps of energetic particles from the CARMEN dosimeter onboard JASON-2 H. Capdeville (1),

More information

Chapter 6 Local and regional magnetic field measurements and models

Chapter 6 Local and regional magnetic field measurements and models Chapter 6 Local and regional magnetic field measurements and models 1 Previously For the global spherical harmonic expansion model of the Earth's magnetic field (e.g., IGRF), the maximum degree is typically

More information

The Location and Evolution of the South Atlantic Anomaly as Observed by SOLSTICE

The Location and Evolution of the South Atlantic Anomaly as Observed by SOLSTICE The Location and Evolution of the South Atlantic Anomaly as Observed by SOLSTICE Laura O Connor (University of Michigan) Mentor: Marty Snow (Laboratory for Atmospheric and Space Physics) 2011 REU in Solar

More information

Propagation of Cosmic rays in the Heliosphere and in the Earth magnetic field

Propagation of Cosmic rays in the Heliosphere and in the Earth magnetic field Propagation of Cosmic rays in the Heliosphere and in the Earth magnetic field P. Bobik1 - bobik@saske.sk,, G. Boella2, M.J. Boschini2, C. Consolandi2, M. Gervasi2, D. Grandi2, K. Kudela1, F. Noventa2,

More information

High-energy Gamma Rays detection with the AMS-02 electromagnetic calorimeter. F. Pilo for the AMS-02 ECAL Group INFN Sezione di Pisa, Italy

High-energy Gamma Rays detection with the AMS-02 electromagnetic calorimeter. F. Pilo for the AMS-02 ECAL Group INFN Sezione di Pisa, Italy Frascati Physics Series Vol. 58 (2014) Frontier Objects in Astrophysics and Particle Physics May 18-24, 2014 High-energy Gamma Rays detection with the AMS-02 electromagnetic calorimeter F. Pilo for the

More information

Chapter 4 Multipole model of the Earth's magnetic field

Chapter 4 Multipole model of the Earth's magnetic field Chapter 4 Multipole model of the Earth's magnetic field 1 Previously A measurement of the geomagnetic field at any given point and time consists of a superposition of fields from different sources: Internal

More information

1.2 Coordinate Systems

1.2 Coordinate Systems 1.2 Coordinate Systems 1.2.1 Introduction One of the critical factors in the development of the AE9/AP9/SPM model was the selection of coordinate systems for mapping particle flux measurements and the

More information

On the definition and calculation of a generalised McIlwain parameter

On the definition and calculation of a generalised McIlwain parameter Astrophys. Space Sci. Trans., 6, 9 17, 2010 Author(s) 2010. This work is distributed under the Creative Commons Attribution 3.0 License. Astrophysics and Space Sciences Transactions On the definition and

More information

Performance test of triple GEM detector at CERN n_tof facility

Performance test of triple GEM detector at CERN n_tof facility Performance test of triple GEM detector at CERN n_tof facility S.Puddu 2,4, G.Claps 1, G. Croci 3, F. Murtas 1,2, A.Pietropaolo 3, C. Severino 2,4, M. Silari 2 1) LNF-INFN 2) CERN 3)IFP-CNR 4)LHEP-Bern

More information

First scalar magnetic anomaly map from CHAMP satellite data indicates weak lithospheric field

First scalar magnetic anomaly map from CHAMP satellite data indicates weak lithospheric field GEOPHYSICAL RESEARCH LETTERS, VOL. 29, NO. 14, 10.1029/2001GL013685, 2002 First scalar magnetic anomaly map from CHAMP satellite data indicates weak lithospheric field S. Maus, M. Rother, R. Holme, H.

More information

This project has received funding from the European Union s Horizon 2020 research and innovation programme under the Marie-Sklodowska-Curie grant

This project has received funding from the European Union s Horizon 2020 research and innovation programme under the Marie-Sklodowska-Curie grant This project has received funding from the European Union s Horizon 2020 research and innovation programme under the Marie-Sklodowska-Curie grant agreement number 721624. Space weather and the variable

More information

Study of the radiation fields in LEO with the Timepix detector

Study of the radiation fields in LEO with the Timepix detector Study of the radiation fields in LEO with the Timepix detector 1 1, Czech Technical University in Prague 16th Baksan Cosmology School 1/24 Timepix in space 2/24 Proba-V Altitude = 820 km Inclination =

More information

Global Geomagnetic Field Models from DMSP Satellite Magnetic Measurements

Global Geomagnetic Field Models from DMSP Satellite Magnetic Measurements Global Geomagnetic Field Models from DMSP Satellite Magnetic Measurements Patrick Alken Stefan Maus Arnaud Chulliat Manoj Nair Adam Woods National Geophysical Data Center, NOAA, Boulder, CO, USA 9 May

More information

HYPER Industrial Feasibility Study Final Presentation Orbit Selection

HYPER Industrial Feasibility Study Final Presentation Orbit Selection Industrial Feasibility Study Final Presentation Orbit Selection Steve Kemble Astrium Ltd. 6 March 2003 Mission Analysis Lense Thiring effect and orbit requirements Orbital environment Gravity Atmospheric

More information

Cosmic Ray Physics with ARGO-YBJ

Cosmic Ray Physics with ARGO-YBJ Cosmic Ray Physics with ARGO-YBJ Ivan De Mitri University of Salento and Istituto Nazionale di Fisica Nucleare Lecce, Italy On behalf of the ARGO-YBJ Collaboration RICAP-13 Roma International Conference

More information

Myagkova I.N., Panasyuk M.I., Kalegaev V.V. Skobeltsyn Institute of Nuclear Physics, Moscow State University, Moscow

Myagkova I.N., Panasyuk M.I., Kalegaev V.V. Skobeltsyn Institute of Nuclear Physics, Moscow State University, Moscow Myagkova I.N., Panasyuk M.I., Kalegaev V.V. Skobeltsyn Institute of Nuclear Physics, Moscow State University, Moscow Complex ORbital Observations in Near-Earth Space of the Activity of the Sun The third

More information

Measurement of CR anisotropies with the AMS detector on the ISS

Measurement of CR anisotropies with the AMS detector on the ISS Measurement of CR anisotropies with the AMS detector on the ISS J. Casaus ( CIEMAT Spain ) on behalf of the AMS Collaboration Origin of excess of positrons Positron fraction shows an excess above 10 GeV

More information

Correlation Between IGRF2000 Model and Measured Geomagnetic Data on the Territory of the Republic of Macedonia from 2003 and 2004 Measurements

Correlation Between IGRF2000 Model and Measured Geomagnetic Data on the Territory of the Republic of Macedonia from 2003 and 2004 Measurements PUBLS. INST. GEOPHYS. POL. ACAD. SC., C-99 (398), 2007 Correlation Between IGRF2000 Model and Measured Geomagnetic Data on the Territory of the Republic of Macedonia from 2003 and 2004 Measurements Sanja

More information

The Structure of the Magnetosphere

The Structure of the Magnetosphere The Structure of the Magnetosphere The earth s magnetic field would resemble a simple magnetic dipole, much like a big bar magnet, except that the solar wind distorts its shape. As illustrated below, the

More information

DIN EN : (E)

DIN EN : (E) DIN EN 16603-10-04:2015-05 (E) Space engineering - Space environment; English version EN 16603-10-04:2015 Foreword... 12 Introduction... 13 1 Scope... 14 2 Normative references... 15 3 Terms, definitions

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

Chapter 6.2: space based cosmic ray experiments. A. Zech, Instrumentation in High Energy Astrophysics

Chapter 6.2: space based cosmic ray experiments. A. Zech, Instrumentation in High Energy Astrophysics Chapter 6.2: space based cosmic ray experiments 1 A bit of history... space based experiments 1912-1950: first observations of the cosmic ray flux with detectors onboard balloons and air-planes. 1950s/60s:

More information

GE SPACE. Geomagnetic Earth Observation from SPAce

GE SPACE. Geomagnetic Earth Observation from SPAce GE SPACE Geomagnetic Earth Observation from SPAce Fit to NERC s Science Priorities Understanding the complex interactions and feedbacks within the Earth system over a range of space and time scales Fit

More information

Radiation Effects in MMIC Devices

Radiation Effects in MMIC Devices Chapter. Radiation Effects in MMIC Devices C. Barnes and L. Selva I. Introduction The use of microelectronic devices in both civilian and military spacecraft requires that these devices preserve their

More information

Results from the PAMELA Space Experiment

Results from the PAMELA Space Experiment Results from the PAMELA Space Experiment Emiliano Mocchiutti INFN Trieste, Italy On behalf of the PAMELA collaboration VULCANO Workshop 2014 Frontier Objects in Astrophysics and Particle Physics 18th -

More information

November 2013 analysis of high energy electrons on the Japan Experimental Module (JEM: Kibo)

November 2013 analysis of high energy electrons on the Japan Experimental Module (JEM: Kibo) November 2013 analysis of high energy on the Japan Experimental Module (JEM: Kibo) Francis F. Badavi (ODU) Haruhisa Matsumoto, Kiyokazu Koga (JAXA) Christopher J. Mertens, Tony C. Slaba, John W. Norbury

More information

Characterisation of Near-Earth Magnetic Field Data for Space Weather Monitoring

Characterisation of Near-Earth Magnetic Field Data for Space Weather Monitoring Characterisation of Near-Earth Magnetic Field Data for Space Weather Monitoring Qingying Shu Space Glasgow Research Conference 28 October 2014 Acknowledgments This is an interdisciplinary PhD studentship

More information

PAMELA satellite: fragmentation in the instrument

PAMELA satellite: fragmentation in the instrument PAMELA satellite: fragmentation in the instrument Alessandro Bruno INFN, Bari (Italy) for the PAMELA collaboration Nuclear Physics for Galactic CRs in the AMS-02 era 3-4 Dec 2012 LPSC, Grenoble The PAMELA

More information

IGRF-12 GFZ candidates

IGRF-12 GFZ candidates IGRF-12 GFZ candidates V. Lesur 1, M. Rother 1, I. Wardinski 1, R. Schachtschneider 1, M. Hamoudi 2, A. Chambodut 3 October 1, 2014 1 Helmholtz Centre Potsdam, GFZ German Research centre for Geosciences,

More information

arxiv: v1 [astro-ph.he] 2 Jul 2009

arxiv: v1 [astro-ph.he] 2 Jul 2009 PROCEEDINGS OF THE 31 st ICRC, ŁÓDŹ 2009 1 First results on Cosmic Ray electron spectrum below 20 GeV from the Fermi LAT. M.Pesce-Rollins on behalf of the Fermi LAT Collaboration Istituto Nazionale di

More information

A Predictive Code for ISS Radiation Mission Planning

A Predictive Code for ISS Radiation Mission Planning A Predictive Code for ISS Radiation Mission Planning S. El-Jaby, B.J. Lewis Royal Military College of Canada L. Tomi Canadian Space Agency N. Zapp, K. Lee Space Radiation Analysis Group (NASA) 15 th WRMISS

More information

Updated results of the OPERA neutrino-velocity analysis

Updated results of the OPERA neutrino-velocity analysis Updated results of the OPERA neutrino-velocity analysis Maximiliano Sioli (Bologna University and INFN) on behalf of the OPERA Collaboration LNGS Workshop, March 28 th 2012 A brief storyline September

More information

GLAS Atmospheric Products User Guide November, 2008

GLAS Atmospheric Products User Guide November, 2008 GLAS Atmospheric Products User Guide November, 2008 Overview The GLAS atmospheric measurements utilize a dual wavelength (532 nm and 1064 nm) transmitting laser to obtain backscattering information on

More information

Updated Measurements of ACS/SBC Dark Rates

Updated Measurements of ACS/SBC Dark Rates Instrument Science Report ACS 2017-04 Updated Measurements of ACS/SBC Dark Rates R.J. Avila May 3, 2017 Abstract The results of dark rate monitoring programs for the ACS/SBC are presented here. The dark

More information

RICH detectors for LHCb

RICH detectors for LHCb RICH detectors for LHCb Tito Bellunato INFN Milano-Bicocca On behalf of the LHCb RICH collaboration 10th International Conference on Instrumentation for Colliding Beam Physics 10th International Conference

More information

A Search for Cosmic-ray Proton Anisotropy with the Fermi Large Area Telescope

A Search for Cosmic-ray Proton Anisotropy with the Fermi Large Area Telescope A Search for Cosmic-ray Proton Anisotropy with the Fermi Large Area Telescope, Justin Vandenbroucke on behalf of the Fermi-LAT Collaboration Department of Physics and Wisconsin IceCube Particle Astrophysics

More information

Pitch angle distribution of trapped energetic protons and helium isotope nuclei measured along the Resurs-01 No. 4 LEO satellite

Pitch angle distribution of trapped energetic protons and helium isotope nuclei measured along the Resurs-01 No. 4 LEO satellite Annales Geophysicae, 23, 2983 2987, 2005 SRef-ID: 1432-0576/ag/2005-23-2983 European Geosciences Union 2005 Annales Geophysicae distribution of trapped energetic protons and helium isotope nuclei measured

More information

Search for a simultaneous signal from small transient events in the Pierre Auger Observatory and the Tupi muon telescopes

Search for a simultaneous signal from small transient events in the Pierre Auger Observatory and the Tupi muon telescopes Search for a simultaneous signal from small transient events in the Pierre Auger Observatory and the Tupi muon telescopes C.R.A.Augusto, V.Kopenkin *, C.E.Navia and K.H.Tsui Instituto de Física, Universidade

More information

Performance of New and Upgraded Detectors for Luminosity and Beam Condition Measurement at CMS

Performance of New and Upgraded Detectors for Luminosity and Beam Condition Measurement at CMS Performance of New and Upgraded Detectors for Luminosity and Beam Condition Measurement at CMS Jessica Leonard On behalf of CMS BRIL EPS 2015, Vienna July 24, 2015 1 CMS BRIL: Beam Radiation Instrumentation

More information

Radiation Environment. Efforts at JPL. Dr. Henry Garrett. Jet Propulsion Laboratory 4800 Oak Grove Dr. Pasadena, CA 91109

Radiation Environment. Efforts at JPL. Dr. Henry Garrett. Jet Propulsion Laboratory 4800 Oak Grove Dr. Pasadena, CA 91109 Space Modeling Space Radiation Radiation Environment Environment Modeling Efforts Efforts at JPL JPL Dr. Henry Garrett Jet Propulsion Laboratory 4800 Oak Grove Dr. Pasadena, CA 91109 Spacecraft Environmental

More information

Scientists observe the environment around them using their five senses.

Scientists observe the environment around them using their five senses. Earth Science Notes Topics 1: Observation and Measurement Topic 2: The Changing Environment Review book pages 1-38 Scientists observe the environment around them using their five senses. When scientists

More information

Geomagnetic Field Modeling Lessons learned from Ørsted and CHAMP and prospects for Swarm

Geomagnetic Field Modeling Lessons learned from Ørsted and CHAMP and prospects for Swarm Geomagnetic Field Modeling Lessons learned from Ørsted and CHAMP and prospects for Swarm Nils Olsen RAS Discussion Meeting on Swarm October 9 th 2009 Nils Olsen (DTU Space) Ørsted, CHAMP, and Swarm 1 /

More information

The influence of the global atmospheric properties on the detection of UHECR by EUSO on board of the ISS

The influence of the global atmospheric properties on the detection of UHECR by EUSO on board of the ISS The influence of the global atmospheric properties on the detection of UHECR by EUSO on board of the ISS C. Berat, D. Lebrun, A. Stutz, E. Plagnol To cite this version: C. Berat, D. Lebrun, A. Stutz, E.

More information

The Use of Neutron Generators for the Detection of Illicit Materials in the Sea Transportation System

The Use of Neutron Generators for the Detection of Illicit Materials in the Sea Transportation System The Use of Neutron Generators for the Detection of Illicit Materials in the Sea Transportation System G. Nebbia 1), M. Lunardon 1), S. Moretto 1), S. Pesente 1), G. Viesti 1), A. Fontana 2), A. Zenoni

More information

Study of SRC with recoil neutron detection in CLAS6 Data Mining

Study of SRC with recoil neutron detection in CLAS6 Data Mining By: Igor Korover March 8, 2018 Tel Aviv University Study of SRC with recoil neutron detection in CLAS6 Data Mining On going analysis Hall B, NPWG Jefferson Lab, Newport News 1 Short Range Correlation High

More information

On the possibility to forecast severe radiation storms by data from surface and space-born facilities

On the possibility to forecast severe radiation storms by data from surface and space-born facilities On the possibility to forecast severe radiation storms by data from surface and space-born facilities Ashot Chilingarian Cosmic Ray Division, Yerevan Physics Institute, Armenia Aragats Space-Environmental

More information

Tritel: 3D Silicon Detector Telescope used for Space Dosimetry. Tamás Pázmándi, Attila Hirn, Sándor Deme, István Apáthy, Antal Csőke, *László Bodnár

Tritel: 3D Silicon Detector Telescope used for Space Dosimetry. Tamás Pázmándi, Attila Hirn, Sándor Deme, István Apáthy, Antal Csőke, *László Bodnár Tritel: 3D Silicon Detector Telescope used for Space Dosimetry Tamás Pázmándi, Attila Hirn, Sándor Deme, István Apáthy, Antal Csőke, *László Bodnár KFKI Atomic Energy Research Institute, H-1525 Budapest,

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

Detection of TeV Gamma-Rays from Extended Sources with Milagro

Detection of TeV Gamma-Rays from Extended Sources with Milagro Detection of TeV Gamma-Rays from Extended Sources with Milagro P. M. Saz Parkinson for the Milagro Collaboration Santa Cruz Institute for Particle Physics, University of California, 1156 High Street, Santa

More information

Status and Perspectives of the LAGO Project

Status and Perspectives of the LAGO Project Status and Perspectives of the LAGO Project 5 th Workshop on Air Shower Detection at High Altitude Paris, France Édgar F. Carrera ecarrera@usfq.edu.ec (for the LAGO Collaboration) Universidad San Francisco

More information

LIGO sees binary neutron star merger on August 17, 2017

LIGO sees binary neutron star merger on August 17, 2017 LIGO sees binary neutron star merger on August 17, 2017 Laser Interferometer Gravitational-Wave Observatory (LIGO) Laser Interferometer Gravitational-Wave Observatory (LIGO) Multi-Messenger Astronomy This

More information

Timing resolution measurement of a 3 Lanthanum Bromide detector

Timing resolution measurement of a 3 Lanthanum Bromide detector Timing resolution measurement of a 3 Lanthanum Bromide detector L. Galli, M. De Gerone, S. Dussoni, D. Nicolò, A.Papa, F. Tenchini, G. Signorelli INFN Pisa, INFN Genova, PSI Villigen 1 th Pisa Meeting

More information

SuperDARN assimilative mapping

SuperDARN assimilative mapping JOURNAL OF GEOPHYSICAL RESEARCH: SPACE PHYSICS, VOL. 118, 7954 7962, doi:1.2/213ja19321, 213 SuperDARN assimilative mapping E. D. P. Cousins, 1 Tomoko Matsuo, 2,3 and A. D. Richmond 1 Received 14 August

More information

Search for Antiparticles in Cosmic Rays in Space and the Earth s Atmosphere. Philip von Doetinchem I. Phys. Inst. B, RWTH Aachen University

Search for Antiparticles in Cosmic Rays in Space and the Earth s Atmosphere. Philip von Doetinchem I. Phys. Inst. B, RWTH Aachen University Search for Antiparticles in Cosmic Rays in Space and the Earth s Atmosphere Philip von Doetinchem I. Phys. Inst. B, RWTH Aachen University Hausseminar, Aachen 6th of June 008 Overview cosmic ray physics

More information

ANAIS: Status and prospects

ANAIS: Status and prospects LSC Laboratorio Subterráneo de Canfranc ANAIS: Status and prospects Miguel Ángel Oliván on behalf of the ANAIS team Universidad de Zaragoza Laboratorio Subterráneo de Canfranc RICAP 2014 Roma International

More information

New advances in geomagnetic field modeling

New advances in geomagnetic field modeling New advances in geomagnetic field modeling Patrick Alken, Arnaud Chulliat, Manoj Nair, Brian Meyer, Rick Saltus, Adam Woods, Nir Boneh University of Colorado at Boulder, Boulder, CO National Centers for

More information

arxiv: v1 [physics.ins-det] 3 Feb 2011

arxiv: v1 [physics.ins-det] 3 Feb 2011 Nuclear Instruments and Methods in Physics Research A 00 (2018) 1 5 Alogo.pdf Nuclear Instruments and Methods in Physics Research A Scintillation decay time and pulse shape discrimination in oxygenated

More information

Satellite Geodesy and Navigation Present and Future

Satellite Geodesy and Navigation Present and Future Satellite Geodesy and Navigation Present and Future Drazen Svehla Institute of Astronomical and Physical Geodesy Technical University of Munich, Germany Content Clocks for navigation Relativistic geodesy

More information

Experimental studies of East-West effect of the charge ratio of atmospheric muons with energies relevant to the atmospheric neutrino anomaly

Experimental studies of East-West effect of the charge ratio of atmospheric muons with energies relevant to the atmospheric neutrino anomaly Experimental studies of East-West effect of the charge ratio of atmospheric muons with energies relevant to the atmospheric neutrino anomaly I.M.Brancus, J.Wentz,, B.Mitrica, H.Rebel,, M.Petcu, A.Bercuci,,

More information

SEVAN particle detector at Zagreb Astronomical Observatory: 10 years of operation

SEVAN particle detector at Zagreb Astronomical Observatory: 10 years of operation SEVAN particle detector at Zagreb Astronomical Observatory: 10 years of operation F. Šterc ¹, D. Roša ¹, D. Maričić ¹, D. Hržina ¹, I. Romštajn ¹, A. Chilingarian ², T. Karapetyan ², D. Cafuta ³ and M.

More information

arxiv: v1 [physics.ins-det] 22 Dec 2013

arxiv: v1 [physics.ins-det] 22 Dec 2013 arxiv:1312.6334v1 [physics.ins-det] 22 Dec 213 Test of the prototype of electron detector for LHAASO project using cosmic rays * WANG Xu 1 XU Tongye 1 DU Yanyan 1 SHAO Ruobin 1 ZHU Chengguang 1;1) for

More information

Evaluation of the New Trapped Proton Model (AP9) at ISS Attitudes. Francis F. Badavi. (NASA Langley Radiation Team)

Evaluation of the New Trapped Proton Model (AP9) at ISS Attitudes. Francis F. Badavi. (NASA Langley Radiation Team) Evaluation of the New Trapped Proton Model () at ISS Attitudes Francis F. Badavi (NASA Langley Radiation Team) Old Dominion University, Norfolk, VA 359, USA WRMISS8, 3-5 September 3, Budapest, Hungary

More information

Status and Perspectives of the LAGO Project

Status and Perspectives of the LAGO Project Status and Perspectives of the LAGO Project 5 th Workshop on Air Shower Detection at High Altitude Paris, France Édgar F. Carrera ecarrera@usfq.edu.ec (for the LAGO Collaboration) Universidad San Francisco

More information

12. Low Latitude A.urorae on October 21, I

12. Low Latitude A.urorae on October 21, I No. 3] Proc. Japan Acad., 66, Ser. B (199) 47 12. Low Latitude A.urorae on October 21, 1989. I By Hiroshi MIYAOKA, *) Takeo HIRASAWA, *) Kiyohumi and Yoshihito TANAKA**> (Communicated by Takesi NAGATA,

More information

BIRA-IASB, 30th October 2006

BIRA-IASB, 30th October 2006 Satellite Anomalies and Launch Failures: Space Weather Connection by Natalia Romanova (runatka@mail.ru) Belgian Institute for Space Aeronomy Institute of the Physics of the Earth, Moscow, Russia BIRA-IASB,

More information

Status of ARGO-YBJ: an overview

Status of ARGO-YBJ: an overview Status of ARGO-YBJ: an overview M. Iacovacci a for the ARGO-YBJ Collaboration a INFN and University of Napoli, Complesso Universitario MSA, Via Cintia, 80126 Napoli, Italy Within a Collaboration Agreement

More information

Using This Flip Chart

Using This Flip Chart Using This Flip Chart Solar storms can cause fluctuations in the magnetosphere called magnetic storms. These magnetic storms have disabled satellites and burned out transformers shutting down power grids.

More information

Fluxes of Galactic Cosmic Rays

Fluxes of Galactic Cosmic Rays Fluxes of Galactic Cosmic Rays sr s m - GeV Flux solar Modulation: Φ = 550 MV proton helium positron electron antiproton photon galdef 50080/60080 (γ) Status of Cosmic Ray Measurements: good agreement

More information

CHAPTER X. Second Half Review 2017

CHAPTER X. Second Half Review 2017 CHAPTER X Second Half Review 217 Here is a quick overview of what we covered in the second half of the class. Remember that the final covers the whole course but there will naturally be a bias towards

More information

Midterm Review #4 -FR

Midterm Review #4 -FR Base your answers to questions 1 through 3 on the diagram below, which represents a north polar view of Earth on a specific day of the year. Solar times at selected longitude lines are shown. Letter A

More information

Electron Polar Cap and the Boundary oœ Open Geomagnetic Field Lines

Electron Polar Cap and the Boundary oœ Open Geomagnetic Field Lines VOL. 77, NO. 28 JOURNAL OF GEOPHYSICAL RESEARCH OCTOBER 1, 1972 Electron Polar Cap and the Boundary oœ Open Geomagnetic Field Lines L. C. EVANS 1 AND E. C. STONE 2 California Institute o[ Technology, Pasadena,

More information

Cosmic Ray Physics with ARGO-YBJ

Cosmic Ray Physics with ARGO-YBJ Cosmic Ray Physics with ARGO-YBJ Ivan De Mitri University of Salento and Istituto Nazionale di Fisica Nucleare Lecce, Italy On behalf of the ARGO-YBJ Collaboration 4th Workshop on Air Shower Detection

More information

Algorithms for inverting radio occultation signals in the ionosphere

Algorithms for inverting radio occultation signals in the ionosphere Algorithms for inverting radio occultation signals in the ionosphere This document describes the algorithms for inverting ionospheric radio occultation data using the Fortran 77 code gmrion.f and related

More information

Measuring Planet Earth Regents Review. 2. State the altitude of Polaris as seen by an observer at the North Pole.

Measuring Planet Earth Regents Review. 2. State the altitude of Polaris as seen by an observer at the North Pole. Name Measuring Planet Earth Regents Review ase your answers to questions 1 through 3 on the diagram below, which represents a north polar view of Earth on a specific day of the year. Solar times at selected

More information

High Dose Rates by Relativistic Electrons: Observations on Foton M2/M3 satellites and on International Space Station

High Dose Rates by Relativistic Electrons: Observations on Foton M2/M3 satellites and on International Space Station High Dose Rates by Relativistic Electrons: Observations on Foton M2/M3 satellites and on International Space Station Ts. Dachev 1, B. Tomov 1, Yu.. Matviichuk 1 1, Pl.. Dimitrov 1 1 N. Bankov 2 1 Solar-Terrestrial

More information

UPPER ATMOSPHERIC DENSITIES DERIVED FROM STARSHINE SPACECRAFT ORBITS

UPPER ATMOSPHERIC DENSITIES DERIVED FROM STARSHINE SPACECRAFT ORBITS UPPER ATMOSPHERIC DENSITIES DERIVED FROM STARSHINE SPACECRAFT ORBITS R. G. Moore 1, J. Lean 2, J. M. Picone 2, S. Knowles, A. Hedin 2, and J. Emmert 2 1. 855 Sierra Vista Road, Monument CO 8012 2. Naval

More information

Particle Identification at a super B Factory. FRASCATI WORKSHOP DISCUSSION ON PID

Particle Identification at a super B Factory. FRASCATI WORKSHOP DISCUSSION ON PID Particle Identification at a super B Factory. FRASCATI WORKSHOP DISCUSSION ON PID Do no harm! ( The Hippocratic oath of detector designers, especially for those outside you ). Keep a minimum thickness

More information

Calculation of Cosmic Radiation Exposure of Aircrew: PCAIRE Code

Calculation of Cosmic Radiation Exposure of Aircrew: PCAIRE Code Calculation of Cosmic Radiation Exposure of Aircrew: PCAIRE Code B.J. Lewis, L.G.I. Bennett with A.R. Green, M.J. McCall, M. Pierre, B. Ellaschuk and A. Butler Royal Military College of Canada Air Crew

More information

INAF-Osservatorio astrofisico di Torino Technical Report nr. 167

INAF-Osservatorio astrofisico di Torino Technical Report nr. 167 INAF-Osservatorio astrofisico di Torino Technical Report nr. 167 Simulation of Visible Light and UV images for the METIS coronagraph Alessandro Bemporad Pino Torinese, 9 ottobre 2014 Simulation of Visible

More information

U.S. Radiation Dose Limits for Astronauts

U.S. Radiation Dose Limits for Astronauts U.S. Radiation Dose Limits for Astronauts Link to Abstract Link to Menu Health Physics Society 56 th Annual Meeting, West Palm Beach, Florida In lieu of TAM-E.6, Tuesday, June 28, 2011 Daniel J. Strom,

More information

Variations of Ion Drifts in the Ionosphere at Low- and Mid- Latitudes

Variations of Ion Drifts in the Ionosphere at Low- and Mid- Latitudes Variations of Ion Drifts in the Ionosphere at Low- and Mid- Latitudes Edgardo E. Pacheco Jicamarca Radio Observatory Jul, 2014 Outline Motivation Introduction to Ionospheric Electrodynamics Objectives

More information

North-South Offset of Heliospheric Current Sheet and its Causes

North-South Offset of Heliospheric Current Sheet and its Causes North-South Offset of Heliospheric Current Sheet and its Causes X. P. Zhao, J. T. Hoeksema, P. H. Scherrer W. W. Hansen Experimental Physics Laboratory, Stanford University Abstract Based on observations

More information

Cluster and DEMETER Satellite Data. Fabien Darrouzet (Belgian Institute for Space Aeronomy (IASB-BIRA))

Cluster and DEMETER Satellite Data. Fabien Darrouzet (Belgian Institute for Space Aeronomy (IASB-BIRA)) Cluster and DEMETER Satellite Data Fabien Darrouzet (Belgian Institute for Space Aeronomy (IASB-BIRA)) 1 Outline Magnetosphere Plasmasphere Cluster Mission WHISPER Instrument and Data DEMETER Mission ISL

More information

Hall-D Update. Eric Pooser. Joint Hall A/C Summer Collaboration Meeting 07/18/2015

Hall-D Update. Eric Pooser. Joint Hall A/C Summer Collaboration Meeting 07/18/2015 1 Hall-D Update Joint Hall A/C Summer Collaboration Meeting 07/18/2015 Current Hall-D Physics Program 2 Slide Courtesy of E. Chudakov Hybrid & Exotic Hybrid Mesons 3 Conventional light mesons (π, K, η,

More information

C) D) 3. Which pie graph correctly shows the percentage of elements by volume in Earth s troposphere? A)

C) D) 3. Which pie graph correctly shows the percentage of elements by volume in Earth s troposphere? A) 1. Precise measurements of the Earth indicate that its polar diameter is A) shorter than its equatorial diameter B) longer than its equatorial diameter C) the same length as its equatorial diameter 2.

More information

Westward drift in secular variation of the main geomagnetic field inferred from IGRF

Westward drift in secular variation of the main geomagnetic field inferred from IGRF Earth Planets Space, 55, 131 137, 2003 Westward drift in secular variation of the main geomagnetic field inferred from IGRF Zi-Gang Wei and Wen-Yao Xu Institute of Geology and Geophysics, Chinese Academy

More information

RELATIVISTIC ELECTRONS AND ULF-ACTIVITY DYNAMICS DURING CIR- AND CME-STORMS IN MAY 2005

RELATIVISTIC ELECTRONS AND ULF-ACTIVITY DYNAMICS DURING CIR- AND CME-STORMS IN MAY 2005 RELATIVISTIC ELECTRONS AND ULF-ACTIVITY DYNAMICS DURING CIR- AND CME-STORMS IN MAY 2005 Myagkova I.N. 1, Kozyreva O.V. 2, 3 1 Skobeltsyn Institute of Nuclear Physics, Moscow State University, Moscow; 2

More information

michele piana dipartimento di matematica, universita di genova cnr spin, genova

michele piana dipartimento di matematica, universita di genova cnr spin, genova michele piana dipartimento di matematica, universita di genova cnr spin, genova first question why so many space instruments since we may have telescopes on earth? atmospheric blurring if you want to

More information

Introduction to Satellite Orbits

Introduction to Satellite Orbits Introduction to Satellite Orbits Dinesh Manandhar Center for Spatial Information Science The University of Tokyo Contact Information: dinesh@iis.u-tokyo.ac.jp Slide : 1 Basics of Satellite Orbits The speed

More information