Calculation of diffusive particle acceleration by shock waves using asymmetric skew stochastic processes

Size: px
Start display at page:

Download "Calculation of diffusive particle acceleration by shock waves using asymmetric skew stochastic processes"

Transcription

1 Calculation of diffusive particle acceleration by ock waves using asymmetric skew stochastic processes Astronum June 9, 9 Ming Zhang Florida Institute of Technology

2 Cosmic ray or energetic particle transport in interstellar magnetic and interplanetary magnetic field is most likely a diffusion process in phase space. The distribution function of particles can be described by a Fokker-Planck equation. The applicable problems include:. Solar modulation of cosmic rays. Cosmic ray propagation through interstellar medium with nuclear interaction network 3. Diffusive ock acceleration 4. Solar energetic particles 5. Second order Fermi

3 Einstein Theory of Brownian Motion HO Pollen F for steady state kv F ma F dt ( White k Noise) dt Langevin Equation: d(t) dt V(,t) (,t)*"noise" Stochastic differential equation: d( t) V (, t) dt (, t) dw ( t) (Ito type) where dw ( t) " noise"* dt with (dw(t)) dt, a Wiener (Gaussian) processs

4 Fokker-Planck Equation For a stochastic process: (Ito) d(t) V(,t)dt (,t)dw(t) The probability density to find the process at a given time and location follows a Fokker-Planck equation: P(,t ;,t) t [ diffusion coefficient is: (,t) V(,t)]P(,t ;,t)] (Time forward) P(,t ;,t) t [ (,t ) V(,t ) ]P(,t ;,t)] (Time backward)

5 Solar Modulation of Cosmic Ray Clima Neutron Monitor (Cosmic Ray Intensity) Sunspot Number Cosmic Ray Intensity, Percent of 954 Minimum Modulation Level CS Tilt S+ N- S- N+ N-S+ N+S- <<< Solar Polar Reversals 5 5 Smoothed Sunspot Number Current Sheet Tilt (Degree)

