Skip to content

Given a FITS spectrum file, the script will calculate the star’s doppler shift, and fit a Voigt profile and continuum to each emission line, which is used for calculating the flux.

License

Notifications You must be signed in to change notification settings

bellalongo/spec2flux

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

spec2flux

About spec2flux

Spec2flux (Spectrum to Flux) aims to accurately calculate the emission line flux of lines in the Far Ultraviolet (FUV) range. This range contains information that can help clue in on exoplanetary atmospheres with the measurements providing insight into FUV radiation from host stars. Integrating UV spectra with X-ray data allows us to estimate the stellar corona, adding to the toolkit of exoplanet atmosphere data.

How it works

The script accomplishes the task of calculating flux by:

  1. Grouping emission lines using a preset tolerance, which can be adjusted if using a different DEM file.
  2. Calculating the Doppler shift by fitting a composite Voigt profile to the strongest emission lines, and comparing Voigt peaks to rest wavelength to calculate.
  3. Iterating through each line, determining if noise, and then calculating the flux either using the Voigt profile or the original data.
  4. Presents a final plot of all of the final emission lines, and exports the calculations as a FITS and ECSV file.

Prerequisites

  • astropy
  • matplotlib
  • scipy
  • seaborn
  • numpy
  • pandas


Pip Installation

  1. Pip install the repository in your desired directory.

       pip install spec2flux
  2. Create a main.py, which will used to put the package attributes.

  3. Ensure your files for the DEM lines, airglow, and the spectrum which will used to calculate the flux are in your directory.

       project-directory/
       ├── main.py
       ├── DEM_goodlinelist.csv
       ├── airglow.csv
       ├── spectrum.fits
  4. Make your main.py resemble the following:

       import spec2flux
       
       
       def main():
           # Spectrum details (adjust me with each star)
           spectrum_dir = 'spectrum-spec.fits'
           rest_dir = 'DEM_goodlinelist.csv'
           airglow_dir = 'airglow.csv'
           observation = 'sci' # SCI only
           telescope = 'hst' # HST only
           instrument = 'stis' # STIS or COS only
           grating = 'e140m' # L or M grating only
           star_name = 'NEWEX'
           min_wavelength = 1160
       
           # Spectrum adjustments
           apply_smoothing = False # True if want to apply gaussian smoothing
           line_fit_model = 'Voigt' # 'Voigt' or 'Gaussian' fit
       
           # User adjustable parameters
           fresh_start = True # True if first time running, or have already ran for a star and want to see final plot
       
           # Check inputs
           spec2flux.InputCheck(spectrum_dir, rest_dir, airglow_dir, observation, telescope, instrument, grating, star_name, 
                      min_wavelength, apply_smoothing, line_fit_model, fresh_start)
       
           # Load spectrum data and emission lines
           spectrum = spec2flux.SpectrumData(spectrum_dir, rest_dir, airglow_dir, observation, telescope, instrument, grating, star_name, 
                                   min_wavelength, apply_smoothing)
           emission_lines = spec2flux.EmissionLines(spectrum)
       
           # Calculate flux
           flux_calc = spec2flux.FluxCalculator(spectrum, emission_lines, fresh_start, line_fit_model)
       
           # Show final plot
           spectrum.final_spectrum_plot(emission_lines, flux_calc)
       
       
       if __name__ == '__main__':
           main()
  5. Run main.py.

       python main.py
  6. Select "best" doppler shift candidates.
    A series of plots will appear, click 'y' if the plot is an eligible candidate for doppler shift, 'n' if it is not.

    Doppler calculation example

    Figure 1: This is a good example because the Doppler shift is consistent between both emission lines, with minimal noise.

  7. After iterating through all the doppler shift candidates, plots will appear for the noise selection portion.
    To select if the current plot is noise or not, click 'y' if the plot is noise and 'n' if the plot is not noise.

    Not noise example

    Figure 2: This plot is not noisy because the emission lines are well-defined at the specified rest wavelengths.

    Noise example

    Figure 3: This plot is noisy because the emission lines at the specified rest wavelength are not well-defined.

  8. After all emission lines are iterated through, a final plot will appear

    Final plot example

    Figure 4: Plot of the entire spectrum with the continuum, profile fits, and wavelengths marked.


    Zoomed plot example

    Figure 5: Final plot zoomed in.


  9. After running the script, your directory will now look like the following:

    project-directory/
    ├── main.py
    ├── DEM_goodlinelist.csv
    ├── airglow.csv
    ├── spectrum.fits
    ├── doppler/
    │   ├── newex_doppler.txt
    ├── emission_lines/
    │   ├── newex_lines.json
    ├── flux/
    │   ├── newex.csv
        ├── newex.ecsv
        ├── newex.fits
    ├── plots/
    │   ├── newex_final_plot.png

Using the data:

Header contains:

  • DATE: date flux was calculated
  • FILENAME: name of the fits file used to for flux calc
  • TELESCP: telescope used to measure spectrum
  • INSTRMNT: active instrument to measure spectrum
  • GRATING: grating used to measure spectrum
  • TARGNAME: name of star used in measurement
  • DOPPLER: doppler shift used to measure flux
  • WIDTH: average peak width of the emissoin lines
  • RANGE: flux range used to isolate emission line
  • WIDTHPXL: average emission line peak width in pixels
  • UPPRLIMIT: upper limit used for noise

ECSV + CSV Data: File columns are Ion, Rest Wavelength, Flux, Error, Blended Line, each row representing a grouped emission line.
FITS Data: FITS Table contains the same data as the ECSV file.
Note: Noise is marked as having the negative of the upper limit (3*error) as the flux and an error of 0.

About

Given a FITS spectrum file, the script will calculate the star’s doppler shift, and fit a Voigt profile and continuum to each emission line, which is used for calculating the flux.

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages