Solar Spectroscopy. with Hinode/EIS and IRIS. Magnus Woods With thanks to David Long UCL-Mullard Space Science Laboratory

Size: px
Start display at page:

Download "Solar Spectroscopy. with Hinode/EIS and IRIS. Magnus Woods With thanks to David Long UCL-Mullard Space Science Laboratory"

Transcription

1 Solar Spectroscopy with Hinode/EIS and IRIS 4 th Solarnet Workshop, Mullard Space Science Laboratory Magnus Woods With thanks to David Long UCL-Mullard Space Science Laboratory magnus.woods.15@ucl.ac.uk

2 Why we make observations Observations are measurements Fit existing models/theories/interpretations Provoke new models/theories/interpretations Models/theories/simulations no use in isolation Need to be able to understand what we re seeing Account for errors/uncertainties Determine densities/temperatures Different processes produce different signatures using different emission lines

3 Remote sensing We obtain information about the object by looking at it Study the different types of radiation emitted by the Sun and associated phenomena But.. Earths atmosphere only transmits radiation in radio & visible bands (with distortion) Need to go to space to observe sub-mm, UV, IR, X-rays & γ-rays

4 Ground-based observing Pros: Easy to do Low cost Can get lots of data at very high cadence & resolution relatively easily Observers: Michiel van Noort and Luc Rouppe van der Voort, Oslo. Images taken using the Swedish Solar Telescope, courtesy of The Royal Swedish Academy of Sciences & The Institute for Solar Physics

5 Ground-based observing Cons: Weather-permitting ~8 hours observing/day Atmospheric effects Limited spectral coverage (radio, visible, near IR, near UV) Telescope owners/observers tend to keep the data (starting to change) No consensus on data management/storage Other assorted artefacts.. Kanzelhöhe Observatory

6 Balloon & Rocket flights Pros: Above (most of) the atmosphere Wider wavelength range available Relatively cheap Good for testing new equipment/instruments Cons: Very short duration ~Minutes for rockets, ~Days/weeks for Balloons Data recovery can be tricky Weather dependent No responsiveness to solar conditions Size/mass constraints

7 Space-based observing Pros: Can observe all parts of the spectrum Can get ~24/7 coverage No atmospheric effects No weather effects Cons: Expensive! $10,000/lb (~$4536/kg) Size & mass constraints Cannot be fixed once launched (with the exception of Hubble..) Limited data downlink (with the exception of SDO) Rigorous testing & quality control

8 Spectrograms Separate radiation out by wavelength Spatial (x,y) and spectral (λ) information in one image

9 Overlappograms! Spreading wavelengths out means spatial & spectral information gets confused Detectors still 2-D How to get x, y, λ into one image..

10 Spectrometers Take a 1-D slice of the image Disperse that in the direction perpendicular to the slit Remove confusion in direction of dispersion But, it can be difficult to identify where we re observing

11 Operated by JAXA, in collaboration with UK(MSSL) and United States Launched in Three Science instruments: SOT - Solar Optical Telescope XRT - X-ray Telescope EIS - Extreme Ultraviolet Imaging Spectrometer

12 Extreme ultraviolet Imaging Spectrometer (Hinode/EIS)

13 Extreme ultraviolet Imaging Spectrometer (Hinode/EIS)

14 Extreme ultraviolet Imaging Spectrometer (Hinode/EIS) 1 & 2 slits or 40 & 266 slots, y ~ 512 λ ~ Å & Å 1 per pixel (spatial) ~22mÅ per pixel (spectral)

15 Creating an image

16 Temporal variation Can see temporal variation of corona at different temperatures

17 EIS Spectrum

18 What else can we do? Fit the intensity in each pixel using a Gaussian Assumes thermal (Maxwellian) distribution of particle velocities along the line-of-sight A = peak intensity λ 0 = rest wavelength σ = line width ξ = thermal width Mechanical motion not associated with Brownian motion May be combination of wave or non- Maxwellian motion

19 What else can we do? If two different electron transitions for same ion have common lower level May be able to estimate density Take ratio of line intensities & compare to theoretical values Need to choose ratio to match density range! Young et al., 2007

20 Doppler velocity Most of the emission here comes from the strong emission line (red) Also a weaker component of the same line Dopplershifter to shorter wavelengths Can work out the difference between the two fits & derive the Doppler velocity of the line Repeat this for each pixel

21 Doppler velocity Doppler velocity very useful for getting three-dimensional plasma variation Waves, flows, filament eruptions etc. Harra et al. (2011)

22 Non-Thermal velocity The width of a spectral line can be described as: Observed Width = Thermal Width + Instrumental Width...+ Non-thermal Width Non-thermal velocities (line width) can possibly indicate activity in the plasma, in the absence of a significant intensity increase Wavelenth (Angstrom)

23 Where to get the data? Search for EIS data on MSSL/EIS website: Want to use the data archive search tool: Set dates/times for your search When you re happy, submit!

24 Selecting and downloading data After submitting your query, a list of all available data in your time range will be given. Use quicklook thumbnails to check which lines are in observation

25 Selecting and downloading data After submitting your query, a list of all available data in your time range will be given. Use quicklook thumbnails to check which lines are in observation

26 Selecting and downloading data After submitting your query, a list of all available data in your time range will be given. Right click to download Use quicklook thumbnails to check which lines are in observation

27 So you have the data, now what? The data you have downloaded is level-0. This is not science ready! We need to calibrate it! In SSW we will make use of the eis_prep routine: Flags saturated, warm/hot and dusty pixels Dark Current and Comic Ray correction IDL> eis_prep, filename, /quiet, /retain, /default, /save Can run multiple L0 files through this Outputs are calibrated L1 files and corresponding error files. We can work with these!

28 X-FILES We can quickly check our data and access the header information using IDL> xfiles

29 X-FILES We can quickly check our data and access the header information using IDL> xfiles Control search dates Set file type Set desired directory Choose desired file from list

30 X-FILES We can quickly check our data and access the header information using IDL> xfiles Control search dates Set file type Set desired directory Choose desired file from list

31 X-FILES We can quickly check our data and access the header information using IDL> xfiles

32 Fitting(1) We first need to load in the data in the desired wavelength window: IDL> windata=eis_getwindata( Path_to_file/your_file.fits, line, /refill) Line is the wavelength of the desired spectral window. Use xfiles to show available windows. Sometimes the fit windows can be too large and contain multiple lines. To select the part of the to fit, we can use: IDL> eis_wvl_select, windata, wvl_select