6 Modulated cosmic ray spectra Hydrogen 5 Flu (particles/(m sr s Mev/n) Helium Carbon + Oygen E.75 Energy (GeV/n)

7 Cosmic ray transport mechanisms in the heliosphere Drift V d Solar wind Convection V sw Adiabatic deceleration Inward diffusion ISM f (, p, t ) t with and f f f ism (f ) Diffusion V sw f Convection V d f Drift ( V sw ) p f Adiabatic energy change 3 p f ( D ) Second Fermi pp p p p ( p ) at outer at inner boundary boundary

8 Stochastic method to solve cosmic ray modulation spectra Interstellar Spectrum f ism (p) (p e ) (p e ) Backward trajectory of particles 3 d(s) i dw i (s) i ( V V d )ds dp(s) (V) pds 3 all starting at (,p,t) Modulated spectrum f (, p, t) f b f ism ( p eit )

9 Particle drift in inhomogeneous magnetic field Gradient drift Drift path of protons Drift in the current eet V d B pcv B 3q B A r ( rˆ r sin ˆ) H ( ) cs Vsw V dcs pcv ( cs ) 3qB (singularity)

10 Distribution of particle ( GeV/c) intensity on a sphere at AU in an asymmetric heliospheric field Latitude (deg) Longitude (deg) Ulysses/IMP-8 >9 MeV p E>9 MeV GCR North pole South pole Ulysses Latitude

11 3-d MHD model heliosphere Termination ock MHD model heliosphere provided by Linde et al. (998)

12 Diffusive Shock Acceleration Nearly isotropic distribution f t f V f 3 Vp f p Stochastic simulation (time forward): d dw ( V) dt p dp Vdt 3 At ock V ( V n V n ) ( ( ) nˆ ( ) ) (3- d) (singularity) upstream : downstream : V n V n V n V ( n ( ), ( ), ( ) )

13 How to integrate ( ) dt In normal calculus: d ( ) dt ( ) dt v dt v fied time In stochastic calculus: d ( ) dt ( ) dt? dw( t) v dt random time Remove the singularity in stochastic differential equation s( )( ), s( ),, for for for d d d! s( )[ dw( t) Vdt] s ) d d s ( )( ) ( ) dt (

14 Skew stochastic process ] ) ( [ ) ( time Local d d s dt L t ) )( ( s ) )( ( s d d dt ( ) ) ( skew ] ) ( )[ ( Vdt dw t s d (no singularity) ( ) s )] ( ) ( [ ) ( scheme Euler n n n n sign sign t

15 Full code for time-dependent diffusive ock acceleration implicit real*8 (a-h,o-z) implicit integer (i-n) dimension p(),pb() character ttime*4,cmon()*3 integer iyr,imon(),idom,idoy,ihr,imn,isc data imon/,3,59,9,,5,8,,43,73,34,334/ data cmon/"jan","feb","mar","apr","may","jun", + "Jul","Aug","Sep","Oct","Nov","Dec"/ common /param/v,v,rb,gm,gp,gc,b,iseed,nz,nm data ep/e-/ iseed=-88 c start the injection ntp=5 do i=,ntp p()=-ep p()=. pb()=rb te=. call walk(p,pb,te,ns) write(6,96) pb,te,ns 96 format(3e.4,i) enddo stop end ccccccccccccccccccccccccccccccccccccccccccccccccccccc cccc subroutine walk(p,pb,te,ns) c random walk in the ock frame ( in Cartisian) implicit real*8 (a-h,o-z) implicit integer (i-n) c p = (, p) dimension p(),pb() common /param/v,v,rb,gm,gp,gc,b,iseed,nz,nm data ts/e-/,ts/.e-4/ dt=*gc/v/v*ts dt=*gc/v/v*ts srdt=sqrt(dt) srdt=sqrt(dt) =p() p=p() t=. n= c find the convection speed and sign of, scaling factor, and y if(.lt.) then v=v nsgn=- sf=gp/(gp+gm) y=sf* else if(.eq.) then v=(v+v)/. nsgn= sf=.5 y=sf* else v=v nsgn= sf=gm/(gp+gm) y=sf* endif endif c find the diffusion coeficients call getdc(,p,gc,dgc) g=gc+.5*(gp-gm)*nsgn dg=dgc c c find time step side c to increase accrucy near the ock dma=3*sqrt(*g)*srdt dmin=3*sqrt(*g)*srdt if(nsgn*.gt.dma) then dt=dt srdt=srdt else if(nsgn*.lt.dmin) then dt=dt srdt=srdt else dt=dt+(dt-dt)/(dma*dmadmin*dmin)*(*-dmin*dmin) srdt=sqrt(dt) endif endif t=t+dt n=n+ c step forward dw=srdt*gasdev(iseed) dy=sf*((v+dg)*dt+sqrt(*g)*dw) y=y+dy c find the convection sign of and convert y to c and speed, scaling factor for net step, if(y.lt.) then v=v nsgn=- sf=gp/(gp+gm) =y/sf else if(y.eq.) then v=(v+v)/. nsgn= sf=.5 =y/sf else v=v nsgn= sf=gm/(gp+gm) =y/sf endif endif c local time dlt=(.5/gm+.5/gp)*(nsgn-nsgn)*y dp=./3.*(v-v)*p*dlt p=p+dp c write the trajectory to file 8 c write(8,98),p,t 98 format(3e.4) c if(nsgn*.lt.pb()) then if(t.lt.te) then nsgn=nsgn goto endif c eit from the boundary pb()= pb()=p ns=n te=t return end ccccccccccccccccccccccccccccccccccccccccccccccccccccc ccccccccccccc subroutine getdc(,p,gc,dgc) c subroutine to calculate diffusion coeffient at (,p) and its gradient implicit real*8 (a-h,o-z) implicit integer (i-n) common /param/v,v,rb,gm,gp,gc,b,iseed,nz,nm gc=gc*p**b*f() dgc=gc*p**b*df() return end function f() c position dependence of the diffusion coefficient implicit real*8 (a-h,o-z) f=. return end function df() c derivative of f() implicit real*8 (a-h,o-z) df=. return end

16 Comparison with analytical solution -d ock, monoenergetic particle injection at ock at t=

17 Evolution of particle spectrum at the ock

18 Transport equation for particles with large anisotropy f ( t, r, p, ) t f cross - field diffusion ( Vsw Vd vbˆ) f convection, drift and streaming f D pitch angle diffusion ( ) v ( ) ( 3 ˆ ˆ f Vsw bb : Vsw) focusing LB - ( ˆ ˆ : ) ˆ ˆ : f qe p V energy gain sw bb Vsw bb Vsw p Stochastic differential equation solver d dp d κ D dw( s) ( κ ( V sw bb ˆ ˆ : V D dw( s) V sw sw V B d vbˆ) ds ) bb ˆ ˆ : V sw pds ( ) v ( ) ( V L sw 3ˆ bbˆ : V sw ) ds

19 Shock layer -3 Particles injected at 5 kev, Bn =6 o -3 Particles injected at 5 kev, Bn =87 o Intensity kev p 64 kev p 79 kev p Intensity kev p 64 kev p 79 kev p - - Distance (AU) Distance (AU) Particles injected at 5 kev, Bn =6 o -3 Particles injected at 5 kev, Bn =6 o Intensity kev p 64 kev p 79 kev p Intensity kev p 64 kev p 79 kev p - - Distance (AU) Distance (AU) 3 4 5

20 Particles injected at 5 kev, Bn =6 o Particles injected at 5 kev, Bn =87 o - downstream upstream.4 AU upstream - downstream upstream.4 AU upstream f=j/p^ - -3 f=j/p^ Energy (MeV) Energy (MeV) Bn =6 o downstream upstream.4 AU upstream..8.6 downstream upstream.4 AU upstream Bn =87 o J front /J back J front /J back Energy (MeV) Energy (MeV) 3 4 5

21 Particle acceleration by the termination ock and helioeath Voyager observations ow that anomalous cosmic rays are accelerated beyond the termination ock Acceleration mechanisms of particle acceleration in the helioeath adiabatic heating by plasma compression in the helioeath Second order Fermi acceleration with D pp p VA v D p V A A

22 Particle acceleration by the termination ock and helioeath A. Plain ock acceleration Speed (km/s) 4 3 Solar wind Alfven dlog(p)/dt X (AU) X (AU) B. Shock acceleration with second-order Fermi acceleration Speed (km/s) 4 3 Solar wind Alfven dlog(p)/dt X (AU) X (AU)

23 C. Shock acceleration with adiabatic post-ock compression Speed (km/s) 4 3 Solar wind Alfven dlog(p)/dt X (AU) X (AU) D. Shock acceleration with adiabatic post-ock compression and stochastic acceleration Speed (km/s) 4 3 Solar wind Alfven dlog(p)/dt X (AU) X (AU)

24 A B 9 9 Radial distance (AU) Radial distance (AU) 8. Energy (MeV) 8. Energy (MeV) Energy (MeV). Energy (MeV) Radial distance (AU) Radial distance (AU) C - - log(j arbitrary unit) D -3-4

25 A 3 He spectra at the ock B 3 He spectra at AU downstream Log(J) - Log(J) Model A Model B Model C Model D - -3 Model A Model B Model C Model D Energy (MeV). Energy (MeV)

26 Stochastic differential equation vs. Fokker-Planck equation Monte-Carlo simulation with SDE can be used to solve Fokker- Planck equation. Track stochastic trajectories to look into the details of particle transport. Problems in high dimensions do not necessarily increase computation demand. Programming is etremely simple and less numerical instability. Singularity in stochastic differential equations can be solved by skew Brownian motion Application to ock acceleration (both isotropic and focus transport) Application to particle drift in heliospheric current eet

A NEW MODEL FOR REALISTIC 3-D SIMULATIONS OF SOLAR ENERGETIC PARTICLE EVENTS

A NEW MODEL FOR REALISTIC 3-D SIMULATIONS OF SOLAR ENERGETIC PARTICLE EVENTS A NEW MODEL FOR REALISTIC 3-D SIMULATIONS OF SOLAR ENERGETIC PARTICLE EVENTS Nicolas Wijsen KU Leuven In collaboration with: A. Aran (University of Barcelona) S. Poedts (KU Leuven) J. Pomoell (University

More information

Solar energetic particles and cosmic rays

Solar energetic particles and cosmic rays Solar energetic particles and cosmic rays Energetic particles in the heliosphere Solar energetic particles and cosmic rays Energy spectra and acceleration Particle propagation and transport Pick-up ions,

More information

Acceleration of energetic particles by compressible plasma waves of arbitrary scale sizes DOI: /ICRC2011/V10/0907

Acceleration of energetic particles by compressible plasma waves of arbitrary scale sizes DOI: /ICRC2011/V10/0907 3ND INTERNATIONAL COSMIC RAY CONFERENCE, BEIJING Acceleration of energetic particles by compressible plasma s of arbitrary scale sizes MING ZHANG Department of Physics and Space Sciences, Florida Institute

More information

What is New in the Outer Heliosphere?: Voyager and IBEX

What is New in the Outer Heliosphere?: Voyager and IBEX What is New in the Outer Heliosphere?: Voyager and IBEX Marty Lee Durham, New Hampshire USA 1 Our Local Interstellar Environment From E. Möbius Pogorelov et al., 2008 Plasma & Neutral Parameters R = 1

More information

THE PHYSICS OF PARTICLE ACCELERATION BY COLLISIONLESS SHOCKS

THE PHYSICS OF PARTICLE ACCELERATION BY COLLISIONLESS SHOCKS THE PHYSICS OF PARTICLE ACCELERATION BY COLLISIONLESS SHOCKS Joe Giacalone Lunary & Planetary Laboratory, University of Arizona, Tucson, AZ, 8572, USA ABSTRACT Using analytic theory, test-particle simulations,

More information

Mesoscale Variations in the Heliospheric Magnetic Field and their Consequences in the Outer Heliosphere

Mesoscale Variations in the Heliospheric Magnetic Field and their Consequences in the Outer Heliosphere Mesoscale Variations in the Heliospheric Magnetic Field and their Consequences in the Outer Heliosphere L. A. Fisk Department of Atmospheric, Oceanic, and Space Sciences, University of Michigan, Ann Arbor,

More information

8.2.2 Rudiments of the acceleration of particles

8.2.2 Rudiments of the acceleration of particles 430 The solar wind in the Universe intergalactic magnetic fields that these fields should not perturb them. Their arrival directions should thus point back to their sources in the sky, which does not appear

More information

Solar wind termination shock and heliosheath effects on the modulation of protons and antiprotons

Solar wind termination shock and heliosheath effects on the modulation of protons and antiprotons JOURNAL OF GEOPHYSICAL RESEARCH, VOL. 109,, doi:10.1029/2003ja010158, 2004 Solar wind termination shock and heliosheath effects on the modulation of protons and antiprotons U. W. Langner and M. S. Potgieter

More information

GALACTIC COSMIC-RAY MODULATION USING A SOLAR MINIMUM MHD HELIOSPHERE: A STOCHASTIC PARTICLE APPROACH

GALACTIC COSMIC-RAY MODULATION USING A SOLAR MINIMUM MHD HELIOSPHERE: A STOCHASTIC PARTICLE APPROACH The Astrophysical Journal, 634:1116 1125, 2005 December 1 # 2005. The American Astronomical Society. All rights reserved. Printed in U.S.A. GALACTIC COSMIC-RAY MODULATION USING A SOLAR MINIMUM MHD HELIOSPHERE:

More information

Cosmic Rays in the Heliosphere. J. R. Jokipii University of Arizona

Cosmic Rays in the Heliosphere. J. R. Jokipii University of Arizona Cosmic Rays in the Heliosphere J. R. Jokipii University of Arizona Presentation at the 2011 Heliophysics Summer School, Boulder, July 29, 2011 Outline of Lecture Brief introduction to the heliosphere.

More information

Interstellar Neutral Atoms and Their Journey Through the Heliosphere Elena Moise

Interstellar Neutral Atoms and Their Journey Through the Heliosphere Elena Moise Interstellar Neutral Atoms and Their Journey Through the Heliosphere Elena Moise Institute for Astronomy, University of Hawai i Solar and Heliospheric Influences on the Geospace Bucharest, 1-5 Oct 2012

More information

How are the present solar minimum conditions transmitted to the outer heliosphere and heliosheath? John Richardson M.I.T.

How are the present solar minimum conditions transmitted to the outer heliosphere and heliosheath? John Richardson M.I.T. How are the present solar minimum conditions transmitted to the outer heliosphere and heliosheath? John Richardson M.I.T. Heliosphere Overview Heliopause: boundary of LIC and SW plasma He H Termination

More information

Effects of the solar wind termination shock and heliosheath on the heliospheric modulation of galactic and anomalous Helium

Effects of the solar wind termination shock and heliosheath on the heliospheric modulation of galactic and anomalous Helium Annales Geophysicae (2004) 22: 3063 3072 SRef-ID: 1432-0576/ag/2004-22-3063 European Geosciences Union 2004 Annales Geophysicae Effects of the solar wind termination shock and heliosheath on the heliospheric

More information

PROBLEM SET. Heliophysics Summer School. July, 2013

PROBLEM SET. Heliophysics Summer School. July, 2013 PROBLEM SET Heliophysics Summer School July, 2013 Problem Set for Shocks and Particle Acceleration There is probably only time to attempt one or two of these questions. In the tutorial session discussion

More information

MHD MODELING FOR HMI JON A. LINKER SCIENCE APPLICATIONS INTL. CORP. SAN DIEGO

MHD MODELING FOR HMI JON A. LINKER SCIENCE APPLICATIONS INTL. CORP. SAN DIEGO MHD MODELING FOR HMI ZORAN MIKIĆ JON A. LINKER SCIENCE APPLICATIONS INTL. CORP. SAN DIEGO Presented at the HMI Team Meeting Stanford University, Palo Alto, May 1 2, 23 USEFULNESS OF MHD MODELS A global

More information

A Multi-ion Model of the Heliosphere with Secondary Charge Exchange

A Multi-ion Model of the Heliosphere with Secondary Charge Exchange A Multi-ion Model of the Heliosphere with Secondary Charge Exchange Matthew Bedford, University of Alabama in Huntsville, Department of Space Science Nikolai Pogorelov, faculty advisor The heliosphere

More information

ESS 200C. Lectures 6 and 7 The Solar Wind

ESS 200C. Lectures 6 and 7 The Solar Wind ESS 200C Lectures 6 and 7 The Solar Wind The Earth s atmosphere is stationary. The Sun s atmosphere is not stable but is blown out into space as the solar wind filling the solar system and then some. The

More information

THE INTERACTION OF TURBULENCE WITH THE HELIOSPHERIC SHOCK

THE INTERACTION OF TURBULENCE WITH THE HELIOSPHERIC SHOCK THE INTERACTION OF TURBULENCE WITH THE HELIOSPHERIC SHOCK G.P. Zank, I. Kryukov, N. Pogorelov, S. Borovikov, Dastgeer Shaikh, and X. Ao CSPAR, University of Alabama in Huntsville Heliospheric observations

More information

A Time-dependent and Anisotropic Force Field Model For Galactic Cosmic Ray Flux

A Time-dependent and Anisotropic Force Field Model For Galactic Cosmic Ray Flux A Time-dependent and Anisotropic Force Field Model For Galactic Cosmic Ray Flux University of Aberdeen, UK E-mail: g.ihongo@abdn.ac.uk Charles H T. Wang University of Aberdeen E-mail: c.wang@abdn.ac.uk

More information

Caltech, 2 Washington University, 3 Jet Propulsion Laboratory 4. Goddard Space Flight Center

Caltech, 2 Washington University, 3 Jet Propulsion Laboratory 4. Goddard Space Flight Center R. A. Mewaldt 1, A. J. Davis 1, K. A. Lave 2, R. A. Leske 1, E. C. Stone 1, M. E. Wiedenbeck 3, W. R. Binns 2, E. R. ChrisCan 4, A. C. Cummings 1, G. A. de Nolfo 4, M. H. Israel 2, A. W. Labrador 1, and

More information

Aspects of Stochastic Integration of Parker s Transport Equation

Aspects of Stochastic Integration of Parker s Transport Equation Aspects of Stochastic Integration of Parker s Transport Equation J. R. Jokipii and E. McEvoy University of Arizona We acknowledge helpful discussions with J. Kόta and J. GIacalone. Presented at Astronum,

More information

Cosmic-ray Acceleration and Current-Driven Instabilities

Cosmic-ray Acceleration and Current-Driven Instabilities Cosmic-ray Acceleration and Current-Driven Instabilities B. Reville Max-Planck-Institut für Kernphysik, Heidelberg Sep 17 2009, KITP J.G. Kirk, P. Duffy, S.O Sullivan, Y. Ohira, F. Takahara Outline Analysis

More information

The Energetic Particle Populations of the Distant Heliosphere

The Energetic Particle Populations of the Distant Heliosphere The Energetic Particle Populations of the Distant Heliosphere F. B. McDonald *, A. C. Cummings, E. C. Stone, B. C. Heikkila, N. Lal, and W. R. Webber * Institute for Physical Science and Technology, University

More information

STATISTICAL PROPERTIES OF FAST FORWARD TRANSIENT INTERPLANETARY SHOCKS AND ASSOCIATED ENERGETIC PARTICLE EVENTS: ACE OBSERVATIONS

STATISTICAL PROPERTIES OF FAST FORWARD TRANSIENT INTERPLANETARY SHOCKS AND ASSOCIATED ENERGETIC PARTICLE EVENTS: ACE OBSERVATIONS STATISTICAL PROPERTIES OF FAST FORWARD TRANSIENT INTERPLANETARY SHOCKS AND ASSOCIATED ENERGETIC PARTICLE EVENTS: ACE OBSERVATIONS D. Lario (1), Q. Hu (2), G. C. Ho (1), R. B. Decker (1), E. C. Roelof (1),

More information

Space Physics. An Introduction to Plasmas and Particles in the Heliosphere and Magnetospheres. May-Britt Kallenrode. Springer

Space Physics. An Introduction to Plasmas and Particles in the Heliosphere and Magnetospheres. May-Britt Kallenrode. Springer May-Britt Kallenrode Space Physics An Introduction to Plasmas and Particles in the Heliosphere and Magnetospheres With 170 Figures, 9 Tables, Numerous Exercises and Problems Springer Contents 1. Introduction

More information

Solar Wind Turbulence

Solar Wind Turbulence Solar Wind Turbulence Presentation to the Solar and Heliospheric Survey Panel W H Matthaeus Bartol Research Institute, University of Delaware 2 June 2001 Overview Context and SH Themes Scientific status

More information

contents 1) Superbubbles a particular environment for acceleration 2) Multiple acceleration by shocks regular acceleration (Fermi 1)

contents 1) Superbubbles a particular environment for acceleration 2) Multiple acceleration by shocks regular acceleration (Fermi 1) contents 1) Superbubbles a particular environment for acceleration 2) Multiple acceleration by shocks regular acceleration (Fermi 1) 3) Transport in the bubble stochastic acceleration (Fermi 2) and escape

