SMTN-002: Calculating LSST limiting magnitudes and SNR

Size: px
Start display at page:

Download "SMTN-002: Calculating LSST limiting magnitudes and SNR"

Transcription

1 SMTN-002: Calculating LSST limiting magnitudes and SNR Release Lynne Jones

2

3 Contents 1 Source Counts 3 2 Instrumental Zeropoints 5 3 Sky Counts 7 4 Instrumental Noise 9 5 Source footprint (n eff ) 11 6 Calculating m Useful github repositories 15 8 Calculating m5 values in the LSST Operations Simulator Calculating C_m values Data Sources and References 19 i

4 ii

5 SMTN-002: Calculating LSST limiting magnitudes and SNR, Release Calculating either signal to noise ratios for various sources, or 5-sigma point source limiting magnitudes for LSST can be accomplished using standard SNR equations together with available information on the expected LSST camera and telescope components. The appropriate methodology to calculate SNR values for PSF-optimized photometry is outlined in the LSST Change Controlled Document LSE-40, and partially summarized below. Note that LSE-40 is awaiting updates to match new throughput curves and updated information on how we re handling the PSF profile which means the actual values calculated in that document are outdated. The SNR calculation can be summarized as follows: C SNR = C/g + (B/g + σ 2 instr ) n eff n eff = (F W HM eff /pixelscale) 2 where C = total source counts, B = sky background counts per pixel, σ instr is the instrumental noise per pixel (all in ADU) and g = gain. The LSST expected gain is 2.3 electron/adu, but for purposes of calculating SNR or m5, it can safely be assumed to be 1, which has the nice property that then all quantities are equivalent in ADU or photo-electrons. Contents 1

6 SMTN-002: Calculating LSST limiting magnitudes and SNR, Release 2 Contents

7 CHAPTER 1 Source Counts The total counts (in ADU) in the focal plane from any source can be calculated by multiplying the source spectrum, F ν (λ) at the top of the atmosphere in Janskys, by the fractional probability of reaching the focal plane and being converted into electrons and integrating over wavelength (S(λ)): C = expt ime effarea g h F ν (λ) S(λ) λ dλ where exptime = exposure time in seconds (typically 30 seconds for LSST), effarea = effective collecting area in cm^2 (effective area-weighted clear aperture diameter for the LSST primary, when occultation from the secondary and tertiary mirrors and vignetting effects are included, is m), and h = Planck constant. The fractional throughput curves, S(λ), for each component in the LSST hardware system plus a standard atmosphere can be found in the LSST syseng_throughputs github repository. 3

8 SMTN-002: Calculating LSST limiting magnitudes and SNR, Release 4 Chapter 1. Source Counts

9 CHAPTER 2 Instrumental Zeropoints We can also use the above formula to calculate the instrumental zeropoint in each bandpass, the AB magnitude which would produce one count per second (note this value depends on the gain used; here we use gain=1, so the counts in ADU = counts in photo-electrons). Filter Instrumental Zeropoint (exptime=1s, gain=1) u g r i z y

10 SMTN-002: Calculating LSST limiting magnitudes and SNR, Release 6 Chapter 2. Instrumental Zeropoints

11 CHAPTER 3 Sky Counts When calculating sky background counts per pixel, instead of using the entire hardware system plus atmosphere, the F ν (λ) value for the sky spectrum should be multiplied by only the hardware. 1 The skybrightness in magnitudes per sq arcsecond then is used to calculate counts per sq arcsecond, and converted to counts per pixel using the pixelscale, 0.2 /pixel. The expected sky brightness at zenith, in dark sky, has been calculated in each LSST bandpass by generating a dark sky spectrum, using data from UVES and Gemini near-ir combined with an ESO sky spectrum, with a slight normalization in the u and y bands to match the median dark sky values reported by SDSS. The resulting zenith, dark sky brightness values are in good agreement with other measurements from CTIO and ESO. Filter Sky brightness (mag/arcsecond^2) u g r i z y The instrumental zeropoints above could be used to calculate approximate background sky counts per arcsecond sq or exact values could be calculated using the calibrated spectrum available at darksky.dat. 1 The atmosphere should not be included in the calculation of the expected counts in the focal plane, as the sky emission comes from various layers in the atmosphere - a completely proper treatment would involve a radiative transfer model that includes emission and absorption over the entire atmosphere. Instead the standard treatment is to generate a sky brightness and sky spectrum that correspond to the skybrightness at the pupil of the telescope, and then just multiply this by S hardware (λ) to generate the focal plane counts 7

12 SMTN-002: Calculating LSST limiting magnitudes and SNR, Release 8 Chapter 3. Sky Counts

13 CHAPTER 4 Instrumental Noise The instrumental noise per pixel, σ instr, can be calculated as σ 2 instr = (readnoise 2 + (darkcurrent * expt ime)) * n exp where the LSST requirements place upper limits of 0.2 photo-electrons/second/pixel on the dark current and 8.8 photoelectrons/pixel/exposure on the total readnoise from the camera (sensors plus electronics). Tests of vendor prototypes sensors are consistent with these requirements. The current LSST observing plan is to take back-to-back exposures of the same field, each exposure 15 seconds long, for a total of n exp =2 exposures per 30 second long visit. The total instrumental noise per exposure is 9 photoelectrons. The combined total instrumental noise per visit is then 12.7 photo-electrons. 9

14 SMTN-002: Calculating LSST limiting magnitudes and SNR, Release 10 Chapter 4. Instrumental Noise

15 CHAPTER 5 Source footprint (n eff ) Optimal source count extraction means matching the photometry footprint to the PSF of the source. Raytrace experiments using models of the LSST mirors and focal plane and atmosphere, as well as observations from existing telescopes, indicate that the PSF for point sources should be similar to a von Karman profile. The details of the profile depend independently on the size of the atmospheric IQ and the hardware IQ. The conversion factors will be described in a planned update of LSE-40 and the LSST Overview Paper. Because the SNR calculation only depends on the number of pixels contained in the footprint on the focal plane (to determine the sky noise and instrumental noise contributions), we calculate F W HM eff : the FWHM of a single gaussian which contains the same number of pixels as the von Karman profile. This must be calculated for the appropriate atmosphere and hardware contributions in a given observation. F W HM sys (X) = X 0.6 telseeing 2 + opticaldesign 2 + cameraseeing 2 F W HM eff (X) = 1.16 F W HMsys F W HMatm 2 where requirements place the system contributions at telseeing = 0.25, opticaldesign = 0.08, and cameraseeing = We can then just calculate n eff using a single gaussian profile, n eff = (F W HM eff /pixelscale) 2. For purposes where the physical size of the PSF is important, such as modeling moving object trailing losses or galaxy shape measurements, we can also calculate F W HM geom, F W HM geom = F W HM eff F W HM geom is typically slightly smaller than F W HM eff. The expected median F W HM eff at zenith in the various LSST bandpasses is Filter F W HM eff u 0.92 g 0.87 r 0.83 i 0.80 z 0.78 y