33 Fitting(1) We first need to load in the data in the desired wavelength window: IDL> windata=eis_getwindata( Path_to_file/your_file.fits, line, /refill) Line is the wavelength of the desired spectral window. Use xfiles to show available windows. Sometimes the fit windows can be too large and contain multiple lines. To select the part of the to fit, we can use: IDL> eis_wvl_select, windata, wvl_select

34 Fitting(2) We now have the windata and wvl_select structures. We will fit the data using the routine: IDL> eis_auto_fit, windata, fitdata, wvl_select=wvl_select This gives us the fitdata structure, containing the results of the gaussian fitting. We can view the results of the fitting using: IDL>eis_fit_viewer, windata, fitdata

35 Fitting(2) We now have the windata and wvl_select structures. We will fit the data using the routine: REMEMBER: Always be careful of how you have defined your reference wavelength! IDL> eis_auto_fit, windata, fitdata, wvl_select=wvl_select This gives us the fitdata structure, containing the results of the gaussian fitting. We can view the results of the fitting using: IDL>eis_fit_viewer, windata, fitdata

36 Corrections As with any instrument, EIS data is subject to several instrumental effects that must be corrected for. These are: Grating tilt: Small misalignment of CCD and grating axes. offset < 1 pixel Slit tilt: Slits are perpendicular to the CCD dispersion axes. Orbital variation: Line position is shifted over spacecraft orbit due to thermal changes Detector offset: Offset of ~15-20 pixels is present in the Y-direction between the SW and LW detectors

37 Advanced activities For most cases we want to extract the data displayed by the fit viewer and carry out further analysis upon it. To extract the fits for intensity, Doppler velocity and line-widths use: IDL>i_map=eis_get_fitdata(fitdata, /int, /map, /quiet) IDL>v_map=eis_get_fitdata(fitdata, /vel, /map, /quiet) IDL>w_map=eis_get_fitdata(fitdata, /wid, /map, /quiet) If non thermal velocities are wanted, use the routine: vnt=eis_width2velocity( Fe, XII, line, linewidth_data, ti_max=t) IMPORTANT: This calculation must be done per pixel eg. in a loop!

38 Advanced Activites (2) Take care when calculating Vnt for Fe XII 195Å. There is an instrumental line that need to be accounted for using: inst_wid=eis_slit_width(ypix, slit_ind=slit_ind) Here, slit_ind is a parameter that denotes which slit the observation uses. It has value 0 for 1 slit and 2 for 2 slit. Then to calculate Vnt: vnt=eis_width2velocity( Fe, XII, line, linewidth_data, instr_fwhm=inst_wid , therm_fwhm=therm_fwhm, thermal=thermal, ti_max=ti_max)

39 EIS Practical 1. Using the described method, prep the l0 eis data you have been given. 2. Using the methods described, load in and fit the file during the flare c- class flare. Use the Fe XII 192Å line. 3. Using the same methods load in and fit the file containing the pre-flare data. Again use the Fe XII 192Å line.

40 EIS Practical: Results

41 EIS Practical: Results

42 Interface Region Imaging Spectrometer (IRIS) Mostly measuring optically thick lines in chromosphere and transition region Mg II h & k, Si IV, C III, O I, Fe XII λ ~ Å Å & Å Å (FUV), Å Å (NUV) De Pontieu et al. (2014)

43 IRIS observations ~0.3 (FUV), 0.4 (NUV) per pixel (spatial) ~26Å (FUV) - 53Å (NUV) per pixel (spectral) Closest to AIA 304Å in observations

44 IRIS observations

45 Accessing IRIS data You can search for IRIS data using a handy tool created by LMSAL: This can also search for corresponding Hinode data. Very good when looking for joint observations! Once downloaded, quicklook files using: IDL> iris_xfiles

46 Accessing IRIS data You can search for IRIS data using a handy tool created by LMSAL: This can also search for corresponding Hinode data. Very good when looking for joint observations! Once downloaded, quicklook files using: Need to click search after changing any parameters Set tick box to display desired Hinode data IDL> iris_xfiles

47 Accessing IRIS data You can search for IRIS data using a handy tool created by LMSAL: This can also search for corresponding Hinode data. Very good when looking for joint observations! Once downloaded, quicklook files using: IDL> iris_xfiles

48 Data analysis IRIS data is downloaded as level 2 data, pre-calibrated This means we don t have to run it through a prepping routine: It s already science ready! Can carry out fitting using two possible routes: Route 1: Very similar to the method we used for EIS analysis Route 2: Object orientated method, which is the recommended method of the IRIS team.

49 Route 1 Written by Peter Young, these methods follow the syntax of and in some cases use the same code as the EIS Routines Load data: IDL>windata=iris_getwindata(file,line) BEWARE! This method has a known bug that should be fixed, but you need to be sure you are using the most up to date version!!! Fitting the data: IDL> eis_auto_fit, windata, fitdata, wvl_select=wvl_select