More information

Single particle motion

Single particle motion Single particle motion Plasma is a collection of a very large number of charged particles moving in, and giving rise to, electromagnetic fields. Before going to the statistical descriptions, let us learn

More information

How is Earth s Radiation Belt Variability Controlled by Solar Wind Changes

How is Earth s Radiation Belt Variability Controlled by Solar Wind Changes How is Earth s Radiation Belt Variability Controlled by Solar Wind Changes Richard M. Thorne Department of Atmospheric and Oceanic Sciences, UCLA Electron (left) and Proton (right) Radiation Belt Models

More information

MHD simulation of solar wind using solar photospheric magnetic field data

MHD simulation of solar wind using solar photospheric magnetic field data 6-16P, LWS workshop 2004 March, Boulder MHD simulation of solar wind using solar photospheric magnetic field data Keiji Hayashi (Stanford University) keiji@quake.stanford.edu Introduction Time-dependent

More information

Remember: how to measure the solar wind. Two types of solar wind: evidence from Helios. Two different types of solar wind!

Remember: how to measure the solar wind. Two types of solar wind: evidence from Helios. Two different types of solar wind! Remember: how to measure the solar wind The principle of electrostatic analyzers Spherical deflection plates with an applied voltage let charged particles pass if their energy/charge fits. E/q = m/2 *