16 SMTN-002: Calculating LSST limiting magnitudes and SNR, Release where this includes the expected (and modeled) telescope contribution as well as the distribution of IQ measurements from an on-site DIMM. 12 Chapter 5. Source footprint (n eff )

17 CHAPTER 6 Calculating m5 With all of these values, we can calculate the 5σ limiting magnitude for point sources (m5) in each bandpass, in the dark sky, zenith case. The resulting values are Filter m5 u g r i z y

18 SMTN-002: Calculating LSST limiting magnitudes and SNR, Release 14 Chapter 6. Calculating m5

19 CHAPTER 7 Useful github repositories The algorithms described in LSE-40 are implemented in the LSST sims_photutils package, available on github. In particular, the SignalToNoise module calculates signal to noise ratios and limiting magnitudes (m5) values. Here is an ipython notebook example using this code to calculate SNR in a variety of situations. The throughput curves used for this analysis are based on the throughput components in the syseng_throughputs repository. There is more information on the origin of these throughput curves and other key number data in the section Data Sources below. 15

20 SMTN-002: Calculating LSST limiting magnitudes and SNR, Release 16 Chapter 7. Useful github repositories

21 CHAPTER 8 Calculating m5 values in the LSST Operations Simulator To rapidly calculate the m5 values reported with each visit in the outputs from the Operations Simulator, the SNR formulas above are used to calculate two values, C m and dcm inf. These values can then be used to calculate m5 under a wide range of sky brightness, seeing, airmass, and exposure times. m5 = C m + dc m (m sky 21.0) + 2.5log 10 (0.7/F W HM eff ) dc m = dc inf m +1.25log 10 (expt ime/30.0) k atm (X 1.0) 1.25log 10 (1 + (10 (0.8 dcinf m 1) /T scale) T scale = expt ime/30.0 * *(m sky m darksky ) The dcm inf term accounts for the transition between instrument noise limited observations and sky background limited observations as the exposure time or sky brightness varies. For most LSST bandpasses, we are sky-noise dominated even in 15 second exposures, but in the u band, the sky background is low enough that the exposures become read noise limited. The k atm term captures the extinction of the atmosphere and how it varies with airmass. It can be calculated as k atm = 2.5log 10 (T b /Σ b ), where T b is the sum of the total system throughput in a particular bandpass and Σ b is the sum of the hardware throughput in a particular bandpass (without the atmosphere). Filter Cm dcm_inf k_atm u g r i z y These values are used within OpSim to calculate m5 values for each pointing in the calc_m5 function in gen_output.py within the sims_operations codebase. The remaining required inputs to calculate m5 in OpSim are the sky brightness and the seeing, as the airmass and exposure time will come from the scheduling data itself. The sky brightness is currently calculated using a V-band sky brightness model based on Krisciunas & Schafer (1991) (K&S), which is then adjusted to give sky brightness values in various bandpasses using color terms that depend on the phase of the moon. The V-band sky brightness calculations are implemented in the AstronomicalSky.py module 17

22 SMTN-002: Calculating LSST limiting magnitudes and SNR, Release of OpSim, and the per-filter adjustments based on lunar phase are done in Filters.py. The current OpSim model simply sets y band skybrightness to 17.3 and implements a step-function for twilight if the altitude of the sun is above -18 degrees, setting the sky brightness to 17.0 in z and y (and the scheduler is then constrained to observed in z and y during this time, currently). In the near future we will be updating the OpSim sky brightness model, to a new sims_skybrightness model that more closely follows the ESO sky calculator along with an empirical model for twilight. The sims_skybrightness model has been validated with nearly a year of on-site all-sky measurements. The current model has various flaws compared to the upcoming new model, but for the most part these flaws result in a brighter sky brightness value being used currently than the more realistic sims_skybrightness model predicts (see comparison). The input seeing data used in OpSim are the atmosphere-only FWHM at 500 nm at zenith, based on three years of on-site DIMM measurements. The raw atmospheric FWHM values (F W HM 500 ) are adjusted to the image quality delivered by the entire system by F W HM sys (X) = telseeing 2 + opticaldesign 2 + cameraseeing 2 (X) 0.6 F W HM atm (X) = F W HM 500 ( 500nm ) 0.3 (X) 0.6 λ eff F W HM eff (X) = 1.16 F W HMsys F W HMatm 2 where the system contributions are telseeing = 0.25, opticaldesign = 0.08, and cameraseeing = λ eff is the effective wavelength for each filter: 366, 482, 622, 754, 869 and 971 nm respectively for u, g, r, i, z, y. 8.1 Calculating C_m values The values for C m and dc inf m can be calculated using the m5 value of a dark sky, zenith visit. C m = m5 0.5 (m darksky 21.0) + 2.5log 10 (0.7/F W HM eff ) log 10 (expt ime/30.0) where m darksky is the dark sky background value in the bandpass, as described in the table above. A related Cm inf can be calculated using an m5 value generated by assuming that the instrument noise per exposure is 0. The difference between Cm inf and C m is dcm inf. 18 Chapter 8. Calculating m5 values in the LSST Operations Simulator

23 CHAPTER 9 Data Sources and References Change controlled documents: LSE-40 : Photon Rates and SNR Calculations < (useful for SNR eqns, but do not use the outdated values from this document) LSE-29 : LSST System Requirements < LSE-30 : Observatory System Specifications < LSE-59 : Camera Subsystem Requirements < Official project documents not under change control - The LSST Overview Paper < LSST Key Numbers < LSST-PST Syseng_throughputs components git repository < throughputs> Primary mirror clear aperture LSE-29, LSR-REQ-0003, LSST Key Numbers m Median delivered Image Quality 0.65 Overview Paper, fig. 1 (Site DIMM + telescope model) Total instrumental noise per exposure 9 e- LSE-59, CAM-REQ-0020 (readnoise and dark current) Diameter of field of view 3.5 deg LSE-29, LSR-REQ-0004 Focal plane coverage (fill factor in active area of >90% LSE-30, OSS-REQ-0259 FOV) Focal plane coverage (fill factor in active area of FOV) 91% Calculated from focal plane models Throughput curves: syseng_throughputs github repo: 2 The area-weighted clear aperture is m across the entire field of view, although this varies with location. Near the center, the clear aperture is 6.7 m, while near the edge of the field of view it rolls off by about 10% m is the area-weighted average across the full field of view. 19

24 SMTN-002: Calculating LSST limiting magnitudes and SNR, Release The QE curve for the CCD is measured from prototype devices delivered by the two vendors under consideration. The filter transmission curves match those provided as specifications to vendors, and are derived from LSE-30, OSS-REQ Mirror reflectivities are based on lab measurements of pristine witness samples; the losses and lens transmission curves are based on expected performance curves. The atmospheric transmission is based on MODTRAN models of the atmosphere at Cerro Pachon, with the addition of a conservative amount of aerosols. The throughput curves are consistent with the relevant requirements documents, LSE-29 and LSE-30. More information on the throughput curves for each component, along with the time-averaged losses applied to each component due to surface contamination and condensation, is available in the README. The throughput curves in the syseng_throughputs repository track the expected performance of the components of the LSST systems. There are versions of these throughput curves packaged for distribution in the throughputs github repository, along with jupyter notebook examples of calculating SNR using these curves and the sims_photutils package, such as this notebook. The dark sky sky brightness values come from a dark sky, zenith spectrum which produces broadband dark sky background measurements consistent with observed values at SDSS and other sites. We have a new skybrightness package in development which is also in general agreement with these dark sky values. The new sky brightness simulator includes twilight sky brightness, as well as explicit components contributed by the moon, zodiacal light, airglow and sky emission lines - it is based on the ESO sky calculator with the addition of a twilight sky model based on observational data from the LSST site. The conversion from atmospheric FWHM to delivered image quality is based on ray-trace simulations by Bo Xin (LSST Systems Engineering). The atmospheric FWHM measurements come from an on-site DIMM, described in more depth in the Site Selection documents. The DIMM measurements were cross-checked with measurements coming from nearby atmospheric monitoring systems from other observatories. 20 Chapter 9. Data Sources and References

AS750 Observational Astronomy

AS750 Observational Astronomy Lecture 9 0) Poisson! (quantum limitation) 1) Diffraction limit 2) Detection (aperture) limit a)simple case b)more realistic case 3) Atmosphere 2) Aperture limit (More realistic case) Aperture has m pixels