50 Route 2 (IRIS approved) This method is described fully in ITN26 ( It is actually the method underpinning Route 1. IDL> filename = my_iris_file.fits IDL> d = iris_obj(filename) Then to view the available spectral lines: IDL> d ->show_lines To then select and load in the data use: IDL> wave = d -> getlam(4) IDL> data = d -> getvar(4, /load)

51 Route 2 (IRIS approved) This method is described fully in ITN26 ( It is actually the method underpinning Route 1. IDL> filename = my_iris_file.fits IDL> d = iris_obj(filename) Then to view the available spectral lines: IDL> d ->show_lines To then select and load in the data use: IDL> wave = d -> getlam(4) IDL> data = d -> getvar(4, /load)

52 Further Analysis With data now loaded, analysis of IRIS data can be carried out. The IRIS software tree contains several routines that can be used in the further analysis of the data. These codes can be found in ITN26 s Useful codes section:

53 IRIS Practical Using the method described in Route 2, load the Si IV 1402Å and plot it Using Route 1, again load the Si IV data. Then using the routines described, fit the data and view the results.

Exercises for the 1st CASSDA school

Exercises for the 1st CASSDA school Exercises for the 1st CASSDA school Release 1.0 Tiago M. D. Pereira April 25, 2015 CONTENTS 1 Introduction 1 2 Exercise questions 2 2.1 IRIS.................................................. 2 2.2 CRISPEX...............................................

More information

AIA DATA ANALYSIS OVERVIEW OF THE AIA INSTRUMENT

AIA DATA ANALYSIS OVERVIEW OF THE AIA INSTRUMENT AIA DATA ANALYSIS OVERVIEW OF THE AIA INSTRUMENT SDO SUMMER SCHOOL ~ August 2010 ~ Yunnan, China Marc DeRosa (LMSAL) ~ derosa@lmsal.com WHAT IS SDO? The goal of Solar Dynamics Observatory (SDO) is to understand:

More information

Investigating Molecular Hydrogen in Active Regions with IRIS

Investigating Molecular Hydrogen in Active Regions with IRIS Investigating Molecular Hydrogen in Active Regions with IRIS Sarah A. Jaeggli1, Philip G. Judge2, Steven H. Saar3, Adrian N. Daw4, & The IRIS Team 1 Montana State University Altitude Observatory 3 Harvard-Smithsonian

More information

pre Proposal in response to the 2010 call for a medium-size mission opportunity in ESA s science programme for a launch in 2022.

pre Proposal in response to the 2010 call for a medium-size mission opportunity in ESA s science programme for a launch in 2022. Solar magnetism explorer (SolmeX) Exploring the magnetic field in the upper atmosphere of our closest star preprint at arxiv 1108.5304 (Exp.Astron.) or search for solmex in ADS Hardi Peter & SolmeX team

More information

Photospheric and chromospheric polarimetry of solar flares

Photospheric and chromospheric polarimetry of solar flares Photospheric and chromospheric polarimetry of solar flares Lucia Kleint, Fachhochschule Nordwestschweiz Alberto Sainz Dalda, Stanford University Phil Judge, HAO/NCAR Kevin Reardon, National Solar Observatory

More information

Solar UV Spectroscopy and Coronagraphy

Solar UV Spectroscopy and Coronagraphy Solar UV Spectroscopy and Coronagraphy Werner Curdt Outline motivation the Sun s electromagnetic spectrum spectroscopic methods observational examples instrumental aspects optical design detectors others

More information

Recent Highlights on Solar Coronal Abundances from Hinode

Recent Highlights on Solar Coronal Abundances from Hinode Recent Highlights on Solar Coronal Abundances from Hinode David H. Brooks George Mason University Honolulu, August 10, 2015 Ignacio Ugarte-Urra/GMU Harry Warren/NRL First Ionization Potential (FIP) Effect

More information

Supporting Calculations for NASA s IRIS Mission. I. Overview

Supporting Calculations for NASA s IRIS Mission. I. Overview Supporting Calculations for NASA s IRIS Mission. I. Overview Eugene Avrett Harvard-Smithsonian Center for Astrophysics, 60 Garden Street, Cambridge, MA 02138 Understanding the solar chromosphere continues

More information

arxiv: v1 [astro-ph] 28 Oct 2008

arxiv: v1 [astro-ph] 28 Oct 2008 New EUV Fe IX emission line identifications from Hinode/EIS P. R. Young Space Science Division, Naval Research Laboratory, Washington, DC 20375 arxiv:0810.5028v1 [astro-ph] 28 Oct 2008 George Mason University,

More information

1.3j describe how astronomers observe the Sun at different wavelengths

1.3j describe how astronomers observe the Sun at different wavelengths 1.3j describe how astronomers observe the Sun at different wavelengths 1.3k demonstrate an understanding of the appearance of the Sun at different wavelengths of the electromagnetic spectrum, including

More information

IRIS views on how the low solar atmosphere is energized

IRIS views on how the low solar atmosphere is energized IRIS views on how the low solar atmosphere is energized Bart De Pontieu Lockheed Martin Solar & Astrophysics Laboratory Thanks to Juan Martinez-Sykora, Luc Rouppe van der Voort, Mats Carlsson, Viggo Hansteen,

More information

Hinode: ANewSolar Observatory in Space

Hinode: ANewSolar Observatory in Space Hinode: ANewSolar Observatory in Space Hirohisa HARA National Astronomical Observatory of Japan, Mitaka, Tokyo 181-8588 (Received 7 December 2006 / Accepted 2 July 2007) The third Japanese solar observing

More information

Phillip Chamberlin NASA Goddard Space Flight Center Solar Physics Laboratory Greenbelt, MD USA

Phillip Chamberlin NASA Goddard Space Flight Center Solar Physics Laboratory Greenbelt, MD USA Phillip Chamberlin NASA Goddard Space Flight Center Solar Physics Laboratory Greenbelt, MD USA Phillip.C.Chamberlin@NASA.gov With important contributions from Ryan Milligan (QUB), Daniel Ryan (ROB), Jan

More information

Solar Optical Telescope onboard HINODE for Diagnosing the Solar Magnetic Fields

Solar Optical Telescope onboard HINODE for Diagnosing the Solar Magnetic Fields Solar Optical Telescope onboard HINODE for Diagnosing the Solar Magnetic Fields Kiyoshi Ichimoto 1) and HINODE/SOT-team 1) Solar-B Project Office National Astronomical Observatory /NINS 16 th International

More information

Hinode mission status

Hinode mission status Hinode mission status 28.9.3 T. Shimizu (ISAS/JAXA) 2nd Hinode Science Meeting Overview Hinode has been operated for two years after the launch on 23 September 26 (JST). All the three telescopes are continuing

More information

Emission lines observed with Hinode/EIS

Emission lines observed with Hinode/EIS c 2007. Astronomical Society of Japan. Emission lines observed with Hinode/EIS Peter Young STFC Rutherford Appleton Laboratory, Chilton, Didcot, Oxfordshire, OX11 0QX, U.K. p.r.young@rl.ac.uk Giulio Del

More information

Overview of observational methods and instruments: spectrographs. Sergei Shestov

Overview of observational methods and instruments: spectrographs. Sergei Shestov Overview of observational methods and instruments: spectrographs Sergei Shestov 7 Feb 2018 SIDC seminar: spectrographs 2 Outline Scientific importance of spectroscopic observations Solar spectra Methods

More information

Using This Flip Chart

Using This Flip Chart Using This Flip Chart Sunspots are the first indicators that a storm from the Sun is a possibility. However, not all sunspots cause problems for Earth. By following the steps in this flip chart you will

More information

DETERMINATION OF THE FORMATION TEMPERATURE OF Si IV IN THE SOLAR TRANSITION REGION

DETERMINATION OF THE FORMATION TEMPERATURE OF Si IV IN THE SOLAR TRANSITION REGION THE ASTROPHYSICAL JOURNAL, 477 : L119 L122, 1997 March 10 1997. The American Astronomical Society. All rights reserved. Printed in U.S.A. DETERMINATION OF THE FORMATION TEMPERATURE OF Si IV IN THE SOLAR

More information

Toward Interplanetary Space Weather: Strategies for Manned Missions to Mars