More information

W.R. Webber 1 and D.S. Intriligator 2

W.R. Webber 1 and D.S. Intriligator 2 A Forecast for a South Heliopause Crossing by Voyager 2 in Late 2014 Using Intensity-time Features of Energetic Particles Observed by V1 and V2 in the North and South Heliosheaths W.R. Webber 1 and D.S.

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

Lecture 5 The Formation and Evolution of CIRS

Lecture 5 The Formation and Evolution of CIRS Lecture 5 The Formation and Evolution of CIRS Fast and Slow Solar Wind Fast solar wind (>600 km/s) is known to come from large coronal holes which have open magnetic field structure. The origin of slow

More information

ESS 7. Lectures 6, 7 and 8 April 9, 12 and 14

ESS 7. Lectures 6, 7 and 8 April 9, 12 and 14 ESS 7 Lectures 6, 7 and 8 April 9, 12 and 14 The Heliosphere The Exploding Sun At times the Sun explosively sends plasma into space. This occurs most dramatically during CMEs. Hallowe en Storm 2003 Note

More information

Correlation between energetic ion enhancements and heliospheric current sheet crossings in the outer heliosphere

Correlation between energetic ion enhancements and heliospheric current sheet crossings in the outer heliosphere Click Here for Full Article GEOPHYSICAL RESEARCH LETTERS, VOL. 33, L21112, doi:10.1029/2006gl027578, 2006 Correlation between energetic ion enhancements and heliospheric current sheet crossings in the

More information

Cosmic-ray acceleration by compressive plasma fluctuations in supernova shells

Cosmic-ray acceleration by compressive plasma fluctuations in supernova shells Cosmic-ray acceleration by compressive plasma fluctuations in supernova shells Ming Zhang Florida Institute of Technology E-mail: mzhang@fit.edu We suggest that the production of Galactic cosmic rays in

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

Anomalous cosmic rays in the distant heliosphere and the reversal of the Sun s magnetic polarity in Cycle 23

