Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
66 changes: 57 additions & 9 deletions MaunaKea/MaunaKea.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,8 @@ properties :
temperature : 2.5 # deg C
humidity : 0.1 # [0..1]
pressure : 0.620 # [bar]
pwv : 1.0 # [mm]
pwv : 2.5 # [mm]
x_co2 : 450 # [ppm]
airmass : "!OBS.airmass"
pupil_angle : "!OBS.pupil_angle"
pixel_scale : "!INST.pixel_scale"
Expand All @@ -21,18 +22,65 @@ properties :
value: 22.0
unit: mag
seeing : 0.7 # [arcsec]
spectrum :
filename: "TER_maunakea_default.dat"

effects :
- name : maunakea_atmospheric_transmission
description : Atmospheric transmission for Mauna Kea
- name : atmo_transmission # Also applies thermal emission component using !ATMO.temperature and (1-transmission)
description : Atmospheric transmission for Mauna Kea from TAPAS
class : TERCurve
include : True
kwargs:
filename: "TER_maunakea_default.dat"
filename: "TER_maunakea_tapas.dat"

- name : continuum_emission
description : Continuum emission (only from moon, starlight, zodiacal light) from SkyCalc
class : SkyBackgroundTERCurve
include : True
kwargs:
disable_transmission: True
disable_airglow: True
pwv: "!ATMO.pwv"
wmin: "!SIM.spectral.wave_min"
wmax: "!SIM.spectral.wave_max"
wdelta: "!SIM.spectral.spectral_bin_width"
wres: "!SIM.spectral.spectral_resolution"
wunit: "!SIM.spectral.wave_unit"

- name : airglow_and_interline_continuum
description: Airglow emission lines and residual continuum from PALACE model
class : PalaceAirglowEmission
include : True
kwargs:
save_model_output: False
only_line: False
only_continuum: False
pwv: "!ATMO.pwv"
lammin: "!SIM.spectral.wave_min"
lammax: "!SIM.spectral.wave_max"
lamunit: "!SIM.spectral.wave_unit"

- name : seeing_psf
description : Seeing limited PSF
class : SeeingPSF
description : Seeing limited but AO enhanceable Moffat PSF (wavelength dependent)
class : AOEnhanceablePSF
include : True
kwargs:
enable_ao: False
ao_table: "ao_table.dat"
is_absolute: True
fwhm:
seeing: "!ATMO.seeing"
seeing_unit: "arcsec"
pivot_wave: 500
pivot_wave_unit: "nm"
alpha: 4.765

## Currently, below ADC effect applies to all FoVs (i.e. including NIR arms). The effect can be made arm-specific by
## wrapping it in a SelectorWheel effect (see ZShooter_v2/ZShooter_SPEC.yaml for examples).
- name : adc_residuals
description : Residuals after ADC correction, from LRIS ADC data and from positional error of 0.1 deg in AD correction
class : ADCShift
include : True
kwargs:
fwhm: "!ATMO.seeing"
filename: "adc_residuals.dat"
method: "roll"
zenith_angle_error: 0.1
wave_ref_um: 0.5
151 changes: 0 additions & 151 deletions MaunaKea/TER_maunakea_default.dat

This file was deleted.

Binary file added MaunaKea/TER_maunakea_tapas.dat.zip
Binary file not shown.
18 changes: 18 additions & 0 deletions MaunaKea/adc_residuals.dat
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
# name: adc_residuals.dat
# type: ascii
# decription: ADC residuals as a function of wavelength (rows) and zenith angle (columns), from LRIS ADC
# wavelength_unit: um
wavelength 0.0 55.0 60.0
0.31 0 -0.068 -0.083
0.32 0 -0.057 -0.070
0.36 0 0.017 0.020
0.40 0 0.016 0.018
0.45 0 0.052 0.062
0.50 0 0.052 0.062
0.56 0 0.052 0.062
0.63 0 0.059 0.071
0.70 0 0.041 0.049
0.79 0 0.031 0.036
0.88 0 -0.007 -0.009
0.98 0 -0.063 -0.077
1.10 0 -0.120 -0.146
Loading