More information

EXPOSURE TIME ESTIMATION

EXPOSURE TIME ESTIMATION ASTR 511/O Connell Lec 12 1 EXPOSURE TIME ESTIMATION An essential part of planning any observation is to estimate the total exposure time needed to satisfy your scientific goal. General considerations

More information

The Dark Energy Survey Public Data Release 1

The Dark Energy Survey Public Data Release 1 The Dark Energy Survey Public Data Release 1 Matias Carrasco Kind (NCSA/UIUC) and the DR1 Release Team https://des.ncsa.illinois.edu/ Near-Field Cosmology with DES DR1 and Beyond Workshop, June 27-29th,

More information

OPTICAL PHOTOMETRY. Observational Astronomy (2011) 1

OPTICAL PHOTOMETRY. Observational Astronomy (2011) 1 OPTICAL PHOTOMETRY Observational Astronomy (2011) 1 The optical photons coming from an astronomical object (star, galaxy, quasar, etc) can be registered in the pixels of a frame (or image). Using a ground-based

More information

NEWFIRM Quick Guide for Proposal Preparation

NEWFIRM Quick Guide for Proposal Preparation NEWFIRM Quick Guide for Proposal Preparation Ron Probst NEWFIRM Instrument Scientist September 2008 NEWFIRM is a 1-2.4 micron IR camera for the NOAO 4-m telescopes. It has a flexible complement of broad

More information

You, too, can make useful and beautiful astronomical images at Mees: Lesson 3

You, too, can make useful and beautiful astronomical images at Mees: Lesson 3 You, too, can make useful and beautiful astronomical images at Mees: Lesson 3 Calibration and data reduction Useful references, besides Lessons 1 and 2: The AST 142 Projects manual: http://www.pas.rochester.edu/~dmw/ast142/projects/project.pdf

More information

Large Imaging Surveys for Cosmology:

Large Imaging Surveys for Cosmology: Large Imaging Surveys for Cosmology: cosmic magnification AND photometric calibration Alexandre Boucaud Thesis work realized at APC under the supervision of James G. BARTLETT and Michel CRÉZÉ Outline Introduction

More information

Ay Fall 2012 Imaging and Photometry Part I

Ay Fall 2012 Imaging and Photometry Part I Ay 122 - Fall 2012 Imaging and Photometry Part I (Many slides today c/o Mike Bolte, UCSC) Imaging and Photometry Now essentially always done with imaging arrays (e.g., CCDs); it used to be with single-channel

More information

Southern African Large Telescope. Prime Focus Imaging Spectrograph. Instrument Acceptance Testing Plan

Southern African Large Telescope. Prime Focus Imaging Spectrograph. Instrument Acceptance Testing Plan Southern African Large Telescope Prime Focus Imaging Spectrograph Instrument Acceptance Testing Plan Eric B. Burgh University of Wisconsin Document Number: SALT-3160AP0003 Revision 1.0 18 February 2003

More information

E-ELT Spectroscopic ETC: Detailed Description

E-ELT Spectroscopic ETC: Detailed Description E-ELT Spectroscopic ETC: Detailed Description Jochen Liske Based on a document originally written by Pascal Ballester, Andrés Jordán, Markus Kissler- Patig & Jakob Vinther. 1. Preliminaries As of Jan 2008

More information

Commissioning of the Hanle Autoguider

Commissioning of the Hanle Autoguider Commissioning of the Hanle Autoguider Copenhagen University Observatory Edited November 10, 2005 Figure 1: First light image for the Hanle autoguider, obtained on September 17, 2005. A 5 second exposure

More information

Photometric Products. Robert Lupton, Princeton University LSST Pipeline/Calibration Scientist PST/SAC PST/SAC,

Photometric Products. Robert Lupton, Princeton University LSST Pipeline/Calibration Scientist PST/SAC PST/SAC, Photometric Products Robert Lupton, Princeton University LSST Pipeline/Calibration Scientist PST/SAC 2018-02-27 PST/SAC, 2018-02-27 LSST2017 Tucson, AZ August 14-18, 2017 1 Outline Photometry Point Sources

More information

Large Area Imaging Survey of Near-Infrared Sky with Korean Compact Space Telescopes