Anomalous cosmic rays in the distant heliosphere and the reversal of the Sun s magnetic polarity in Cycle 23 Click Here for Full Article GEOPHYSICAL RESEARCH LETTERS, VOL. 34, L05105, doi:10.1029/2006gl028932, 2007 Anomalous cosmic rays in the distant heliosphere and the reversal of the Sun s magnetic polarity

More information

Topics. 1. Towards a unified picture of CRs production and propagation: 2. AMS-02 good candidates for Dark Matter space search

Topics. 1. Towards a unified picture of CRs production and propagation: 2. AMS-02 good candidates for Dark Matter space search Nicolò Masi Bologna University and INFN - 31 May 2016 Topics 1. Towards a unified picture of CRs production and propagation: Astrophysical uncertainties with GALPROP Local Interstellar Spectra: AMS-02

More information

Dalla, Silvia, Marsh, Michael and Laitinen, Timo Lauri mikael

Dalla, Silvia, Marsh, Michael and Laitinen, Timo Lauri mikael Article Drift induced deceleration of Solar Energetic Particles Dalla, Silvia, Marsh, Michael and Laitinen, Timo Lauri mikael Available at http://clok.uclan.ac.uk/12041/ Dalla, Silvia, Marsh, Michael and

More information

magnetic reconnection as the cause of cosmic ray excess from the heliospheric tail

magnetic reconnection as the cause of cosmic ray excess from the heliospheric tail magnetic reconnection as the cause of cosmic ray excess from the heliospheric tail Paolo Desiati 1,2 & Alexander Lazarian 2 1 IceCube Research Center 2 Department of Astronomy University of Wisconsin -

More information

cos 6 λ m sin 2 λ m Mirror Point latitude Equatorial Pitch Angle Figure 5.1: Mirror point latitude as function of equatorial pitch angle.

cos 6 λ m sin 2 λ m Mirror Point latitude Equatorial Pitch Angle Figure 5.1: Mirror point latitude as function of equatorial pitch angle. Chapter 5 The Inner Magnetosphere 5.1 Trapped Particles The motion of trapped particles in the inner magnetosphere is a combination of gyro motion, bounce motion, and gradient and curvature drifts. In

More information

Solar Wind Turbulent Heating by Interstellar Pickup Protons: 2-Component Model

Solar Wind Turbulent Heating by Interstellar Pickup Protons: 2-Component Model Solar Wind Turbulent Heating by Interstellar Pickup Protons: 2-Component Model Philip A. Isenberg a, Sean Oughton b, Charles W. Smith a and William H. Matthaeus c a Inst. for Study of Earth, Oceans and

More information

Superdiffusive and subdiffusive transport of energetic particles in astrophysical plasmas: numerical simulations and experimental evidence

Superdiffusive and subdiffusive transport of energetic particles in astrophysical plasmas: numerical simulations and experimental evidence Superdiffusive and subdiffusive transport of energetic particles in astrophysical plasmas: numerical simulations and experimental evidence Gaetano Zimbardo S. Perri, P. Pommois, and P. Veltri Universita

More information

Diffusive shock acceleration: a first order Fermi process. jan.-fév NPAC, rayons cosmiques E. Parizot (APC)

Diffusive shock acceleration: a first order Fermi process. jan.-fév NPAC, rayons cosmiques E. Parizot (APC) 1 Diffusive shock acceleration: a first order Fermi process 2 Shock waves Discontinuity in physical parameters shock front n 2, p 2, T 2 n 1, p 1, T 1 v 2 v 1 downstream medium (immaterial surface) upstream

More information

Stochastic simulation of cosmic ray modulation including a wavy heliospheric current sheet

Stochastic simulation of cosmic ray modulation including a wavy heliospheric current sheet Click Here for Full Article JOURNAL OF GEOPHYSICAL RESEARCH, VOL. 112,, doi:10.1029/2007ja012280, 2007 Stochastic simulation of cosmic ray modulation including a wavy heliospheric current sheet K. Alanko-Huotari,

More information

Remote sensing of magnetospheric processes: Lesson 1: Configura7on of the magnetosphere

Remote sensing of magnetospheric processes: Lesson 1: Configura7on of the magnetosphere Remote sensing of magnetospheric processes: Lesson 1: Configura7on of the magnetosphere AGF-351 Optical methods in auroral physics research UNIS, 24.-25.11.2011 Anita Aikio Dept. Physics University of

More information

Galactic cosmic rays

Galactic cosmic rays Galactic cosmic rays M.-B. Kallenrode University of Lüneburg, 21332 Lüneburg, Germany Camera-ready Copy for Summer school Outer Heliosphere Manuscript-No.??? Offset requests to: Kallenrode First author:

More information

JOURNAL OF GEOPHYSICAL RESEARCH, VOL. 114, A02103, doi: /2008ja013689, 2009

JOURNAL OF GEOPHYSICAL RESEARCH, VOL. 114, A02103, doi: /2008ja013689, 2009 Click Here for Full Article JOURNAL OF GEOPHYSICAL RESEARCH, VOL. 114,, doi:10.1029/2008ja013689, 2009 Galactic propagation of cosmic ray nuclei in a model with an increasing diffusion coefficient at low

More information

Cosmic-Ray Transport in the Heliosphere

Cosmic-Ray Transport in the Heliosphere Cosmic-Ray Transport in the Heliosphere J. Giacalone University of Arizona Heliophysics Summer School, Boulder, CO, July 16, 2013 Outline Lecture 1: Background The heliosphere Cosmic Rays in the heliosphere

More information

Science Questions from inside 150AU Heliosheath/Heliopause. Merav Opher Boston University

Science Questions from inside 150AU Heliosheath/Heliopause. Merav Opher Boston University Science Questions from inside 150AU Heliosheath/Heliopause Merav Opher Boston University The heliosphere as test-bed for other astrospheres WISE bow shock image, PIA13455 Closeup of IRS8, resolving the

More information

Estimation of solar energetic proton mission integrated fluences and peak intensities for missions traveling close to the Sun

Estimation of solar energetic proton mission integrated fluences and peak intensities for missions traveling close to the Sun SPACE WEATHER, VOL. 9,, doi:10.1029/2011sw000708, 2011 Estimation of solar energetic proton mission integrated fluences and peak intensities for missions traveling close to the Sun D. Lario 1 and R. B.

More information

Simulation of the charging process of the LISA test masses due to solar particles.

