Skip to content

Commit

Permalink
fix m5 diff basis function
Browse files Browse the repository at this point in the history
  • Loading branch information
yoachim committed Sep 7, 2023
1 parent 34fecd7 commit b79c963
Show file tree
Hide file tree
Showing 3 changed files with 46 additions and 10 deletions.
38 changes: 33 additions & 5 deletions rubin_sim/scheduler/basis_functions/basis_functions.py
Original file line number Diff line number Diff line change
Expand Up @@ -49,8 +49,9 @@

from rubin_sim.scheduler import features, utils
from rubin_sim.scheduler.utils import IntRounded
from rubin_sim.site_models import SeeingModel
from rubin_sim.skybrightness_pre import dark_sky
from rubin_sim.utils import _hpid2_ra_dec
from rubin_sim.utils import _hpid2_ra_dec, m5_flat_sed


class BaseBasisFunction:
Expand Down Expand Up @@ -836,15 +837,42 @@ class M5DiffBasisFunction(BaseBasisFunction):
"""Basis function based on the 5-sigma depth.
Look up the best depth a healpixel achieves, and compute
the limiting depth difference given current conditions
Parameters
----------
fiducial_FWHMEff : `float`
The zenith seeing to assume for "good" conditions
"""

def __init__(self, filtername="r", nside=None):
def __init__(self, filtername="r", fiducial_FWHMEff=0.7, nside=None):
super(M5DiffBasisFunction, self).__init__(nside=nside, filtername=filtername)
# Need to look up the deepest m5 values for all the healpixels

self.dark_map = dark_sky(nside)[filtername]
# The dark sky surface brightness values
self.dark_sky = dark_sky(nside)[filtername]
self.dark_map = None
self.fiducial_FWHMEff = fiducial_FWHMEff
self.filtername = filtername

def _calc_value(self, conditions, indx=None):
if self.dark_map is None:
# compute the maximum altitude each HEALpix reaches
sindec = np.sin(conditions.dec)
sinlat = np.sin(conditions.site.latitude_rad)
sinalt = sindec * sinlat + np.cos(conditions.dec) * np.cos(conditions.site.latitude_rad)
sinalt = np.clip(sinalt, -1, 1)
alt_max = np.arcsin(sinalt)
airmass_min = 1.0 / np.cos(np.pi / 2.0 - alt_max)
sm = SeeingModel(filter_list=[self.filtername])
fwhm_eff = sm(self.fiducial_FWHMEff, airmass_min)["fwhmEff"][0]
self.dark_map = m5_flat_sed(
self.filtername,
musky=self.dark_sky,
fwhm_eff=fwhm_eff,
exp_time=30.0,
airmass=airmass_min,
nexp=1,
tau_cloud=0,
)

# No way to get the sign on this right the first time.
result = conditions.m5_depth[self.filtername] - self.dark_map
return result
Expand Down
2 changes: 1 addition & 1 deletion rubin_sim/scheduler/features/features.py
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@ def add_observations_array(self, observations_array, observations_hpid):
if self.filtername is None:
self.feature += np.size(observations_array)
else:
in_filt = np.where(observations_array["filter"] == self.filter)[0]
in_filt = np.where(observations_array["filter"] == self.filtername)[0]
self.feature += np.size(in_filt)

def add_observation(self, observation, indx=None):
Expand Down
16 changes: 12 additions & 4 deletions rubin_sim/scheduler/model_observatory/model_observatory.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
__all__ = ("ModelObservatory", "NoClouds", "NominalSeeing")


import healpy as hp
import numpy as np
from astropy.coordinates import EarthLocation
Expand Down Expand Up @@ -215,11 +216,13 @@ def __init__(
sun_moon_info = self.almanac.get_sun_moon_positions(self.mjd)
season_offset = create_season_offset(self.nside, sun_moon_info["sun_RA"])
self.sun_ra_start = sun_moon_info["sun_RA"] + 0
self.mjd_start = mjd_start
self.season_offset = season_offset
# Conditions object to update and return on request
self.conditions = Conditions(
nside=self.nside,
mjd_start=mjd_start,
season_offset=season_offset,
mjd_start=self.mjd_start,
season_offset=self.season_offset,
sun_ra_start=self.sun_ra_start,
)

Expand All @@ -246,8 +249,13 @@ def return_conditions(self):
-------
rubin_sim.scheduler.features.conditions object
"""

self.conditions.mjd = self.mjd
self.conditions = Conditions(
nside=self.nside,
mjd_start=self.mjd_start,
season_offset=self.season_offset,
sun_ra_start=self.sun_ra_start,
mjd=self.mjd,
)

self.conditions.night = int(self.night)
# Current time as astropy time
Expand Down

0 comments on commit b79c963

Please sign in to comment.