Toward Interplanetary Space Weather: Strategies for Manned Missions to Mars centre for fusion, space and astrophysics Toward Interplanetary Space Weather: Strategies for Manned Missions to Mars Presented by: On behalf of: Jennifer Harris Claire Foullon, E. Verwichte, V. Nakariakov

More information

Solar-B. Report from Kyoto 8-11 Nov Meeting organized by K. Shibata Kwasan and Hida Observatories of Kyoto University

Solar-B. Report from Kyoto 8-11 Nov Meeting organized by K. Shibata Kwasan and Hida Observatories of Kyoto University Solar-B Report from Kyoto 8-11 Nov Meeting organized by K. Shibata Kwasan and Hida Observatories of Kyoto University The mission overview Japanese mission as a follow-on to Yohkoh. Collaboration with USA

More information

The information you need will be on the internet. Please label your data with the link you used, in case we need to look at the data again.

The information you need will be on the internet. Please label your data with the link you used, in case we need to look at the data again. Solar Activity in Many Wavelengths In this lab you will be finding the sidereal rotation period of the Sun from observations of sunspots, you will compare the lifetimes of larger and smaller sunspots,

More information

Guidepost. Chapter 08 The Sun 10/12/2015. General Properties. The Photosphere. Granulation. Energy Transport in the Photosphere.

Guidepost. Chapter 08 The Sun 10/12/2015. General Properties. The Photosphere. Granulation. Energy Transport in the Photosphere. Guidepost The Sun is the source of light an warmth in our solar system, so it is a natural object to human curiosity. It is also the star most easily visible from Earth, and therefore the most studied.

More information

Temperature Reconstruction from SDO:AIA Filter Images

Temperature Reconstruction from SDO:AIA Filter Images Temperature Reconstruction from SDO:AIA Filter Images A report by Chris Gilbert Astrophysical and Planetary Sciences, University of Colorado Boulder ASTR 5700; Stellar Astrophysics, Spring 2016 Abstract

More information

Solar Astrophysics with ALMA. Sujin Kim KASI/EA-ARC

Solar Astrophysics with ALMA. Sujin Kim KASI/EA-ARC Solar Astrophysics with ALMA Sujin Kim KASI/EA-ARC Contents 1. The Sun 2. ALMA science targets 3. ALMA capabilities for solar observation 4. Recent science results with ALMA 5. Summary 2 1. The Sun Dynamic

More information

Why Go To Space? Leon Golub, SAO BACC, 27 March 2006

Why Go To Space? Leon Golub, SAO BACC, 27 March 2006 Why Go To Space? Leon Golub, SAO BACC, 27 March 2006 Solar Observation Observation of the Sun has a long and distinguished history Especially important as calendar where e.g. seasonal monsoons produced

More information

Common questions when planning observations with DKIST Jan 30, 2018

Common questions when planning observations with DKIST Jan 30, 2018 Common questions when planning observations with DKIST Jan 30, 2018 1. Can the DKIST instruments work together? All instruments except Cryo-NIRSP can work together and with Adaptive Optics (AO). All can

More information

The Sun s Dynamic Atmosphere

The Sun s Dynamic Atmosphere Lecture 16 The Sun s Dynamic Atmosphere Jiong Qiu, MSU Physics Department Guiding Questions 1. What is the temperature and density structure of the Sun s atmosphere? Does the atmosphere cool off farther

More information

Downflow as a Reconnection Outflow

Downflow as a Reconnection Outflow The Solar-B Mission and the Forefront of Solar Physics ASP Conference Series, Vol. 325, 2004 T. Sakurai and T. Sekii, eds. Downflow as a Reconnection Outflow Ayumi Asai and Kazunari Shibata Kwasan and

More information

In class quiz - nature of light. Moonbow with Sailboats (Matt BenDaniel)