Simulation of the charging process of the LISA test masses due to solar particles. Simulation of the charging process of the LISA test masses due to solar particles. 5 th International Lisa Symposium 14 July 2004 Helios Vocca INFN Pg Solar Energetic Particles (SEPs( SEPs) SEPs are particles

More information

Pickup Proton Instabilities and Scattering in the Distant Solar Wind and the Outer Heliosheath: Hybrid Simulations

Pickup Proton Instabilities and Scattering in the Distant Solar Wind and the Outer Heliosheath: Hybrid Simulations Pickup Proton Instabilities and Scattering in the Distant Solar Wind and the Outer Heliosheath: Hybrid Simulations Kaijun Liu 1,2, Eberhard Möbius 2,3, S. P. Gary 2,4, Dan Winske 2 1 Auburn University,

More information

PARTICLE ACCELERATION AT COMETS

PARTICLE ACCELERATION AT COMETS PARTICLE ACCELERATION AT COMETS Tamas I. Gombosi Space Physics Research Laboratory Department of Atmospheric, Oceanic and Space Sciences The University of Michigan, Ann Arbor, MI 48109 ABSTRACT This paper

More information

Interstellar and Interplanetary Material. HST Astrobiology Workshop: May 5-9, 2002 P.C. Frisch University of Chicago

Interstellar and Interplanetary Material. HST Astrobiology Workshop: May 5-9, 2002 P.C. Frisch University of Chicago Interstellar and Interplanetary Material HST Astrobiology Workshop: May 5-9, 2002 P.C. Frisch University of Chicago Outline: The solar system is our template for understanding interplanetary material Heliosphere,

More information

Heliospheric Structure: The Bow Wave and the Hydrogen Wall 1

Heliospheric Structure: The Bow Wave and the Hydrogen Wall 1 Heliospheric Structure: The Bow Wave and the Hydrogen Wall 1 G.P. Zank(1), J. Heerikhuisen(1), B.E. Wood, (2), N. Pogorelov(1), E. Zirnstein(1), S. Borovikov (1), D.J. McComas(3) (1)Center for Space and

More information

COSMIC-RAY ENERGY CHANGES IN THE HELIOSPHERE. II. THE EFFECT ON K-CAPTURE ELECTRON SECONDARIES

COSMIC-RAY ENERGY CHANGES IN THE HELIOSPHERE. II. THE EFFECT ON K-CAPTURE ELECTRON SECONDARIES The Astrophysical Journal, 663:1335Y1339, 2007 July 10 # 2007. The American Astronomical Society. All rights reserved. Printed in U.S.A. COSMIC-RAY ENERGY CHANGES IN THE HELIOSPHERE. II. THE EFFECT ON

More information

Cosmic Rays in the Dynamic Heliosphere

Cosmic Rays in the Dynamic Heliosphere J. Plasma Fusion Res. SERIES, Vol. 8 (2009) Cosmic Rays in the Dynamic Heliosphere Marius S. POTGIETER Unit for Space Physics, North-West University, 2520 Potchefstroom, South Africa (Received: 27 August

More information

Cosmic Pevatrons in the Galaxy

Cosmic Pevatrons in the Galaxy Cosmic Pevatrons in the Galaxy Jonathan Arons UC Berkeley Cosmic Rays Acceleration in Supernova Remnants Pulsar Wind Nebulae Cosmic rays Cronin, 1999, RMP, 71, S165 J(E) = AE! p, p " 2.7,1GeV < E

More information

COMPOSITION OF ANOMALOUS COSMIC RAYS AND OTHER HELIOSPHERIC IONS A. C. Cummings, E. C. Stone, and C. D. Steenberg

COMPOSITION OF ANOMALOUS COSMIC RAYS AND OTHER HELIOSPHERIC IONS A. C. Cummings, E. C. Stone, and C. D. Steenberg The Astrophysical Journal, 578:94 20, 2002 October 0 # 2002. The American Astronomical Society. All rights reserved. Printed in U.S.A. E COMPOSITION OF ANOMALOUS COSMIC RAYS AND OTHER HELIOSPHERIC IONS

More information

There are two more types of solar wind! The ballerina Sun right before activity minimum. The ballerina dancing through the solar cycle

There are two more types of solar wind! The ballerina Sun right before activity minimum. The ballerina dancing through the solar cycle There are two more types of solar wind! 3. Low speed wind of "maximum" type Similar characteristics as (2), except for Lectures at the International Max-Planck-Research School Oktober 2002 by Rainer Schwenn,

More information

Cosmic Accelerators. 2. Pulsars, Black Holes and Shock Waves. Roger Blandford KIPAC Stanford

Cosmic Accelerators. 2. Pulsars, Black Holes and Shock Waves. Roger Blandford KIPAC Stanford Cosmic Accelerators 2. Pulsars, Black Holes and Shock Waves Roger Blandford KIPAC Stanford Particle Acceleration Unipolar Induction Stochastic Acceleration V ~ Ω Φ I ~ V / Z 0 Z 0 ~100Ω P ~ V I ~ V 2 /Z

More information

Test Particle Simulations of Solar Energetic Particles using Parker Spiral and ENLIL Fields

Test Particle Simulations of Solar Energetic Particles using Parker Spiral and ENLIL Fields Test Particle Simulations of Solar Energetic Particles using Parker Spiral and ENLIL Fields Dr. Simon R. Thomas & Prof. Silvia Dalla University of Central Lancashire Thanks to: Markus Battarbee, Timo Laitinen,

More information

MDs in INTERPLANETARY SPACE and MIRROR MODEs in PLANETARY MAGNETOSHEATHS and the HELIOSHEATH

MDs in INTERPLANETARY SPACE and MIRROR MODEs in PLANETARY MAGNETOSHEATHS and the HELIOSHEATH MDs in INTERPLANETARY SPACE and MIRROR MODEs in PLANETARY MAGNETOSHEATHS and the HELIOSHEATH B.T. Tsurutani 1, F.L. Guarnieri 2, E.E. Echer 3, G.S. Lakhina 4 and O.P. Verkhoglyadova 1,5 1 Jet Propulsion

More information

Multi Spacecraft Observation of Compressional Mode ULF Waves Excitation and Relativistic Electron Acceleration

Multi Spacecraft Observation of Compressional Mode ULF Waves Excitation and Relativistic Electron Acceleration Multi Spacecraft Observation of Compressional Mode ULF Waves Excitation and Relativistic Electron Acceleration X. Shao 1, L. C. Tan 1, A. S. Sharma 1, S. F. Fung 2, Mattias Tornquist 3,Dimitris Vassiliadis

More information

The Effects of Interplanetary Transport in the Event-intergrated Solar Energetic Particle Spectra

The Effects of Interplanetary Transport in the Event-intergrated Solar Energetic Particle Spectra 2017. The American Astronomical Society. All rights reserved. doi:10.3847/1538-4357/836/1/31 The Effects of Interplanetary Transport in the Event-intergrated Solar Energetic Particle Spectra Lulu Zhao,

More information

SOLAR WIND ION AND ELECTRON DISTRIBUTION FUNCTIONS AND THE TRANSITION FROM FLUID TO KINETIC BEHAVIOR

SOLAR WIND ION AND ELECTRON DISTRIBUTION FUNCTIONS AND THE TRANSITION FROM FLUID TO KINETIC BEHAVIOR SOLAR WIND ION AND ELECTRON DISTRIBUTION FUNCTIONS AND THE TRANSITION FROM FLUID TO KINETIC BEHAVIOR JUSTIN C. KASPER HARVARD-SMITHSONIAN CENTER FOR ASTROPHYSICS GYPW01, Isaac Newton Institute, July 2010

More information

Turbulent Origins of the Sun s Hot Corona and the Solar Wind

Turbulent Origins of the Sun s Hot Corona and the Solar Wind Turbulent Origins of the Sun s Hot Corona and the Solar Wind Steven R. Cranmer Harvard-Smithsonian Center for Astrophysics Turbulent Origins of the Sun s Hot Corona and the Solar Wind Outline: 1. Solar

More information

Mechanisms for particle heating in flares

Mechanisms for particle heating in flares Mechanisms for particle heating in flares J. F. Drake University of Maryland J. T. Dahlin University of Maryland M. Swisdak University of Maryland C. Haggerty University of Delaware M. A. Shay University

More information

Engineering Models for Galactic Cosmic Rays and Solar Protons: Current Status

Engineering Models for Galactic Cosmic Rays and Solar Protons: Current Status Engineering Models for Galactic Cosmic Rays and Solar Protons: Current Status Stephen Gabriel Professor of Aeronautics and Astronautics School of Engineering Sciences University of Southampton England

More information

Crab flares - explosive Reconnection Events in the Nebula

Crab flares - explosive Reconnection Events in the Nebula Crab flares - explosive Reconnection Events in the Nebula Maxim Lyutikov (Purdue) in collaboration with Sergey Komissarov (Leeds) Lorenzo Sironi (Columbia) Oliver Porth (Frankfurt) - ApJ 2017; - JPP, 2017abc

More information

FOUR-DIMENSIONAL TRANSPORT OF GALACTIC COSMIC RAYS IN THE OUTER HELIOSPHERE AND HELIOSHEATH

FOUR-DIMENSIONAL TRANSPORT OF GALACTIC COSMIC RAYS IN THE OUTER HELIOSPHERE AND HELIOSHEATH The Astrophysical Journal, 701:642 651, 2009 August 10 C 2009. The American Astronomical Society. All rights reserved. Printed in the U.S.A. doi:10.1088/0004-637x/701/1/642 FOUR-DIMENSIONAL TRANSPORT OF

More information

Survey of the Solar System. The Sun Giant Planets Terrestrial Planets Minor Planets Satellite/Ring Systems

Survey of the Solar System. The Sun Giant Planets Terrestrial Planets Minor Planets Satellite/Ring Systems Survey of the Solar System The Sun Giant Planets Terrestrial Planets Minor Planets Satellite/Ring Systems The Sun Mass, M ~ 2 x 10 30 kg Radius, R ~ 7 x 10 8 m Surface Temperature ~ 5800 K Density ~ 1.4

More information

Handbook of Stochastic Methods

Handbook of Stochastic Methods C. W. Gardiner Handbook of Stochastic Methods for Physics, Chemistry and the Natural Sciences Third Edition With 30 Figures Springer Contents 1. A Historical Introduction 1 1.1 Motivation I 1.2 Some Historical

More information

Cosmic Rays & Magnetic Fields

Cosmic Rays & Magnetic Fields Cosmic Rays & Magnetic Fields Ellen Zweibel zweibel@astro.wisc.edu Departments of Astronomy & Physics University of Wisconsin, Madison and Center for Magnetic Self-Organization in Laboratory and Astrophysical

More information

Where is the Cosmic-Ray Modulation Boundary of the Heliosphere? and Applied Research, Chinese Academy of Sciences, Beijing , China

Where is the Cosmic-Ray Modulation Boundary of the Heliosphere? and Applied Research, Chinese Academy of Sciences, Beijing , China Where is the Cosmic-Ray Modulation Boundary of the Heliosphere? Ming Zhang, 1, a) Xi Luo, 2, 3 and Nikolai Pogorelov 4 1) Department of Physics and Space Sciences, Florida Institute of Technology, Melbourne,

