Joshuaalbert / DSA2000-Cal

DSA-2000 Calibration and Forward Modelling
https://www.deepsynoptic.org/overview
MIT License
1 stars 0 forks source link

Subtract :: (Visibilties, SourceModel, GainModel) -> Visibilties #37

Closed Joshuaalbert closed 4 months ago

Joshuaalbert commented 6 months ago

We subtract the model visibilities for the bright sources from the data given the calibration solutions. This happens on a resolution different from cadenced calibration.

How:

def single_validity_interval_loop():
  data = accumulate(solution_interval)
  solutions = calibrate(data)
  for i in validity_interval:
    data = accumulate(solution_interval)
    data = subtract(solutions, data)
    store_data(data)
    move_forward()