In class quiz - nature of light. Moonbow with Sailboats (Matt BenDaniel) In class quiz - nature of light Moonbow with Sailboats (Matt BenDaniel) Nature of light - review Light travels at very high but finite speed. Light is electromagnetic wave characterized by wavelength (or

More information

A STUDY OF TRANSITION REGION AND CORONAL DOPPLER SHIFTS IN A SOLAR CORONAL HOLE. M. D. Popescu 1,2 and J. G. Doyle 1

A STUDY OF TRANSITION REGION AND CORONAL DOPPLER SHIFTS IN A SOLAR CORONAL HOLE. M. D. Popescu 1,2 and J. G. Doyle 1 A STUDY OF TRANSITION REGION AND CORONAL DOPPLER SHIFTS IN A SOLAR CORONAL HOLE M. D. Popescu 1,2 and J. G. Doyle 1 1 Armagh Observatory, College Hill, Armagh BT61 9DG, N. Ireland 2 Astronomical Institute

More information

McMath-Pierce Adaptive Optics Overview. Christoph Keller National Solar Observatory, Tucson

McMath-Pierce Adaptive Optics Overview. Christoph Keller National Solar Observatory, Tucson McMath-Pierce Adaptive Optics Overview Christoph Keller National Solar Observatory, Tucson Small-Scale Structures on the Sun 1 arcsec Important astrophysical scales (pressure scale height in photosphere,

More information

ON THE CONNECTION BETWEEN PROPAGATING CORONAL DISTURBANCES AND CHROMOSPHERIC FOOTPOINTS

ON THE CONNECTION BETWEEN PROPAGATING CORONAL DISTURBANCES AND CHROMOSPHERIC FOOTPOINTS Draft version July 18, 216 Preprint typeset using L A TEX style emulateapj v. 12/16/11 ON THE CONNECTION BETWEEN PROPAGATING CORONAL DISTURBANCES AND CHROMOSPHERIC FOOTPOINTS P. Bryans 1, S. W. McIntosh

More information

9/13/18. ASTR 1040: Stars & Galaxies. Topics for Today and Tues. Nonvisible Light X-ray, UV, IR, Radio. SPITZER Infrared Telescope

9/13/18. ASTR 1040: Stars & Galaxies. Topics for Today and Tues. Nonvisible Light X-ray, UV, IR, Radio. SPITZER Infrared Telescope ASTR 1040: Stars & Galaxies Solar Prominence from SOHO EIT Prof. Juri Toomre TAs: Ryan Horton, Loren Matilsky Lecture 6 Thur 13 Sept 2018 zeus.colorado.edu/astr1040-toomre Topics for Today and Tues Next

More information

Taking Fingerprints of Stars, Galaxies, and Other Stuff. The Bohr Atom. The Bohr Atom Model of Hydrogen atom. Bohr Atom. Bohr Atom

Taking Fingerprints of Stars, Galaxies, and Other Stuff. The Bohr Atom. The Bohr Atom Model of Hydrogen atom. Bohr Atom. Bohr Atom Periodic Table of Elements Taking Fingerprints of Stars, Galaxies, and Other Stuff Absorption and Emission from Atoms, Ions, and Molecules Universe is mostly (97%) Hydrogen and Helium (H and He) The ONLY

More information

Taking fingerprints of stars, galaxies, and interstellar gas clouds. Absorption and emission from atoms, ions, and molecules

Taking fingerprints of stars, galaxies, and interstellar gas clouds. Absorption and emission from atoms, ions, and molecules Taking fingerprints of stars, galaxies, and interstellar gas clouds Absorption and emission from atoms, ions, and molecules 1 Periodic Table of Elements The universe is mostly hydrogen H and helium He

More information

Molecular hydrogen in the chromosphere IRIS observations and a simple model

Molecular hydrogen in the chromosphere IRIS observations and a simple model Molecular hydrogen in the chromosphere IRIS observations and a simple model Sarah A. Jaeggli1, Fernando Delgado1, Philip G. Judge2, & Han Uitenbroek3 1 Montana State University Altitude Observatory 3 National

More information

arxiv: v1 [astro-ph.sr] 6 Jan 2018

arxiv: v1 [astro-ph.sr] 6 Jan 2018 DOI: 10.1007/ - - - - IRIS Observations of Spicules and Structures Near the Solar Limb C. E. Alissandrakis 1 J.-C. Vial 2 A. Koukras 1 E. Buchlin 2 M. Chane-Yook 2 c Springer arxiv:1801.02082v1 [astro-ph.sr]

More information

Mimir NIR Spectroscopy Data Processing Cookbook V2.0 DPC

Mimir NIR Spectroscopy Data Processing Cookbook V2.0 DPC Mimir NIR Spectroscopy Data Processing Cookbook V2.0 DPC - 20111130 1. Fetch and install the software packages needed a. Get the MSP_WCT, MSP_CCS, MSP_SXC packages from the Mimir/Software web site: http://people.bu.edu/clemens/mimir/software.html

More information

Taking fingerprints of stars, galaxies, and interstellar gas clouds

Taking fingerprints of stars, galaxies, and interstellar gas clouds - - Taking fingerprints of stars, galaxies, and interstellar gas clouds Absorption and emission from atoms, ions, and molecules Periodic Table of Elements The universe is mostly hydrogen H and helium He

More information

SNS SORCE News Source

SNS SORCE News Source SNS SORCE News Source Solar Radiation and Climate Experiment Monthly Newsletter March 2007 SORCE Team Submits Extended Mission Proposal For several weeks the SORCE scientists have been busy preparing the

More information

PACS Wavelength Switching AOT release note

PACS Wavelength Switching AOT release note PACS Wavelength Switching AOT release note 1 Prepared by the PACS ICC 20 January 2010 Wavelength switching release note version of 03-dec-2009 updated with full dynamic range saturation limits. Differences

More information

Impressions: First Light Images from UVIT in Orbit

Impressions: First Light Images from UVIT in Orbit Impressions: First Light Images from UVIT in Orbit Drafted by S N Tandon on behalf of UVIT team. December 4, 2015; V1.0 1. Introduction: Ultraviolet Imaging Telescope (UVIT) is the long wavelength eye

More information

1 A= one Angstrom = 1 10 cm

1 A= one Angstrom = 1 10 cm Our Star : The Sun )Chapter 10) The sun is hot fireball of gas. We observe its outer surface called the photosphere: We determine the temperature of the photosphere by measuring its spectrum: The peak

More information

Solar EUV Spectral Irradiance: Measurements. Frank Eparvier

Solar EUV Spectral Irradiance: Measurements. Frank Eparvier Solar EUV Spectral Irradiance: Measurements Frank Eparvier eparvier@colorado.edu Outline Introduction to Solar EUV Irradiance TIMED-SEE and SDO-EVE New Insights into EUV Sun from EVE The Future of EUV

More information

Prentice Hall EARTH SCIENCE

Prentice Hall EARTH SCIENCE Prentice Hall EARTH SCIENCE Tarbuck Lutgens Chapter 24 Studying the Sun 24.1 The Study of Light Electromagnetic Radiation Electromagnetic radiation includes gamma rays, X-rays, ultraviolet light, visible

More information

Chapter 23. Light, Astronomical Observations, and the Sun

Chapter 23. Light, Astronomical Observations, and the Sun Chapter 23 Light, Astronomical Observations, and the Sun The study of light Electromagnetic radiation Visible light is only one small part of an array of energy Electromagnetic radiation includes Gamma

More information

Background The power radiated by a black body of temperature T, is given by the Stefan-Boltzmann Law

Background The power radiated by a black body of temperature T, is given by the Stefan-Boltzmann Law Phys316 Exploration 2: Verifying Stefan-Boltzmann Relationship Background The power radiated by a black body of temperature T, is given by the Stefan-Boltzmann Law Where A is the effective radiating area,

More information

X-ray observations of Solar Flares. Marina Battaglia Fachhochschule Nordwestschweiz (FHNW)

X-ray observations of Solar Flares. Marina Battaglia Fachhochschule Nordwestschweiz (FHNW) X-ray observations of Solar Flares Marina Battaglia Fachhochschule Nordwestschweiz (FHNW) marina.battaglia@fhnw.ch 2 3 The solar corona Close by astrophysical laboratory allows us to study: Release of

More information

Extraction of Point Source Spectra from STIS Long Slit Data

Extraction of Point Source Spectra from STIS Long Slit Data 1997 HST Calibration Workshop Space Telescope Science Institute, 1997 S. Casertano, et al., eds. Extraction of Point Source Spectra from STIS Long Slit Data J. R. Walsh Spect Telescope European Coordinating

More information

Chapter 4. Spectroscopy. Dr. Tariq Al-Abdullah

Chapter 4. Spectroscopy. Dr. Tariq Al-Abdullah Chapter 4 Spectroscopy Dr. Tariq Al-Abdullah Learning Goals: 4.1 Spectral Lines 4.2 Atoms and Radiation 4.3 Formation of the Spectral Lines 4.4 Molecules 4.5 Spectral Line Analysis 2 DR. T. AL-ABDULLAH

More information

Solar Dynamics Observatory (SDO) Extreme Ultraviolet Variability Experiment (EVE): Release notes for version 5 science data products