More information

Limitations of the force field equation to describe cosmic ray modulation

Limitations of the force field equation to describe cosmic ray modulation JOURNAL OF GEOPHYSICAL RESEARCH, VOL. 109,, doi:10.1029/2003ja010098, 2004 Limitations of the force field equation to describe cosmic ray modulation R. A. Caballero-Lopez 1 Institute for Physical Science

More information

CME linear-fit. 3. Data and Analysis. 1. Abstract

CME linear-fit. 3. Data and Analysis. 1. Abstract 3.11 High flux solar protons in coronal mass ejection Tak David Cheung, Donald E. Cotten*, and Paul J Marchese City University of New York Queensborough Community College 1. Abstract There were six events

More information

particle acceleration in reconnection regions and cosmic ray excess from the heliotail

particle acceleration in reconnection regions and cosmic ray excess from the heliotail particle acceleration in reconnection regions and cosmic ray excess from the heliotail Paolo Desiati 1,2 & Alexander Lazarian 2 1 IceCube Research Center 2 Department of Astronomy University of Wisconsin

More information

Voyager observations of galactic and anomalous cosmic rays in the helioshealth

Voyager observations of galactic and anomalous cosmic rays in the helioshealth Voyager observations of galactic and anomalous cosmic rays in the helioshealth F.B. McDonald 1, W.R. Webber 2, E.C. Stone 3, A.C. Cummings 3, B.C. Heikkila 4 and N. Lal 4 1 Institute for Physical Science

More information

Heliophysics Shocks. Merav Opher, George Mason University,

Heliophysics Shocks. Merav Opher, George Mason University, Heliophysics Shocks QuickTime and a TIFF (Uncompressed) decompressor are needed to see this picture. Merav Opher, George Mason University, mopher@gmu.edu Heliophysics Summer School, July 25, 2008 Outline

More information

Kinetic and Small Scale Solar Wind Physics

Kinetic and Small Scale Solar Wind Physics Chapter 11 Kinetic and Small Scale Solar Wind Physics Thus far the origin, evolution, and large scale characteristics of the solar wind have been addressed using MHD theory and observations. In this lecture

More information

What Voyager cosmic ray data in the outer heliosphere tells us about 10 Be production in the Earth s polar atmosphere in the recent past

What Voyager cosmic ray data in the outer heliosphere tells us about 10 Be production in the Earth s polar atmosphere in the recent past Click Here for Full Article JOURNAL OF GEOPHYSICAL RESEARCH, VOL. 115,, doi:10.1029/2009ja014532, 2010 What Voyager cosmic ray data in the outer heliosphere tells us about 10 Be production in the Earth

