Presentation is loading. Please wait.

Presentation is loading. Please wait.

What is Extinction? When light from a star passes through the Earth’s atmosphere, part of it is absorbed and part is dispersed. Consequently the light.

Similar presentations


Presentation on theme: "What is Extinction? When light from a star passes through the Earth’s atmosphere, part of it is absorbed and part is dispersed. Consequently the light."— Presentation transcript:

1 What is Extinction? When light from a star passes through the Earth’s atmosphere, part of it is absorbed and part is dispersed. Consequently the light received by the telescope is weaker than the light the telescope would have received in the absence of the atmosphere. This process is called extinction. Because the atmosphere can change from night to night, we only estimate extinction using observations from a single night. Because different filters observe different wavelength windows, we only estimate extinction using observations made through the same filter. Airmass The extinction of an observation depends chiefly on the amount of atmosphere through which the light passes. As seen below, the extinction of a higher-altitude observation (1) will be less than that of a lower-altitude observation (2). Airmass is the amount of atmospheric mass through which an observed signal passes. For small zenith angles, airmass = secz is a good approximation, where z is the zenith angle of the telescope (z = 0° when the telescope is pointed at the zenith, and z = 90° at the horizon). At present, the airmass of each source point is calculated by Source Extractor during the photometry. Quantifying Extinction The goal is to estimate a point source’s zero-airmass magnitude, m 0, using other information about the point source, such as its observed magnitude, airmass, and color. We do this by computing the coefficients a 0, a 1, a 2, … in an equation: m = m 0 + a 0 + a 1 (parameter set 1) + a 2 (parameter set 2) + … extinction.py contains three methods for computing extinction: getExtCatalog1stOrder, getExtCatalog2ndOrder, and getExtNonCatalog. 1 st Order Catalog Extinction User input: night, filter, catalog (list of stars with known m 0 s) Extinction equation: m = m 0 + a + k(airmass) Output: coefficients a and k Method: 1) Query the database for a list of stars in the given catalog for which we have observations on the given night in the given filter. 2) Make two lists x and z with one element for each observation, where z i = m i – m 0i and x i = airmass i for the ith observation. 3) Compute a and k so as to minimize the RSS = Σ(z i – a – kx i ) 2. 4) Graph the data and the curve y = a + kx. 5) Compute the correlation coefficient, r 2. 0 ≤ r 2 ≤ 1, where 0 indicates the worst possible fit and 1 a perfect fit. 6) Return a, k, and r 2 in a dictionary. 2 nd Order Catalog Extinction User input: night, filter, catalog (list of stars with known m 0 s) Extinction equation: m = m 0 + a + k(airmass) + k’(airmass)(color) color is computed with respect to the reference band, i.e. color = V - I Output: coefficients a and k Method: 1)Query the database for a list of stars in the given catalog for which we have observations on the given night through the given filter. 2)Make three lists x, y, and z with one element for each observation, where x i = airmass i, y = color i, and z i = m i – m 0i and for the ith observation. 3)Compute a, k, and kprime so as to minimize the RSS = Σ(z i – a – kx i – k’x i y i ) 2. 4)Make one graph for each color index and stack them in ascending order, portraying the three-dimensional curve z = a + kx + k’xy. 5)Compute the correlation coefficient, r 2. 0 ≤ r2 ≤ 1, where 0 indicates the worst possible correlation and 1 a perfect correlation. 6)Return a, k, k’ and r 2 in a dictionary. Graph to the right  Non-Catalog Extinction User input: night, filter, list of stars with unknown m 0 s This method is different from the other two in that we find not only the coefficient k, but also m 0 for each star. Extinction equation: m = m 0 + a + k(airmass) Output: m 0 for each star and k, which applies to all stars Method: 1) Query the database for a list of observations of the stars in the input list made on the given night through the given filter. 2) Make two lists x and z with one element for each observation, where x i = airmass i, z i = m i for the ith observation. 3)Compute all m 0 and k so as to minimize the RSS = Σ(z i – m 0 – a – kx i ) 2. 4)Make a graph of the data and the extinction curve of each star. 5)Compute the correlation coefficient, r 2. 6)Return a, all m 0 s, k, and r 2 in a dictionary. Extinction P. Thompson, B. Gilfus, J. Neeley, A. James, E. Moyer P. Enrique da Silva, A. Kanaan, S. Kanbur Acknowledgement The authors thank NSF OISE award 0755646 and the 2009 Chretien award of the American Astronomical Society.


Download ppt "What is Extinction? When light from a star passes through the Earth’s atmosphere, part of it is absorbed and part is dispersed. Consequently the light."

Similar presentations


Ads by Google