Solar Dynamics Observatory (SDO) Extreme Ultraviolet Variability Experiment (EVE): Release notes for version 5 science data products Solar Dynamics Observatory (SDO) Extreme Ultraviolet Variability Experiment (EVE): Release notes for version 5 science data products Level 3 Science Data Products Table of Contents Introduction... 1 Responsible

More information

What We've Learned from SORCE: Solar Cycle Maximum to Minimum

What We've Learned from SORCE: Solar Cycle Maximum to Minimum What We've Learned from SORCE: Solar Cycle Maximum to Minimum! Overview of SORCE Mission! Expectations from SORCE! Solar Cycle Results from SORCE Tom Woods LASP / University

More information

The Main Point. How do light and matter interact? Lecture #7: Radiation and Spectra II. How is light absorbed and emitted?

The Main Point. How do light and matter interact? Lecture #7: Radiation and Spectra II. How is light absorbed and emitted? Lecture #7: Radiation and Spectra II How is light absorbed and emitted? Models of Atomic Structure. Formation of Spectral Lines. Doppler Shift. Applications in Solar System Studies Detecting gaseous phases

More information

Venus 2012 transit: spectroscopy and high resolution observations proposals

Venus 2012 transit: spectroscopy and high resolution observations proposals IAP workshop France/Japan - March, 6th 2012 Venus 2012 transit: spectroscopy and high resolution observations proposals by Cyril Bazin, Serge Koutchmy et al. Institut d Astrophysique de Paris UMR 7095

More information

The first telescopes at the lunar outpost will be observing the Sun. Ed DeLuca CfA Heliophysics Subcommittee

The first telescopes at the lunar outpost will be observing the Sun. Ed DeLuca CfA Heliophysics Subcommittee The first telescopes at the lunar outpost will be observing the Sun Ed DeLuca CfA Heliophysics Subcommittee Overview The need for an operational solar telescope In situ space weather forecasting / nowcasting

More information

Tutorial on Bifrost simulations: hands on lab and quicklook tools

Tutorial on Bifrost simulations: hands on lab and quicklook tools Tutorial on Bifrost simulations: hands on lab and quicklook tools Juan Martínez-Sykora Boris Gudiksen Bifrost team See ITN 33 and 34 Documentation http://iris.lmsal.com/documents.html http://tinyurl.com/mzzduqf

More information

ILWS Italian SpaceAgency (ASI) Contribution

ILWS Italian SpaceAgency (ASI) Contribution ILWS Italian SpaceAgency (ASI) Contribution Ester Antonucci Nice April 14-15 2003 ILWS Italian SpaceAgency (ASI) Contribution LWS NASA ESA SPECTRE SolarDynamicsObservatory HERSCHEL Solar Orbiter Bepi Colombo

More information

Spectroscopy for planetary upper atmospheres きょくたん

Spectroscopy for planetary upper atmospheres きょくたん Spectroscopy for planetary upper atmospheres きょくたん Spectrum of Venus atmosphere Spectrum of Jupiter and Io Figure 1. An EUV spectrum measured by Hisaki spacecraft. The spectrograph mixes spatial and spectral

More information

Solar radiation and plasma diagnostics. Nicolas Labrosse School of Physics and Astronomy, University of Glasgow

Solar radiation and plasma diagnostics. Nicolas Labrosse School of Physics and Astronomy, University of Glasgow Solar radiation and plasma diagnostics Nicolas Labrosse School of Physics and Astronomy, University of Glasgow 0 Radiation basics Radiation field in the solar atmosphere Amount of radiant energy flowing

More information

ASTRONOMY. Chapter 15 THE SUN: A GARDEN-VARIETY STAR PowerPoint Image Slideshow

ASTRONOMY. Chapter 15 THE SUN: A GARDEN-VARIETY STAR PowerPoint Image Slideshow ASTRONOMY Chapter 15 THE SUN: A GARDEN-VARIETY STAR PowerPoint Image Slideshow FIGURE 15.1 Our Star. The Sun our local star is quite average in many ways. However, that does not stop it from being a fascinating

More information

Astronomy 154 Lab 4: The Sun. NASA Image comparing the Earth with the Sun. Image from:

Astronomy 154 Lab 4: The Sun. NASA Image comparing the Earth with the Sun. Image from: Astronomy 154 Lab 3: The Sun NASA Image comparing the Earth with the Sun. Image from: http://www.universetoday.com/16338/the-sun/ The Sun at the center of our Solar System is a massive ball of Hydrogen,

More information

Buy-back points tallied and added: 750 points bought-back. Last Withdrawal date: this friday, Oct 31st.

Buy-back points tallied and added: 750 points bought-back. Last Withdrawal date: this friday, Oct 31st. Announcements HW #3: Available online now. Due in 1 week, Nov 3rd, 11pm. Buy-back points tallied and added: 750 points bought-back. Last Withdrawal date: this friday, Oct 31st. Evening Observing: next

More information

ILWS Related Activities in Germany (Update) Prague, June 11-12, 2008

ILWS Related Activities in Germany (Update) Prague, June 11-12, 2008 ILWS Related Activities in Germany (Update) Prague, June 11-12, 2008 ILWS, DLR, Dr. Frings Overview Update is based on previous ILWS Presentations Focus on recent developments and achievements SOL-ACES

More information

DOAS measurements of Atmospheric Species

DOAS measurements of Atmospheric Species Practical Environmental Measurement Techniques: DOAS measurements of Atmospheric Species Last change of document: April 14, 2014 Supervisor: Dr. Andreas Richter, room U2090, tel 62103, and Dr. Folkard

More information

Discovery of Emission Lines in the X-ray Spectrum of the Perseus Cluster

Discovery of Emission Lines in the X-ray Spectrum of the Perseus Cluster Discovery of Emission Lines in the X-ray Spectrum of the Perseus Cluster J. L. Culhane University College London Mullard Space Science Laboratory Summary Nature of the Solar Corona and properties of its

More information

Laboratory For Atmospheric And Space Physics

Laboratory For Atmospheric And Space Physics Laboratory For Atmospheric And Space Physics LASP Mission Operations and Data Systems Division University of Colorado Boulder, Colorado EUV Variability Experiment (EVE) Ground Spectra Measurements Document

More information

Objectives: (a) To understand how to display a spectral image both as an image and graphically.

Objectives: (a) To understand how to display a spectral image both as an image and graphically. Texas Tech University Department of Physics & Astronomy Astronomy 2401 Observational Astronomy Lab 8:- CCD Image Analysis:- Spectroscopy Objectives: There are two principle objectives for this laboratory

More information

DAY LABORATORY EXERCISE: SPECTROSCOPY