More information

The Effect of Magnetic Turbulence Energy Spectra and Pickup Ions on the Heating of the Solar Wind

The Effect of Magnetic Turbulence Energy Spectra and Pickup Ions on the Heating of the Solar Wind The Effect of Magnetic Turbulence Energy Spectra and Pickup Ions on the Heating of the Solar Wind C. S. Ng Geophysical Institute, University of Alaska Fairbanks A. Bhattacharjee, P. A. Isenberg, D. Munsi,

More information

Cosmic rays propagation in Galaxy: A fractional approach

Cosmic rays propagation in Galaxy: A fractional approach A workshop on the occasion of the retirement of Francesco Mainardi Bilbao Basque Country Spain 6 8 November 2013 Cosmic rays propagation in Galaxy: A fractional approach Vladimir Uchaikin and Renat Sibatov

More information

Diffusive cosmic ray acceleration at shock waves of arbitrary speed

Diffusive cosmic ray acceleration at shock waves of arbitrary speed Diffusive cosmic ray acceleration at shock waves of arbitrary speed Institut für Theoretische Physik, Lehrstuhl IV: Weltraum- und Astrophysik, Ruhr-Universität Bochum, D-4478 Bochum, Germany E-mail: rsch@tp4.rub.de

More information

Diffusive shock acceleration with regular electric fields

Diffusive shock acceleration with regular electric fields Diffusive shock acceleration with regular electric fields V.N.Zirakashvili Pushkov Institute of Terrestrial Magnetism, Ionosphere and Radiowave Propagation, Russian Academy of Sciences (IZMIRAN), 142190

More information

Evidence of Stochastic Acceleration of Secondary. Antiprotons by Supernova Remnants! Ilias Cholis, 08/09/2017

Evidence of Stochastic Acceleration of Secondary. Antiprotons by Supernova Remnants! Ilias Cholis, 08/09/2017 C [ ] -4 Evidence of Stochastic Acceleration of Secondary 2.2 1.0 2.0 1.8 1.6 1.4 1.2 C k p p Φ /Φ ratio fit Antiprotons by Supernova Remnants! 0.8 0.6 0.4 0.2 0.0-6 - 1 k [ GV ] -1 AMS-02 PAMELA Fermi

More information

Magnetic Effects Change Our View of the Heliosheath

Magnetic Effects Change Our View of the Heliosheath Magnetic Effects Change Our View of the Heliosheath M. Opher Λ, P. C. Liewer Λ, M. Velli, T. I. Gombosi ΛΛ, W.Manchester ΛΛ,D. L. DeZeeuw ΛΛ,G.Toth ΛΛ and I. Sokolov ΛΛ Λ Jet Propulsion Laboratory, MS

More information

Investigations of short-term variations of vector and tensor anisotropies of cosmic rays using magnetic mirror model

Investigations of short-term variations of vector and tensor anisotropies of cosmic rays using magnetic mirror model Investigations of short-term variations of vector and tensor anisotropies of cosmic rays using magnetic mirror model and G.F. Krymsky and P.A. Krivoshapkin Yu.G. Shafer insitute of cosmophysical research

More information

FUNDAMENTALS OF MAGNETOHYDRODYNAMICS (MHD)

FUNDAMENTALS OF MAGNETOHYDRODYNAMICS (MHD) FUNDAMENTALS OF MAGNETOHYDRODYNAMICS (MHD) Dana-Camelia Talpeanu KU Leuven, Royal Observatory of Belgium Basic SIDC seminar ROB, 7 March 2018 CONTENTS 1. Ideal MHD 2. Ideal MHD equations (nooooooo.) 2.1

More information

1.2 Which parameters are used to characterize a plasma? Briefly discuss their physical meaning.

1.2 Which parameters are used to characterize a plasma? Briefly discuss their physical meaning. Solutions to Exercises 3 rd edition Space Physics 1 Chapter 1 1.1 Define a plasma. Discuss the importance of the density. Is there a limit for the relative or the absolute size of the neutral component?

More information

Subir Sarkar

Subir Sarkar Trinity 2016 Oxford ² The universe observed ² Relativistic world models ² Reconstructing the thermal history ² Big bang nucleosynthesis ² Dark matter: astrophysical observations ² Dark matter: relic particles

More information

Multi-spacecraft observations and transport modeling of energetic electrons for a series of solar particle events in August 2010

Multi-spacecraft observations and transport modeling of energetic electrons for a series of solar particle events in August 2010 Multi-spacecraft observations and transport modeling of energetic electrons for a series of solar particle events in August Institut für Theoretische Physik und Astrophysik, Universität Würzburg, 9774

More information

The Smoluchowski-Kramers Approximation: What model describes a Brownian particle?

The Smoluchowski-Kramers Approximation: What model describes a Brownian particle? The Smoluchowski-Kramers Approximation: What model describes a Brownian particle? Scott Hottovy shottovy@math.arizona.edu University of Arizona Applied Mathematics October 7, 2011 Brown observes a particle

More information

In-Situ Signatures of Interplanetary Coronal Mass Ejections

In-Situ Signatures of Interplanetary Coronal Mass Ejections In-Situ Signatures of Interplanetary Coronal Mass Ejections Ian G. Richardson, NASA/Goddard Space Flight Center and CRESST/Department of Astronomy, University of Maryland, College Park ~Two dozen in-situ

More information

THE UNFOLDING OF THE SPECTRA OF LOW ENERGY GALACTIC COSMIC RAY H AND HE NUCLEI AS THE VOYAGER 1 SPACECRAFT EXITS THE REGION OF HELIOSPHERIC MODULATION

THE UNFOLDING OF THE SPECTRA OF LOW ENERGY GALACTIC COSMIC RAY H AND HE NUCLEI AS THE VOYAGER 1 SPACECRAFT EXITS THE REGION OF HELIOSPHERIC MODULATION THE UNFOLDING OF THE SPECTRA OF LOW ENERGY GALACTIC COSMIC RAY H AND HE NUCLEI AS THE VOYAGER 1 SPACECRAFT EXITS THE REGION OF HELIOSPHERIC MODULATION W.R. Webber 1, P.R. Higbie 2 and F.B. McDonald 3+

More information

Effect of the Regular Galactic Magnetic Field on the Propagation of Galactic Cosmic Rays in the Galaxy

Effect of the Regular Galactic Magnetic Field on the Propagation of Galactic Cosmic Rays in the Galaxy Effect of the Regular Galactic Magnetic Field on the Propagation of Galactic Cosmic Rays in the Galaxy Department of Electrical and Electronic Systems Engineering, National Institute of Technology, Ibaraki

More information