(bandpass)= # Bandpass calibration The ASKAP Observatory uses the source [PKS B1934-638](https://www.narrabri.atnf.csiro.au/calibrators/calibrator_database_viewcal?source=1934-638) as its primary flux reference and bandpass calibrator. A bandpass observation consists of pointing each formed beam on the reference sources for ~2min of integration. A single bandpass SBID contains the data for _all_ beams as each beam is pointed on-source. We note that it is ultimately up to the user to ensure that the bandpass obtained matches the science field in both time and beam-forming weights. We also note that raw bandpass and target data is not typically provided by the observatory to science users. ## Using Flint for calibration This is a prefect flow that will run the following stages: - Split the on-source portions of the bandpass data - Apply appropriate corrections to visibilities to for use with `flint` tooling - Flag RFI from the bandpass data - Derive bandpass solutions from PKS B1934-638 using the [Reynolds 1994 model](https://www.narrabri.atnf.csiro.au/observing/users_guide/html_old_20090512/Flux_Scale_AT_Compact_Array.html) - Apply the solutions to the bandpass data, flag RFI, and rederive solutions (repeated `FLAG_CALIBRATE_ROUNDS` times) - Apply a final set of flagging and smoothing the the bandpass solutions themselves The above procedure attempts to identify faint sources of RFI that only become apparent after an initial calibration has been applied. When recalibrating with updatede flags the raw data are used, i.e. we are not calibrating off already calibratede data. ## Outputs The prefect workflow described above will output: - A measurement set for each beam centered on PKS B1934-638 - The set of bandpass solutions appropriately named - Validation plots of the derived solutions. At present the bandpass solver principally relied upon in `flint` is [`calibrate`](https://ui.adsabs.harvard.edu/abs/2016MNRAS.458.1057O/abstract), which implements the [`MitchCal` algorithm](https://ui.adsabs.harvard.edu/abs/2008ISTSP...2..707M/abstract). The output set of solutions are a series of Jones matrices packed into a binary solutions file. When selecting a set of bandpass solutions to apply `flint` will examine the meta-data encoded in each of the PKS B1934-638 per beam measurement sets in order to ensure consistent frequency coverage, channelisation and beam. This information is not encoded in the output binary solutions file, so the measurement sets are necessary and should be preserved. In principal, appropriate solutions could be selected on name alone (since `flint` controls the output naiming scheme), but as a general principal it is believed that important meta-data should not be stored principally in a file path name. In subsequent workflows that operate against a field and a bandpass is required, the path the folder that contains the collection of per-beam observations of PKS B1934-638 and the corresponding set of solutions should be supplied. ## Accessing via the CLI The primary entry point for bandpass calibration in `flint` is the `flint_flow_bandpass_calibrate`: ```{argparse} :ref: flint.prefect.flows.bandpass_pipeline.get_parser :prog: flint_flow_bandpass_calibrate ``` ## The `BandpassOptions` class Embedded below is the `flint` `Options` class used to drive the `flint_flow_bandpass_calibrate` workflow. Input values are validated by `pydantic` to ensure they are appropriately typed. ```{literalinclude} ../../flint/options.py :pyobject: BandpassOptions ```