DAY LABORATORY EXERCISE: SPECTROSCOPY AS101 - Day Laboratory: Spectroscopy Page 1 DAY LABORATORY EXERCISE: SPECTROSCOPY Goals: To see light dispersed into its constituent colors To study how temperature, light intensity, and light color are

More information

Proposed National Large Solar Telescope. Jagdev Singh Indian Institute of Astrophysics, Bangalore , India.

Proposed National Large Solar Telescope. Jagdev Singh Indian Institute of Astrophysics, Bangalore , India. J. Astrophys. Astr. (2008) 29, 345 351 Proposed National Large Solar Telescope Jagdev Singh Indian Institute of Astrophysics, Bangalore 560 034, India. e-mail: jsingh@iiap.res.in Abstract. Sun s atmosphere

More information

Near Infrared Spectro-Polarimeter Use Case

Near Infrared Spectro-Polarimeter Use Case Project Documentation RPT-0036 Revision A Near Infrared Spectro-Polarimeter Use Case S. Gibson, L. Fletcher, R. Hubbard, S. Keil, J. Kuhn, H. Lin, M. Penn Science Working Group May 2008 Approved for use:

More information

Solar Physics with Radio Observations, Proceedings of Nobeyama Symposium 1998, NRO Report 479. Flare Loop Geometry. Nariaki Nitta

Solar Physics with Radio Observations, Proceedings of Nobeyama Symposium 1998, NRO Report 479. Flare Loop Geometry. Nariaki Nitta Solar Physics with Radio Observations, Proceedings of Nobeyama Symposium 1998, NRO Report 479 Flare Loop Geometry Nariaki Nitta Lockheed Martin Solar and Astrophysics Laboratory O/H1-12, B/252, 3251 Hanover

More information

HR Diagram of Globular Cluster Messier 80 Using Hubble Space Telescope Data

HR Diagram of Globular Cluster Messier 80 Using Hubble Space Telescope Data Jason Kendall, William Paterson University, Department of Physics HR Diagram of Globular Cluster Messier 80 Using Hubble Space Telescope Data Background Purpose: HR Diagrams are central to understanding

More information

AstroBITS: Open Cluster Project

AstroBITS: Open Cluster Project AstroBITS: Open Cluster Project I. Introduction The observational data that astronomers have gathered over many years indicate that all stars form in clusters. In a cloud of hydrogen gas, laced with helium

More information

AST 101 Intro to Astronomy: Stars & Galaxies

AST 101 Intro to Astronomy: Stars & Galaxies AST 101 Intro to Astronomy: Stars & Galaxies Telescopes Mauna Kea Observatories, Big Island, HI Imaging with our Eyes pupil allows light to enter the eye lens focuses light to create an image retina detects

More information

Identifying Emission Lines in the Solar Extreme Ultraviolet (EUV) Irradiance Spectrum

Identifying Emission Lines in the Solar Extreme Ultraviolet (EUV) Irradiance Spectrum Identifying Emission Lines in the Solar Extreme Ultraviolet (EUV) Irradiance Spectrum Rachael L. Tomasino Advisors: Dr. Frank Eparvier and Rachel Hock University of Colorado, Boulder Laboratory for Atmospheric

More information

2 The solar atmosphere

2 The solar atmosphere 1 The solar atmosphere 1.1 Introduction The solar atmosphere may be broadly defined as that part of the Sun extending outwards from a level known as the photosphere where energy generated at the Sun s

More information

The Interior Structure of the Sun

The Interior Structure of the Sun The Interior Structure of the Sun Data for one of many model calculations of the Sun center Temperature 1.57 10 7 K Pressure 2.34 10 16 N m -2 Density 1.53 10 5 kg m -3 Hydrogen 0.3397 Helium 0.6405 The

More information

Telescopes, Observatories, Data Collection

Telescopes, Observatories, Data Collection Telescopes, Observatories, Data Collection Telescopes 1 Astronomy : observational science only input is the light received different telescopes, different wavelengths of light lab experiments with spectroscopy,

More information

Kinematics and magnetic properties of a light bridge in a decaying sunspot

Kinematics and magnetic properties of a light bridge in a decaying sunspot Kinematics and magnetic properties of a light bridge in a decaying sunspot M. Falco 1, J. M. Borrero 2, S.L. Guglielmino 1, P. Romano 3, R. Schlichenmaier 2, F. Zuccarello 1, S. Criscuoli 4, A. Cristaldi

More information

GIS Data Processing. Eddie Breeveld MSSL/UCL

GIS Data Processing. Eddie Breeveld MSSL/UCL GIS Data Processing Eddie Breeveld MSSL/UCL erb@mssl.ucl.ac.uk GIS Data Processing Introduction and status of the GIS system Planning GIS Observations Displaying GIS Data Correcting Instument Effects Fixed

More information

Summary. Week 7: 10/5 & 10/ Learning from Light. What are the three basic types of spectra? Three Types of Spectra