Large Area Imaging Survey of Near-Infrared Sky with Korean Compact Space Telescopes Large Area Imaging Survey of Near-Infrared Sky with Korean Compact Space Telescopes Science & Technology Satellite Series (KARI) (2000 ~ 2013. 02) 1 st Satellite: FIMS (Far-ultraviolet IMaging Spectrograph)

More information

An end-to-end simulation framework for the Large Synoptic Survey Telescope Andrew Connolly University of Washington

An end-to-end simulation framework for the Large Synoptic Survey Telescope Andrew Connolly University of Washington An end-to-end simulation framework for the Large Synoptic Survey Telescope Andrew Connolly University of Washington LSST in a nutshell The LSST will be a large, wide-field, ground-based optical/near-ir

More information

The verification of the MASS spectral response

The verification of the MASS spectral response The verification of the MASS spectral response Victor Kornilov September 14, 2006 Introduction The paper 1 shows that the weighting functions (WF) used for turbulence profile restoration from the scintillation

More information

Gemini Integration Time Calculators

Gemini Integration Time Calculators Gemini Integration Time Calculators Phil Puxley SPE-C-G0076 Version 1.1; June 1998 Version History: 1.0 June 1998; first draft. 1.1 June 1998; following comments from Ted von Hippel and Joe Jensen. 1.

More information

arxiv: v1 [astro-ph.im] 10 Nov 2015

arxiv: v1 [astro-ph.im] 10 Nov 2015 Asteroids: New Observations, New Models Proceedings IAU Symposium No. 318, 2015 S. Chesley, A. Morbidelli, R. Jedicke & D. Farnocchia eds. c 2015 International Astronomical Union DOI: 0000/X000000000000000X

More information

LAMOST Sky Survey --Site limitations and survey planning

LAMOST Sky Survey --Site limitations and survey planning LAMOST Sky Survey --Site limitations and survey planning Chao Liu, Licai Deng National Astronomical Observatories, CAS Heidi Newberg Rensselaer Polytechnic Institute Overview Site limitations that strictly

More information

SkyMapper and the Southern Sky Survey

SkyMapper and the Southern Sky Survey SkyMapper and the Southern Sky Survey Stefan Keller Mt. Stromlo Observatory Brian Schmidt, Mike Bessell and Patrick Tisserand SkyMapper 1.35m telescope with a 5.7 sq. degree field of view located at Siding

More information

2-D Images in Astronomy

2-D Images in Astronomy 2-D Images in Astronomy ZTF camera FOV is 50 square degrees. Largest camera on >1m telescope by area in the world. Or, to make a little clearer, here s Orion. The white box is the ZTF imaging area. The

More information

A daytime measurement of the lunar contribution to the night sky brightness in LSST s ugrizy bands initial results

A daytime measurement of the lunar contribution to the night sky brightness in LSST s ugrizy bands initial results A daytime measurement of the lunar contribution to the night sky brightness in LSST s ugrizy bands initial results The Harvard community has made this article openly available. Please share how this access

More information

SKINAKAS OBSERVATORY. Astronomy Projects for University Students PROJECT SUPERNOVA REMNANTS

SKINAKAS OBSERVATORY. Astronomy Projects for University Students PROJECT SUPERNOVA REMNANTS PROJECT 10 SUPERNOVA REMNANTS Objective: The purpose of this exercise is also twofold. The first one is to gain further experience with the analysis of narrow band images (as in the case of planetary nebulae)

More information

Photographing the Moon and the ISS. By Thierry Legault

Photographing the Moon and the ISS. By Thierry Legault Photographing the Moon and the ISS By Thierry Legault Photographing the whole Moon: basics Needs a DSLR at prime focus of the telescope The field of view depends on the telescope FL and the size S of the

More information

Real Telescopes & Cameras. Stephen Eikenberry 05 October 2017

Real Telescopes & Cameras. Stephen Eikenberry 05 October 2017 Lecture 7: Real Telescopes & Cameras Stephen Eikenberry 05 October 2017 Real Telescopes Research observatories no longer build Newtonian or Parabolic telescopes for optical/ir astronomy Aberrations from

More information

Simulations of Non-resolved, Infrared Imaging of Satellites

Simulations of Non-resolved, Infrared Imaging of Satellites Simulations of Non-resolved, Infrared Imaging of Satellites Kevin T.C. Jim, Basil Scott, Russell Knox Oceanit, 828 Fort St. Mall, Suite 600, Honolulu, HI 96816 kjim@oceanit.com ABSTRACT To determine the

More information

Sky Brightness at the Hobby-Eberly Telescope

Sky Brightness at the Hobby-Eberly Telescope Sky Brightness at the Hobby-Eberly Telescope D. Austin Belknap August 15, 2008 Abstract The Hobby-Eberly Telescope (HET) at McDonald Observatory has a 9.2 m effective aperture, and has been in operation

More information

Astronomical image reduction using the Tractor

Astronomical image reduction using the Tractor the Tractor DECaLS Fin Astronomical image reduction using the Tractor Dustin Lang McWilliams Postdoc Fellow Carnegie Mellon University visiting University of Waterloo UW / 2015-03-31 1 Astronomical image

More information

The Large Synoptic Survey Telescope

The Large Synoptic Survey Telescope The Large Synoptic Survey Telescope Philip A. Pinto Steward Observatory University of Arizona for the LSST Collaboration 17 May, 2006 NRAO, Socorro Large Synoptic Survey Telescope The need for a facility

More information

NICMOS Status and Plans

NICMOS Status and Plans 1997 HST Calibration Workshop Space Telescope Science Institute, 1997 S. Casertano, et al., eds. NICMOS Status and Plans Rodger I. Thompson Steward Observatory, University of Arizona, Tucson, AZ 85721

More information

Problem Solving. radians. 180 radians Stars & Elementary Astrophysics: Introduction Press F1 for Help 41. f s. picture. equation.

Problem Solving. radians. 180 radians Stars & Elementary Astrophysics: Introduction Press F1 for Help 41. f s. picture. equation. Problem Solving picture θ f = 10 m s =1 cm equation rearrange numbers with units θ factors to change units s θ = = f sinθ fθ = s / cm 10 m f 1 m 100 cm check dimensions 1 3 π 180 radians = 10 60 arcmin

More information

SkyMapper and the Southern Sky Survey

SkyMapper and the Southern Sky Survey and the Southern Sky Survey, Brian Schmidt and Mike Bessell Slide 1 What is? 1.35m telescope with a 5.7 sq. degree field of view To reside at Siding Spring Observatory, NSW To conduct the Southern Sky

More information

