Differences
This shows you the differences between two versions of the page.
Both sides previous revision Previous revision Next revision | Previous revision | ||
wiki:observational_astronomy:data_reduction [2023/11/07 13:15] – Roy Prouty | wiki:observational_astronomy:data_reduction [2023/11/09 13:50] (current) – removed Roy Prouty | ||
---|---|---|---|
Line 1: | Line 1: | ||
- | ====== Data Reduction ====== | ||
- | The term // | ||
- | |||
- | === Our Pipeline === | ||
- | This page outlines the best practices for our system. It's currently a work in progress. [[wiki: | ||
- | |||
- | === Unwanted Signals === | ||
- | |||
- | * [[wiki: | ||
- | * [[wiki: | ||
- | * [[wiki: | ||
- | |||
- | === Theory & Background === | ||
- | |||
- | We can represent each $i$ and $j$-th pixels in a light frame as the sum of the contributions from the following signals: | ||
- | |||
- | $$L_{ij}(\lambda) = \Bigl[\epsilon_{ij}(\lambda)I_{ij}(\lambda) + T_{ij}(\lambda)\Bigr]t + B_{ij}(\lambda)$$ | ||
- | |||
- | == Raw Light == | ||
- | |||
- | $L_{ij}(\lambda)$ is measured in counts and is the signal shown in SharpCap and saved in the data portion of the FITS file. This is the raw data in any light frame. | ||
- | While not super important for this data reduction example, it's otherwise important to note that these counts are rather limited in their numerical precision and therefore in their ability to precisely represent continuous physical values, i.e., $L_{ij}(\lambda)\in \mathbb{Z}< | ||
- | |||
- | == Uniformity == | ||
- | $\epsilon_{ij}(\lambda)$ is the pixel-by-pixel uniformity. This is measured as a fraction with each pixel carrying a (to computer precision) continuous value in the range $\epsilon_{ij}(\lambda)\in \mathbb{R}_{[0, | ||
- | |||
- | == Source Signal == | ||
- | $I_{ij}(\lambda)$ is the source signal. It is measured in counts, and precision in the counts recorded come at the expense of signal contributions from the Dark and Bias signals (see below). The aim of any reduction pipeline is to take the signals in a raw light frame and reduce the contributions of other signals such that only this source signal is present. The result is called a science frame or science image and hypothetically is the closest thing to $I_{ij}(\lambda)$ we can muster with our system and reduction pipeline.\\ | ||
- | |||
- | |||
- | == Thermal Signal == | ||
- | $T_{ij}(\lambda)$ is the thermal signal, it is a component of the dark signal along with the Bias (below). Thermal signal is a measure of the electrons that gained enough thermal energy to liberate themselves from the valence band of the CMOS semiconductor substrate and be read-off as signal by the Analog-Digital-Converter (ADU). As such, the thermal signal is time-dependent. I.e., the longer you give electrons in the valence band time to explore microstates made available by some heat bath, the more likely some will find the microstates that allow them to get to the conduction band. Since the thermal signal is not generated by photons and the quantum efficiency of the pixels play no part, we can safely drop any implied $\lambda$ dependence. $T_{ij}(\lambda) \rightarrow T_{ij}$ \\ | ||
- | |||
- | |||
- | |||
- | == Integration Time == | ||
- | $t$ is the exposure or integration time. " | ||
- | |||
- | |||
- | == Bias Signal == | ||
- | $B_{ij}(\lambda)$ is the bias signal, it is a component of the dark signal along with the thermal signal (above). Bias signal is a measure of the electrons that were liberated by the internal voltages that are constantly and non-uniformly applied across all pixels. These internal voltages are responsible for ' | ||
- | |||
- | |||
- | |||
- | === Dark Signal === | ||
- | It's likely clear from the above that the Dark Signal is built from a time-integrated thermal signal as well as constant (but non-uniform) bias signal. | ||
- | |||
- | $$D_{ij}(\lambda) = B_{ij} + T_{ij}t$$ | ||
- | |||
- | |||
- | ==== Isolating Source Signal ==== | ||
- | |||
- | $$L_{ij}(\lambda) = \Bigl[\epsilon_{ij}(\lambda)I_{ij}(\lambda) + T_{ij}(\lambda)\Bigr]t + B_{ij}(\lambda)$$ | ||
- | |||
- | Removing spectral dependence | ||
- | |||
- | $$L_{ij}(\lambda) = \Bigl[\epsilon_{ij}(\lambda)I_{ij}(\lambda) + T_{ij}\Bigr]t + B_{ij}$$ | ||
- | |||
- | Distribute integration time | ||
- | $$L_{ij}(\lambda) = \epsilon_{ij}(\lambda)I_{ij}(\lambda)t + T_{ij}t + B_{ij}$$ | ||
- | |||
- | Remove Bias Signal | ||
- | $$L_{ij}(\lambda) - B_{ij} | ||
- | |||
- | Remove Thermal Signal | ||
- | $$L_{ij}(\lambda) - B_{ij} - T_{ij}t = \epsilon_{ij}(\lambda)I_{ij}(\lambda)t $$ | ||
- | |||
- | Divide through by uniformity | ||
- | $$\frac{L_{ij}(\lambda) - B_{ij} - T_{ij}t}{\epsilon_{ij}(\lambda)} = I_{ij}(\lambda)t $$ | ||
- | |||
- | Finally arrive at science frame (Note that the integration time was left with the Source Signal) | ||
- | $$I_{ij}(\lambda)t = \frac{L_{ij}(\lambda) - B_{ij} - T_{ij}t}{\epsilon_{ij}(\lambda)}$$ | ||
- | |||
- | Some may choose to view the Dark Signal as one object -- the time-integrated Thermal Signal and Constant Bias Signal | ||
- | $$I_{ij}(\lambda)t = \frac{L_{ij}(\lambda) - (B_{ij} + T_{ij}t)}{\epsilon_{ij}(\lambda)}$$ | ||
- | |||
- | $$I_{ij}(\lambda)t = \frac{L_{ij}(\lambda) - D_{ij}(\lambda)}{\epsilon_{ij}(\lambda)}$$ | ||
- | |||
- | |||
- | This is not the full story ... We need to be careful in how we collect these Light, Flat, Dark, and Bias frames. Further, since they are fundamentally samplings of random processes, we need to ensure we're sampling these random processes well and also find some measure of central tendency to use -- or we risk introducing more noise!\\ | ||
- | |||
- | Refer to the Redux Pipeline and Unwanted Signals pages above for more information on each of these. |