Summary. Week 7: 10/5 & 10/ Learning from Light. What are the three basic types of spectra? Three Types of Spectra Week 7: 10/5 & 10/7 Capturing that radiation Chapter 6 (Telescopes & Sensors) Optical to Radio Summary What are we sensing? Matter! Matter is made of atoms (nucleus w/ protons, neutrons & cloud of electrons

More information

Flare Irradiance Spectral Model (FISM) use for space weather applications

Flare Irradiance Spectral Model (FISM) use for space weather applications Flare Irradiance Spectral Model (FISM) use for space weather applications P. C. Chamberlin, T. N. Woods and F. G. Eparvier Laboratory for Atmospheric and Space Physics, University of Colorado, 1234 Innovation

More information

Appendix G. Solar Orbiter SPICE Thermal Design, Analysis and Testing. Samuel Tustain (RAL Space, United Kingdom)

Appendix G. Solar Orbiter SPICE Thermal Design, Analysis and Testing. Samuel Tustain (RAL Space, United Kingdom) 137 Appendix G Solar Orbiter SPICE Thermal Design, Analysis and Testing Samuel Tustain (RAL Space, United Kingdom) 138 Solar Orbiter SPICE Thermal Design, Analysis and Testing Abstract 1 The Spectral Imaging

More information

The Solar Chromosphere

The Solar Chromosphere The Solar Chromosphere Han Uitenbroek National Solar Observatory/Sacramento Peak Sunspot NM, USA IUGG, Session GAiv.01, Sapporo, Japan, 2003 July 1 Summary The chromosphere as part of the transition between

More information

Multistage Anslysis on Solar Spectral Analyses with Uncertainties in Atomic Physical Models

Multistage Anslysis on Solar Spectral Analyses with Uncertainties in Atomic Physical Models Multistage Anslysis on Solar Spectral Analyses with Uncertainties in Atomic Physical Models Xixi Yu Imperial College London xixi.yu16@imperial.ac.uk 23 October 2018 Xixi Yu (Imperial College London) Multistage

More information

= λ. Light: The Cosmic Messenger. Continuing Topics for Today 1/24/17. Your account on Mastering Astronomy. ASTR 1040 Stars & Galaxies

= λ. Light: The Cosmic Messenger. Continuing Topics for Today 1/24/17. Your account on Mastering Astronomy. ASTR 1040 Stars & Galaxies REMINDER Your account on Mastering Astronomy ASTR 1040 Stars & Galaxies SDO: Post-flare ejection from solar surface Prof. Juri Toomre TAs: Piyush Agrawal, Connor Bice Lecture 3 Tues 24 Jan 2017 zeus.colorado.edu/astr1040-toomre

More information

Astro 1050 Wed. Feb. 18, 2015

Astro 1050 Wed. Feb. 18, 2015 Astro 1050 Wed. Feb. 18, 2015 Today: Begin Chapter 5: Light the Cosmic Messenger For Friday: Study for Test #1 Be sure to bring green bubble sheet, #2 pencil and a calculator. 1 Chapter 5: Light, the Cosmic

More information

UV spectro-polarimetry with CLASP & CLASP2 sounding rocket experiments

UV spectro-polarimetry with CLASP & CLASP2 sounding rocket experiments UV spectro-polarimetry with CLASP & CLASP2 sounding rocket experiments R. Ishikawa (1), R. Kano (1), A. Winebarger (2), D. E. McKenzie (2), F. Auchere (3), J. Trujillo Bueno (4), N. Narukage (1), K. Kobayashi

More information

Electromagnetic Radiation and Scientific Instruments. PTYS April 1, 2008

Electromagnetic Radiation and Scientific Instruments. PTYS April 1, 2008 Electromagnetic Radiation and Scientific Instruments PTYS 206-2 April 1, 2008 Announcements Deep Impact 6 PM Wednesday Night Pizza, no beer Watch at home if you can t watch here. It will be discussed in

More information

Reading Clicker Q. Spectroscopy analyzing the light. What light gets through? Instruments in the Focal Plane. ASTR 1040 Accel Astro: Stars & Galaxies

Reading Clicker Q. Spectroscopy analyzing the light. What light gets through? Instruments in the Focal Plane. ASTR 1040 Accel Astro: Stars & Galaxies ASTR 1040 Accel Astro: Stars & Galaxies Prof. Juri Toomre TAs: Nicholas Nelson, Zeeshan Parkar Lecture 5 Tues 26 Jan 2010 zeus.colorado.edu/astr1040-toomre toomre Topics for Today What light does and does

More information

AST 102 chapter 5. Radiation and Spectra. Radiation and Spectra. Radiation and Spectra. What is light? What is radiation?

AST 102 chapter 5. Radiation and Spectra. Radiation and Spectra. Radiation and Spectra. What is light? What is radiation? 5 Radiation and Spectra 1 Radiation and Spectra What is light? According to Webster: a.something that makes vision possible b.the sensation aroused by stimulation of the visual receptors c.electromagnetic

More information

TRACE DOWNFLOWS AND ENERGY RELEASE

TRACE DOWNFLOWS AND ENERGY RELEASE TRACE DOWNFLOWS AND ENERGY RELEASE Ayumi Asai (1), T. Yokoyama (2), M. Shimojo (3), R. TanDokoro (4), M. Fujimoto (4), and K. Shibata (1) (1 ) Kwasan and Hida Observatories, Kyoto University, Kyoto, 607-8471

More information

Menzel/Matarrese/Puca/Cimini/De Pasquale/Antonelli Lab 2 Ocean Properties inferred from MODIS data June 2006

Menzel/Matarrese/Puca/Cimini/De Pasquale/Antonelli Lab 2 Ocean Properties inferred from MODIS data June 2006 Menzel/Matarrese/Puca/Cimini/De Pasquale/Antonelli Lab 2 Ocean Properties inferred from MODIS data June 2006 Table: MODIS Channel Number, Wavelength (µm), and Primary Application Reflective Bands Emissive

More information

Properties of Thermal Radiation

Properties of Thermal Radiation Observing the Universe: Telescopes Astronomy 2020 Lecture 6 Prof. Tom Megeath Today s Lecture: 1. A little more on blackbodies 2. Light, vision, and basic optics 3. Telescopes Properties of Thermal Radiation

More information

Extended Missions. Dr. Art Poland Heliophysics Senior Review Chair George Mason University

Extended Missions. Dr. Art Poland Heliophysics Senior Review Chair George Mason University Extended Missions Dr. Art Poland Heliophysics Senior Review Chair George Mason University My Experience Experiment scientist on Skylab 1973- Experiment scientist on SMM 1980- US project Scientist for the

More information

Ground and On-Orbit Characterization and Calibration of the Geosynchronous Imaging Fourier Transform Spectrometer (GIFTS)

Ground and On-Orbit Characterization and Calibration of the Geosynchronous Imaging Fourier Transform Spectrometer (GIFTS) Ground and On-Orbit Characterization and Calibration of the Geosynchronous Imaging Fourier Transform Spectrometer (GIFTS) John D. Elwell 1, Deron K. Scott 1 Henry E. Revercomb 2, Fred A. Best 2, Robert

More information

Physics 343 Lecture # 5: Sun, stars, and planets; (more) statistics

Physics 343 Lecture # 5: Sun, stars, and planets; (more) statistics Physics 343 Lecture # 5: Sun, stars, and planets; (more) statistics Schedule for the next week Office hours: Thu 5:00 6:00pm = Rivera; Fri 3:20 4:40 = Baker + on call Sections A, C, F, G = Baker; Sections

More information

Lecture Fall, 2005 Astronomy 110 1

Lecture Fall, 2005 Astronomy 110 1 Lecture 13+14 Fall, 2005 Astronomy 110 1 Important Concepts for Understanding Spectra Electromagnetic Spectrum Continuous Spectrum Absorption Spectrum Emission Spectrum Emission line Wavelength, Frequency

More information

Foundations of Astronomy 13e Seeds. Chapter 6. Light and Telescopes

Foundations of Astronomy 13e Seeds. Chapter 6. Light and Telescopes Foundations of Astronomy 13e Seeds Chapter 6 Light and Telescopes Guidepost In this chapter, you will consider the techniques astronomers use to study the Universe What is light? How do telescopes work?

More information