1 The Preliminary Processing

1 The Preliminary Processing AY 257 Modern Observational Techniques...23 1 The Preliminary Processing Frames must be corrected for a bias level and quantum efficiency variations on all scales. For a minority of CCDs and most near-ir

More information

Capturing and Processing Deep Space Images. Petros Pissias Eumetsat Astronomy Club 15/03/2018

Capturing and Processing Deep Space Images. Petros Pissias Eumetsat Astronomy Club 15/03/2018 Capturing and Processing Deep Space Images Petros Pissias Eumetsat Astronomy Club 15/03/2018 Agenda Introduction Basic Equipment Preparation Acquisition Processing Quick demo Petros Pissias Eumetsat Astronomy

More information

MERIS US Workshop. Instrument Characterization Overview. Steven Delwart

MERIS US Workshop. Instrument Characterization Overview. Steven Delwart MERIS US Workshop Instrument Characterization Overview Steven Delwart Presentation Overview On-Ground Characterisation 1. Diffuser characterisation 2. Polarization sensitivity 3. Optical Transmission 4.

More information

1 A photometric probe for Pan-STARRS

1 A photometric probe for Pan-STARRS The Pan-STARRS Imaging Sky Probe B.R. Granett, K.C. Chambers, E.A. Magnier, K. Fletcher and the Pan-STARRS Project Team University of Hawai i Institute for Astronomy Abstract Photometric performance is

More information

WHAT PHOTOMETRIC PRECISION CAN I ACHIEVE? DAVID BOYD

WHAT PHOTOMETRIC PRECISION CAN I ACHIEVE? DAVID BOYD WHAT PHOTOMETRIC PRECISION CAN I ACHIEVE? DAVID BOYD If you start using a CCD camera to carry out photometry on variable stars, this is a question that sooner or later you will ask yourself. Prompted by

More information

Investigating the Efficiency of the Beijing Faint Object Spectrograph and Camera (BFOSC) of the Xinglong 2.16-m Reflector

Investigating the Efficiency of the Beijing Faint Object Spectrograph and Camera (BFOSC) of the Xinglong 2.16-m Reflector Research in Astron. Astrophys. Vol. (xx) No., http://www.raa-journal.org http://www.iop.org/journals/raa Research in Astronomy and Astrophysics Investigating the Efficiency of the Beijing Faint Object

More information

Studies of diffuse UV radiation

Studies of diffuse UV radiation Bull. Astr. Soc. India (2007) 35, 295 300 Studies of diffuse UV radiation N. V. Sujatha and Jayant Murthy Indian Institute of Astrophysics, Bangalore 560 034, India Abstract. The upcoming TAUVEX mission

More information

PHYSICS Observing Guide

PHYSICS Observing Guide PHYSICS 123-253 Observing Guide v1.4 November 2013 TEAMWORK Working in pairs or groups is quite common in science labs, and this lab is no exception. Teamwork can be quite effective; it's often possible

More information

The WFIRST High La/tude Survey. Christopher Hirata, for the SDT November 18, 2014

The WFIRST High La/tude Survey. Christopher Hirata, for the SDT November 18, 2014 The WFIRST High La/tude Survey Christopher Hirata, for the SDT November 18, 2014 1 Outline Recap of HLS parameters Examples of currently open trades & issues 2 High La/tude Survey Overview 3 Summary ü

More information

7. Telescopes: Portals of Discovery Pearson Education Inc., publishing as Addison Wesley

7. Telescopes: Portals of Discovery Pearson Education Inc., publishing as Addison Wesley 7. Telescopes: Portals of Discovery Parts of the Human Eye pupil allows light to enter the eye lens focuses light to create an image retina detects the light and generates signals which are sent to the

More information

3 Effects of the earth s atmosphere

3 Effects of the earth s atmosphere Astr 535 Class Notes Fall 2017 29 3 Effects of the earth s atmosphere The earth s atmosphere has several different effects: it emits light, it absorbs light, it shifts the apparent direction of incoming

More information

EIC Simulations. Thomas Kitching, EIC Weak Lensing & Simulation Working Groups

EIC Simulations. Thomas Kitching, EIC Weak Lensing & Simulation Working Groups EIC Simulations Thomas Kitching A. Amara, S. Bridle, O. Boulade, B. Dobke, A. Fontana, A. Grazian, A. Heavens, A. Kiessling, M. Meneghetti, S. Paulin-Henriksson, J. Rhodes, A. Refregier, A. Taylor, R.

More information

SDSS Data Management and Photometric Quality Assessment

SDSS Data Management and Photometric Quality Assessment SDSS Data Management and Photometric Quality Assessment Željko Ivezić Princeton University / University of Washington (and SDSS Collaboration) Thinkshop Robotic Astronomy, Potsdam, July 12-15, 2004 1 Outline

More information

Chapter 6 Telescopes: Portals of Discovery

Chapter 6 Telescopes: Portals of Discovery Chapter 6 Telescopes: Portals of Discovery 6.1 Eyes and Cameras: Everyday Light Sensors Our goals for learning: How does your eye form an image? How do we record images? How does your eye form an image?

More information

Astronomy is remote sensing

Astronomy is remote sensing Astronomy is remote sensing We cannot repeat (or change) the Universe in a controlled environment. We cannot make planets, stars, or galaxies. We cannot make the vacuum of space, nor the shape of spacetime

More information

Development Status of the DOTIFS Project: a new multi-ifu optical spectrograph for the 3.6m Devasthal Optical Telescope

Development Status of the DOTIFS Project: a new multi-ifu optical spectrograph for the 3.6m Devasthal Optical Telescope ARIES Development Status of the DOTIFS Project: a new multi-ifu optical spectrograph for the 3.6m Devasthal Optical Telescope 2015 Survey Science Group Meeting January, 27, High 1 Speaker: Haeun Chung

More information

Fundamentals of Exoplanet Observing

Fundamentals of Exoplanet Observing Fundamentals of Exoplanet Observing Dennis M. Conti Chair, AAVSO Exoplanet Section Copyright Dennis M. Conti 2017 1 The Strange World of Exoplanets Most exoplanets we have discovered are close-in, large

More information

Fundamentals of Exoplanet Observing

Fundamentals of Exoplanet Observing Fundamentals of Exoplanet Observing Dennis M. Conti Chair, AAVSO Exoplanet Section Copyright Dennis M. Conti 2017 1 The Strange World of Exoplanets Most exoplanets we have discovered are close-in, large

More information

HICO Science Mission Overview

HICO Science Mission Overview HICO Science Mission Overview Michael R. Corson* and Curtiss O. Davis** * Naval Research Laboratory Washington, DC corson@nrl.navy.mil ** College of Oceanic and Atmospheric Sciences Oregon State University

More information

The Earth s atmosphere: seeing, background, absorption & scattering. Observational Astronomy 2017 Part 8 Prof. S.C. Trager

The Earth s atmosphere: seeing, background, absorption & scattering. Observational Astronomy 2017 Part 8 Prof. S.C. Trager The Earth s atmosphere: seeing, background, absorption & scattering Observational Astronomy 2017 Part 8 Prof. S.C. Trager Seeing All ground-based observatories suffer from a major problem: light from distant

More information

Astro 500 A500/L-15 1

Astro 500 A500/L-15 1 Astro 500 A500/L-15 1 Lecture Outline Spectroscopy from a 3D Perspective ü Basics of spectroscopy and spectrographs ü Fundamental challenges of sampling the data cube Approaches and example of available

More information

Astronomy of the Next Decade: From Photons to Petabytes. R. Chris Smith AURA Observatory in Chile CTIO/Gemini/SOAR/LSST

Astronomy of the Next Decade: From Photons to Petabytes. R. Chris Smith AURA Observatory in Chile CTIO/Gemini/SOAR/LSST Astronomy of the Next Decade: From Photons to Petabytes R. Chris Smith AURA Observatory in Chile CTIO/Gemini/SOAR/LSST Classical Astronomy still dominates new facilities Even new large facilities (VLT,

More information

Modern Observational/Instrumentation Techniques Astronomy 500

Modern Observational/Instrumentation Techniques Astronomy 500 Modern Observational/Instrumentation Techniques Astronomy 500 Andy Sheinis, Sterling 5520,2-0492 sheinis@astro.wisc.edu MW 2:30, 6515 Sterling Office Hours: Tu 11-12 Hardware 1 Telescopes What parameters

More information

An Introduction to. Adaptive Optics. Presented by. Julian C. Christou Gemini Observatory

An Introduction to. Adaptive Optics. Presented by. Julian C. Christou Gemini Observatory An Introduction to Adaptive Optics Presented by Julian C. Christou Gemini Observatory Gemini North in action Turbulence An AO Outline Atmospheric turbulence distorts plane wave from distant object. How

More information

Escaping the Zodi Light! Harvey Moseley! NASA/GSFC! The View from 5 AU! March 26, 2010!

Escaping the Zodi Light! Harvey Moseley! NASA/GSFC! The View from 5 AU! March 26, 2010! Escaping the Zodi Light! Harvey Moseley! NASA/GSFC! The View from 5 AU! March 26, 2010! The Galaxy and the Zodi Light are the dominant sources of diffuse light in the night sky! Both are much brighter

More information

Chapter 6 Telescopes: Portals of Discovery. Agenda. How does your eye form an image? Refraction. Example: Refraction at Sunset

Chapter 6 Telescopes: Portals of Discovery. Agenda. How does your eye form an image? Refraction. Example: Refraction at Sunset Chapter 6 Telescopes: Portals of Discovery Agenda Announce: Read S2 for Thursday Ch. 6 Telescopes 6.1 Eyes and Cameras: Everyday Light Sensors How does your eye form an image? Our goals for learning How

More information

BigBOSS Data Reduction Software

BigBOSS Data Reduction Software BigBOSS Data Reduction Software The University of Utah Department of Physics & Astronomy The Premise BigBOSS data reduction software is as important as BigBOSS data collection hardware to the scientific

More information

Transiting Exoplanet in the Near Infra-red for the XO-3 System

Transiting Exoplanet in the Near Infra-red for the XO-3 System Transiting Exoplanet in the Near Infra-red for the XO-3 System Nathaniel Rodriguez August 26, 2009 Abstract Our research this summer focused on determining if sufficient precision could be gained from

More information

On the Comparative Performance of an 8m NGST and a. Ground Based 8m Optical/IR Telescope. F.C. Gillett and M. Mountain

On the Comparative Performance of an 8m NGST and a. Ground Based 8m Optical/IR Telescope. F.C. Gillett and M. Mountain On the Comparative Performance of an 8m NGST and a Ground Based 8m Optical/IR Telescope F.C. Gillett and M. Mountain Gemini 8m Telescopes Project, 950 N. Cherry Ave., Tucson, AZ 85719 Abstract. The potential

More information

Photometric Systems. Neil Phillips 08 April Introduction 1. 2 Magnitudes and Colours 2

Photometric Systems. Neil Phillips 08 April Introduction 1. 2 Magnitudes and Colours 2 Photometric Systems Neil Phillips 8 April 28 Contents 1 Introduction 1 2 Magnitudes and Colours 2 3 Performing photometry 2 3.1 The System Response R λ....................................

More information

Final Announcements. Lecture25 Telescopes. The Bending of Light. Parts of the Human Eye. Reading: Chapter 7. Turn in the homework#6 NOW.

Final Announcements. Lecture25 Telescopes. The Bending of Light. Parts of the Human Eye. Reading: Chapter 7. Turn in the homework#6 NOW. Final Announcements Turn in the homework#6 NOW. Homework#5 and Quiz#6 will be returned today. Today is the last lecture. Lecture25 Telescopes Reading: Chapter 7 Final exam on Thursday Be sure to clear

More information

Lecture 8. October 25, 2017 Lab 5

Lecture 8. October 25, 2017 Lab 5 Lecture 8 October 25, 2017 Lab 5 News Lab 2 & 3 Handed back next week (I hope). Lab 4 Due today Lab 5 (Transiting Exoplanets) Handed out and observing will start Friday. Due November 8 (or later) Stellar

More information

Expected Performance From WIYN Tip-Tilt Imaging

Expected Performance From WIYN Tip-Tilt Imaging Expected Performance From WIYN Tip-Tilt Imaging C. F. Claver 3 September 1997 Overview Image motion studies done at WIYN show that a significant improvement to delivered image quality can be obtained from

More information

ATMOS Modèle numérique d'atmosphère

ATMOS Modèle numérique d'atmosphère Jihane Moultaka LATT Observatoire Midi Pyrénées Goal : Simulate the effect of Atmosphere on the ideal (simulated) data cube Use : Produce the most realistic data in order to Prepare the instrument Determine

More information

Imaging with Micado at the E-ELT. WORKSHOP: Imaging at the E-ELT

Imaging with Micado at the E-ELT. WORKSHOP: Imaging at the E-ELT Imaging with Micado at the E-ELT Renato Falomo INAF Observatory of Padova, Italy WORKSHOP: Imaging at the E-ELT 29 May 2009, Garching Resolved stellar population in Virgo (high SB) Detailed View of high

More information

Telescope Arrays & Related Topics Bruce Holenstein, Rich Mitchell, and Dylan Holenstein

Telescope Arrays & Related Topics Bruce Holenstein, Rich Mitchell, and Dylan Holenstein Telescope Arrays & Related Topics Bruce Holenstein, Rich Mitchell, and Dylan Holenstein Gravic Labs Workshop October 8, 2011 www.gravic.com 1 Topics The case for telescope arrays: SNR Gravic s array plans

More information

Meter-Class Telescope Array Science

Meter-Class Telescope Array Science Meter-Class Telescope Array Science Bruce Holenstein and Russ Genet Second Phoenix Astro-Solar Workshop October 13, 2012 Talk adapted from presentation given at Alt-Az Initiative Portland VI Workshop,

More information

arxiv: v1 [astro-ph.im] 31 Jul 2014

arxiv: v1 [astro-ph.im] 31 Jul 2014 A new method of CCD dark current correction via extracting the dark information from scientific images arxiv:1407.8279v1 [astro-ph.im] 31 Jul 2014 Bin Ma 1, Zhaohui Shang 2,1, Yi Hu 1, Qiang Liu 1, Lifan

More information

GEMINI 8-M Telescopes Project

GEMINI 8-M Telescopes Project GEMINI 8-M Telescopes Project RPT-I-G0057 Principles Behind the Gemini Instrumentation Program M. Mountain, F. Gillett, D. Robertson, D. Simons GEMINI PROJECT OFFICE 950 N. Cherry Ave. Tucson, Arizona

More information

How do they work? Chapter 5

How do they work? Chapter 5 Telescopes How do they work? Chapter 5 1. History 2. Lenses & Hardware 3. Reflecting Telescopes 4. Refracting Telescopes History Hans Lippershey Middleburg, Holland invented the refractor telescope in

More information

Ground Based Gravitational Microlensing Searches for Extra-Solar Terrestrial Planets Sun Hong Rhie & David Bennett (University of Notre Dame)

Ground Based Gravitational Microlensing Searches for Extra-Solar Terrestrial Planets Sun Hong Rhie & David Bennett (University of Notre Dame) Ground Based Gravitational Microlensing Searches for Extra-Solar Terrestrial Planets Sun Hong Rhie & David Bennett (University of Notre Dame) Abstract: A gravitational microlensing terrestrial planet search

More information

FLAT FIELDS FROM THE MOONLIT EARTH

FLAT FIELDS FROM THE MOONLIT EARTH Instrument Science Report WFPC2 2008-01 FLAT FIELDS FROM THE MOONLIT EARTH R. C. Bohlin, J. Mack, and J. Biretta 2008 February 4 ABSTRACT The Earth illuminated by light from the full Moon was observed

More information

Capturing and Processing Planetary Images. Petros Pissias Eumetsat Astronomy Club 11/06/2015

Capturing and Processing Planetary Images. Petros Pissias Eumetsat Astronomy Club 11/06/2015 Capturing and Processing Planetary Images Petros Pissias Eumetsat Astronomy Club 11/06/2015 Agenda Introduction Basic Equipment Preparation Acquisition Processing Quick demo Petros Pissias Eumetsat Astronomy

More information

Collecting Light. In a dark-adapted eye, the iris is fully open and the pupil has a diameter of about 7 mm. pupil

Collecting Light. In a dark-adapted eye, the iris is fully open and the pupil has a diameter of about 7 mm. pupil Telescopes Collecting Light The simplest means of observing the Universe is the eye. The human eye is sensitive to light with a wavelength of about 400 and 700 nanometers. In a dark-adapted eye, the iris

More information

1. Give short answers to the following questions. a. What limits the size of a corrected field of view in AO?

1. Give short answers to the following questions. a. What limits the size of a corrected field of view in AO? Astronomy 418/518 final practice exam 1. Give short answers to the following questions. a. What limits the size of a corrected field of view in AO? b. Describe the visibility vs. baseline for a two element,

More information

Upgraded Photometric System of The 85-cm Telescope at Xinglong Station

Upgraded Photometric System of The 85-cm Telescope at Xinglong Station Research in Astron. Astrophys. 217 Vol. X No. XX, http://www.raa-journal.org http://www.iop.org/journals/raa Research in Astronomy and Astrophysics Upgraded Photometric System of The 85-cm Telescope at

More information

Results from the LSST Site Monitoring. Spain

Results from the LSST Site Monitoring. Spain Results from the LSST Site Monitoring Sebastian Els Gaia DPAC ESAC Madrid Spain Jacques Sebag NOAO Tucson USA 8.4 M Primary Aperture 3.5 Degree Field Of View 3.2 Billion Pixel Camera ~40 Second Cadence

More information

Fundamental limits to the precision in astrometry and photometry using array detectors through the Cramér-Rao minimum variance bound

Fundamental limits to the precision in astrometry and photometry using array detectors through the Cramér-Rao minimum variance bound Fundamental limits to the precision in astrometry and photometry using array detectors through the Cramér-Rao minimum variance bound Jorge Silva, Marcos Orchard DIE Rene Mendez DAS U. de Chile Espinosa

More information

Notes: Reference: Merline, W. J. and S. B. Howell (1995). "A Realistic Model for Point-sources Imaged on Array Detectors: The Model and Initial

Notes: Reference: Merline, W. J. and S. B. Howell (1995). A Realistic Model for Point-sources Imaged on Array Detectors: The Model and Initial Notes: Notes: Notes: Reference: Merline, W. J. and S. B. Howell (1995). "A Realistic Model for Point-sources Imaged on Array Detectors: The Model and Initial Results." Experimental Astronomy 6: 163-210.

More information

Detectors for IR astronomy

Detectors for IR astronomy Detectors for IR astronomy Where does infrared begin? Wavelength sensi?vity of the human eye vs. wavelength Note: the eye has some (limited) sensi?vity to IR light at ~1000nm (=0.5x energy of photons the

More information

Light and Telescope 10/22/2018. PHYS 1403 Introduction to Astronomy. Reminder/Announcement. Chapter Outline. Chapter Outline (continued)

Light and Telescope 10/22/2018. PHYS 1403 Introduction to Astronomy. Reminder/Announcement. Chapter Outline. Chapter Outline (continued) PHYS 1403 Introduction to Astronomy Light and Telescope Chapter 6 Reminder/Announcement 1. Extension for Term Project 1: Now Due on Monday November 12 th 2. You will be required to bring your cross staff

More information

NEON Archive School 2006

NEON Archive School 2006 NEON Archive School 2006 Introduction to Spectroscopic Techniques (low dispersion) M. Dennefeld (IAP-Paris) Outline Basic optics of gratings and spectrographs (with emphasis on long-slit spectroscopy)

More information

GDR1 photometry. CU5/DPCI team

GDR1 photometry. CU5/DPCI team GDR1 photometry CU5/DPCI team What is, or isn't included GDR1 only provides G mean flux and error Derived mean magnitude, all entries Zero point used is in Vega system Zero point for AB system also available

More information

Exploring Data. Keck LRIS spectra. Handbook of CCD Astronomy by Steve Howell Chap. 4, parts of 6

Exploring Data. Keck LRIS spectra. Handbook of CCD Astronomy by Steve Howell Chap. 4, parts of 6 Exploring Data Keck LRIS spectra Handbook of CCD Astronomy by Steve Howell Chap. 4, parts of 6 FITS: Flexible Image Transport System Digital file format used to store astronomical images, data, and catalogs.

More information

Pan-Planets. A Search for Transiting Planets Around Cool stars. J. Koppenhoefer, Th. Henning and the Pan-PlanetS Team

Pan-Planets. A Search for Transiting Planets Around Cool stars. J. Koppenhoefer, Th. Henning and the Pan-PlanetS Team Pan-Planets A Search for Transiting Planets Around Cool stars J. Koppenhoefer, Th. Henning and the Pan-PlanetS Team Pan-STARRS 1: 1.8m prototype telescope operated on Haleakala/Hawaii consortium of few

More information

arxiv: v1 [astro-ph.im] 31 Jul 2014

arxiv: v1 [astro-ph.im] 31 Jul 2014 Problems with twilight/supersky flat-field for wide-field robotic telescopes and the solution arxiv:1407.8283v1 [astro-ph.im] 31 Jul 2014 Peng Wei 1, Zhaohui Shang 2,1, Bin Ma 1, Cheng Zhao 3, Yi Hu 1,

More information

The Galactic Exoplanet Survey Telescope (GEST)

The Galactic Exoplanet Survey Telescope (GEST) The Galactic Exoplanet Survey Telescope (GEST) D. Bennett (Notre Dame), J. Bally (Colorado), I. Bond (Auckland), E. Cheng (GSFC), K. Cook (LLNL), D. Deming, (GSFC) P. Garnavich (Notre Dame), K. Griest

More information

What do we do with the image?

What do we do with the image? Astro 150 Spring 2018: Lecture 7 page 1 Reading: Chapter 6, Sect. 6.4; Chapter 14 + assignment posted on Astro 150 website Homework: questions on special reading - answers due in lecture Thursday Exam

More information

Exploring Photometry System Trades with a Pixel-Level Data Simulator

Exploring Photometry System Trades with a Pixel-Level Data Simulator Exploring Photometry System Trades with a Pixel-Level Data Simulator Nicole Gagnier, Brandoch Calef The Boeing Company Ryan Coder Air Force Research Laboratory ABSTRACT In this paper, we present a pixel-level

More information

Errors in Airglow & Auroral Emission Measurements

Errors in Airglow & Auroral Emission Measurements Errors in Airglow & Auroral Emission Measurements D. Pallamraju Center for Space Physics Boston University CEDAR Tutorial: June 17, 2003 Acknowledgments Jeffrey Baumgardner Boston University Timothy Cook

More information

JINA Observations, Now and in the Near Future

JINA Observations, Now and in the Near Future JINA Observations, Now and in the Near Future Timothy C. Beers Department of Physics & Astronomy Michigan State University & JINA: Joint Institute for Nuclear Astrophysics Examples SDSS-I, II, and III

More information

Supernovae with Euclid

Supernovae with Euclid Supernovae with Euclid Isobel Hook University of Oxford and INAF (Obs. Roma) Thanks to R. Nichol, M. Della Valle, F. Mannucci, A. Goobar, P. Astier, B. Leibundgut, A. Ealet Euclid Conference 17 18 Nov

More information

Photometric Techniques II Data analysis, errors, completeness

Photometric Techniques II Data analysis, errors, completeness Photometric Techniques II Data analysis, errors, completeness Sergio Ortolani Dipartimento di Astronomia Universita di Padova, Italy. The fitting technique assumes the linearity of the intensity values

More information

Light and Telescope 3/4/2018. PHYS 1403 Introduction to Astronomy. Guideposts (cont d.) Guidepost. Outline (continued) Outline.

Light and Telescope 3/4/2018. PHYS 1403 Introduction to Astronomy. Guideposts (cont d.) Guidepost. Outline (continued) Outline. PHYS 1403 Introduction to Astronomy Light and Telescope Chapter 6 Guidepost In this chapter, you will consider the techniques astronomers use to study the Universe What is light? How do telescopes work?

More information

Determining the Specification of an Aperture Array for Cosmological Surveys

Determining the Specification of an Aperture Array for Cosmological Surveys Determining the Specification of an Aperture Array for Cosmological Surveys P. Alexander University of Cambridge, Department of Physics, Cavendish Laboratory, Cambridge, UK. A. J. aulkner Jodrell Bank

More information

Optical/NIR Spectroscopy A3130. John Wilson Univ of Virginia

Optical/NIR Spectroscopy A3130. John Wilson Univ of Virginia Optical/NIR Spectroscopy A3130 John Wilson Univ of Virginia Topics: Photometry is low resolution spectroscopy Uses of spectroscopy in astronomy Data cubes and dimensionality challenge Spectrograph design

More information

Chapter 5: Telescopes

Chapter 5: Telescopes Chapter 5: Telescopes You don t have to know different types of reflecting and refracting telescopes. Why build bigger and bigger telescopes? There are a few reasons. The first is: Light-gathering power:

More information

Astronomy 203 practice final examination

Astronomy 203 practice final examination Astronomy 203 practice final examination Fall 1999 If this were a real, in-class examination, you would be reminded here of the exam rules, which are as follows: You may consult only one page of formulas

More information

Predicted Countrates for the UV WFC3 Calibration Subsystem using Deuterium Lamps

Predicted Countrates for the UV WFC3 Calibration Subsystem using Deuterium Lamps Predicted Countrates for the UV WFC3 Calibration Subsystem using Deuterium Lamps S.Baggett, J. Sullivan, and M. Quijada May 17,24 ABSTRACT Predicted WFC3 calibration subsystem countrates have been computed

More information