First Look at Self Calibration: Difference between revisions

From CASA Guides
Jump to navigationJump to search
No edit summary
Tag: New redirect
 
(10 intermediate revisions by 3 users not shown)
Line 1: Line 1:
''This guide is written for CASA 5.7 and uses Python 2. The same functionality in implemented in Python 3 using CASA 6.1 at [https://casaguides.nrao.edu/index.php?title=First_Look_at_Self_Calibration_CASA_6 First Look at Self Calibration CASA 6.]''
#REDIRECT [[First_Look_at_Self_Calibration_CASA_6.5.4]]
 
This script steps you through continuum imaging and self calibration
of the science data for our science target, TW Hydra.
 
You should have downloaded the data package as part of the previous imaging tutorial.  If you haven't done that yet, check the [http://casaguides.nrao.edu/index.php?title=First_Look_at_Imaging First Look At Imaging] Guide for instructions.
 
In that first tutorial you made a first continuum image in the previous imaging lesson. We start here by repeating that step and then we iteratively self-calibrate the
data, focusing on short-timescale phase corrections.
 
First, copy the calibrated and flagged data from the working directory. Remember that this is our best version of the data.
 
<source lang="python">
# In CASA
os.system("rm -rf sis14_twhya_calibrated_flagged.ms")
os.system("cp -r ../working/sis14_twhya_calibrated_flagged.ms .")
</source>
 
Run a quick listobs to get oriented:
 
<source lang="python">
# In CASA
listobs("sis14_twhya_calibrated_flagged.ms")
</source>
 
Now, use tclean to make a continuum image of TW Hydra (field 5). This call is interactive, but the automated approach that we used
in the last lesson would also work. See the last lesson for details. Remember that the spectral window that we will image here as continuum also contains a N2H+ emission line.
In this case, the N2H+ emission is faint enough that neglecting to flag the line channels before imaging makes no difference to the final continuum image.
For this and the other continuum first look tutorials, we have thus ignored the line to focus on the basic steps of imaging and self-calibration.
In general, however, you should flag channels containing emission lines in your own data prior to imaging the continuum.
To see how to flag line emission prior to imaging the continuum in a spectral window, please see the more advanced tutorial at [[IRAS16293_Band9_-_Imaging]].
 
Clean until the residuals near TW Hydra are comparable
to those in the rest of the image.  For example, you might place your clean mask over the central feature, only, and clean with for two main cycles. 
That is, use the green arrow twice, and then click the red X to finish tclean. '''Please note ''' that in general, it is good procedure to clean conservatively prior to the initial iterations of self-cal, which is to say: shallowly, erring on the side of missing flux instead of including flux that might be spurious. Tw Hydra, being dominated by bright, compact emission, is relatively forgiving in that respect.  For detailed discussion of these points see [https://casaguides.nrao.edu/index.php?title=TWHydraBand7_Imaging_4.3#Create_Initial_Clean_Image the TW Hydra Casa Guide] and the self-calibration section of [https://casaguides.nrao.edu/index.php?title=Self-Calibration_Template the guide to the NA Imaging Template Script].
 
<figure id="Imaging-tutorial-selfcal-1.png">
[[File:Imaging-tutorial-selfcal-1.png|thumb|<caption>Residuals from the first tclean after 2 main cycles of cleaning.</caption>]]
</figure>
 
<source lang="python">
# In CASA
os.system('rm -rf first_image.*')
tclean(vis='sis14_twhya_calibrated_flagged.ms',
      imagename='first_image',
      field='5',
      spw='',
      specmode='mfs',
      deconvolver='hogbom',
      nterms=1,
      gridder='standard',
      imsize=[250,250],
      cell=['0.1arcsec'],
      weighting='natural',
      threshold='0mJy',
      niter=5000,
      interactive=True,
      savemodel='modelcolumn')
</source>
 
In addition to creating an image, TCLEAN saves the cleaned "model" of the science target with
the measurement set if the parameter savemodel="modelcolumn". This model is required for later self-calibration steps.  Note, in the
previous lessons we only had models for the calibrators, not the science target itself. Of
course this model for our science target is not perfect, only as good as the first clean, but it's a
good starting point.
 
In CASA 5.4, you may see a warning requesting you check in the CASA log that the model was created. Look for the line in the log that says 'Saving model column':
<pre style="background-color: #fffacd;">
INFO    task_tclean::SynthesisImagerVi2::predictModel  Saving model column
INFO    task_tclean::SIImageStore::printImageStats      [first_image] Peak residual (max,min) within mask : (0.0293485,-0.00934437) over full image : (0.0622498,-0.0327437)
INFO    task_tclean::SIImageStore::printImageStats      [first_image] Total Model Flux : 1.12702
INFO    tclean::::      Reached global stopping criterion : force stop
INFO    SDAlgorithmBase::restore        [first_image] : Restoring model image.
INFO    SIImageStore::restore  Beam for chan : 0 : 0.652847 arcsec, 0.504504 arcsec, -66.0087 deg
WARN    tclean::task_tclean::  Please check the casa log file for a message confirming that the model was saved after the last major cycle. If it doesn't exist, please re-run tclean with niter=0,calcres=False,calcpsf=False in order to trigger a 'predict model' step that obeys the savemodel parameter.
</pre>
 
With a model in place, we are in a position to calibrate the science
target directly. We use {{gaincal}}, which is the task used both for general gain calibration using an external calibrator,  and for self-calibration.  We will focus here on phase corrections - generally good practice
for self calibration - because amplitude self calibration has a
larger potential to change the source characteristics (i.e. introduce artifacts).
Figuring out the best averaging parameters is often the key to good
self-calibration.  You would like the solution interval to be short enough so that it tracks changes in the atmospheric phase with high accuracy, but long enough so that you measure phases with good signal-to-noise. 
Also, ideally you'd like to keep solutions separate for difference spw's and polarizations, but for faint sources when you need to boost SNR, it may be necessary to average over these parameters to achieve good
solutions. Using 30 seconds for the solution interval is a good choice for TW Hydra.
 
<source lang="python">
# In CASA
os.system("rm -rf phase.cal")
gaincal(vis="sis14_twhya_calibrated_flagged.ms",
        caltable="phase.cal",
        field="5",
        solint="30s",
        calmode="p",
        refant="DV22",
        gaintype="G")
</source>
 
Try playing around with different solution intervals or averaging
options. Bear in mind that you want the shortest possible interval
while also retaining separate SPW and polarizations. However, none
of this helps you if you don't get good solutions. So you generally
will experiment with the following options: (1) combine="scan" or "spw" to
allow solutions to cross SPW/scan boundaries, or you can do both using combine="scan,spw"; (2) increase solint to set the
solution interval; and (3) toggling gaintype between "G" and "T" (the former generates solutions independently for each polarization, and the latter averages two polarizations before determining the solutions).
 
Plot the resulting solutions. We are finding nontrivial, though not
enormous, solutions (a few 10s of degrees) with the two correlations
tracking one another pretty well. If the data were already perfectly
calibrated, these values would solve to be zero.
 
<figure id="Imaging-tutorial-selfcal-plotcal-1.png">
[[File:Imaging-tutorial-selfcal-plotcal-1.png|thumb|<caption>Phase solutions after the first round of self calibration.</caption>]]
</figure>
 
<source lang="python">
# In CASA
plotms(vis="phase.cal",
      xaxis="time",
      yaxis="phase",
      gridrows=3,
      gridcols=3,
      iteraxis="antenna",
      plotrange=[0,0,-30,30],
      titlefont=7,
      xaxisfont=7,
      yaxisfont=7,
      plotfile="sis14_selfcal_phase_scan.png",
      showgui = True)
</source>
 
We are happy with this solution. So let's apply it to the data using
{{applycal}}. We only care about field 5 (the science target).
 
<source lang="python">
# In CASA
applycal(vis="sis14_twhya_calibrated_flagged.ms",
        field="5",
        gaintable=["phase.cal"],
        interp="linear")
</source>
 
At this point the self-calibrated data are stored in the MS in the "corrected data"
column. Because we will want to try more rounds of self calibration,
it's often useful (though not strictly necessary) at this point to
split out the corrected data into a new data set. If you are restarting this tutorial, you need to first delete the output .ms and .flagversions file.
 
<source lang="python">
# In CASA
os.system("rm -rf sis14_twhya_selfcal.ms sis14_twhya_selfcal.ms.flagversions")
split(vis="sis14_twhya_calibrated_flagged.ms",
      outputvis="sis14_twhya_selfcal.ms",
      datacolumn="corrected")
</source>
 
Now clean the self-calibrated data. Again, clean until the residuals
on TW Hydra resemble those in the surrounding image.
 
<figure id="Imaging-tutorial-selfcal-2.png">
[[File:Imaging-tutorial-selfcal-2.png|thumb|<caption>Residuals from the second tclean after 2 main cycles of cleaning. </caption>]]
</figure>
 
<source lang="python">
# In CASA
os.system('rm -rf second_image.*')
tclean(vis='sis14_twhya_selfcal.ms',
      imagename='second_image',
      field='5',
      spw='',
      specmode='mfs',
      deconvolver='hogbom',
      nterms=1,
      gridder='standard',
      imsize=[250,250],
      cell=['0.1arcsec'],
      weighting='natural',
      threshold='0mJy',
      interactive=True,
      niter=5000,
      savemodel='modelcolumn')
</source>
 
The residuals do look better this time around. Run the viewer and
compare the first and second images. You should see a noticeable
improvement in the noise and some improvement in the signal, so that
the overall signal-to-noise (dynamic range) is much improved.
 
This second clean also produces a model (if the savemodel parameter is set!), hopefully a mildly better one this time.
 
Now we will run a second round of phase-only self calibration using the improved model.
 
<source lang="python">
# In CASA
os.system("rm -rf phase_2.cal")
gaincal(vis="sis14_twhya_selfcal.ms",
        caltable="phase_2.cal",
        field="5",
        solint="30s",
        calmode="p",
        refant="DV22",
        gaintype="G")
</source>
 
Let's plot the calibration table again.  At this point, we see much smaller phase scatter
relative to the model, so we don't expect more phase-only self calibration to
do much.
 
<figure id="Imaging-tutorial-selfcal-plotcal-2.png">
[[File:Imaging-tutorial-selfcal-plotcal-2.png|thumb|<caption>Phase solutions after the second round of self calibration.</caption>]]
</figure>
 
<source lang="python">
# In CASA
plotms(vis="phase_2.cal",
      xaxis="time",
      yaxis="phase",
      gridrows=3,
      gridcols=3,
      iteraxis="antenna",
      plotrange=[0,0,-30,30],
      titlefont=7,
      xaxisfont=7,
      yaxisfont=7,
      plotfile="sis14_selfcal_phase_scan_2.png", 
      showgui = True)
</source>
 
Apply the solutions again:
 
<source lang="python">
# In CASA
applycal(vis="sis14_twhya_selfcal.ms",
        field="5",
        gaintable=["phase_2.cal"],
        interp="linear")
</source>
 
Split the data off again.  Here you can see the work flow for heavily iterative
self-calibration. We progressively calibrate, split.
 
<source lang="python">
# In CASA
os.system("rm -rf sis14_twhya_selfcal_2.ms sis14_twhya_selfcal_2.ms.flagversions")
split(vis="sis14_twhya_selfcal.ms",
      outputvis="sis14_twhya_selfcal_2.ms",
      datacolumn="corrected")
</source>
 
Clean a third time.
 
<figure id="Imaging-tutorial-selfcal-3.png">
[[File:Imaging-tutorial-selfcal-3.png|thumb|<caption>Residuals from the third clean after 2 main cycles of cleaning. </caption>]]
</figure>
 
<source lang="python">
# In CASA
os.system('rm -rf third_image.*')
tclean(vis='sis14_twhya_selfcal_2.ms',
      imagename='third_image',
      field='5',
      spw='',
      specmode='mfs',
      deconvolver='hogbom',
      nterms=1,
      gridder='standard',
      imsize=[250,250],
      cell=['0.1arcsec'],
      weighting='natural',
      threshold='0mJy',
      interactive=True,
      niter=5000,
      savemodel='modelcolumn')
</source>
 
The improvement is really marginal at this point.
Confident that we have done what we can on the phase, we can experiment with amplitude
self calibration. This is potentially dangerous as it has much more
potential to change the characteristics of the source than phase
self-calibration. We mitigate this somewhat by setting solnorm=True,
so that the solutions are normalized.
 
<figure id="Imaging-tutorial-selfcal-plotcal-3.png">
[[File:Imaging-tutorial-selfcal-plotcal-3.png|thumb|<caption>Amplitude solutions after the third round of self calibration.</caption>]]
</figure>
 
<source lang="python">
# In CASA
os.system("rm -rf amp.cal")
gaincal(vis="sis14_twhya_selfcal_2.ms",
        caltable="amp.cal",
        field="5",
        solint="30s",
        calmode="ap",
        refant="DV22",
        gaintype="G",
        solnorm=True)
 
# Plot the amplitude solutions.
plotms(vis="amp.cal",
      xaxis="time",
      yaxis="amp",
      gridrows=3,
      gridcols=3,
      iteraxis="antenna",
      plotrange=[0,0,0,0],
      titlefont=7, 
      xaxisfont=7, 
      yaxisfont=7,
      plotfile="sis14_selfcal_phase_scan_3.png", 
      showgui = True)
</source>
 
We see a good deal of scatter and some offsets between
correlations. It is at least worth looking at what the effects of
applying this will be.  So let's apply these solutions on an interim basis.
 
<source lang="python">
# In CASA
applycal(vis="sis14_twhya_selfcal_2.ms",
        field="5",
        gaintable=["amp.cal"],
        interp="linear")
</source>
 
At this point the self-calibrated data live in the corrected
column. Because we will want to try more rounds of self calibration,
it's very useful (though not strictly necessary) at this point to
split out the corrected data into a new data set.
 
<source lang="python">
# In CASA
os.system("rm -rf sis14_twhya_selfcal_3.ms sis14_twhya_selfcal_3.ms.flagversions")
split(vis="sis14_twhya_selfcal_2.ms",
      outputvis="sis14_twhya_selfcal_3.ms",
      datacolumn="corrected")
</source>
 
Clean a fourth time.
 
<figure id="Imaging-tutorial-selfcal-4.png">
[[File:Imaging-tutorial-selfcal-4.png|thumb|<caption>Residuals from the fourth tclean after 4 main cycles of cleaning. </caption>]]
</figure>
 
<source lang="python">
# In CASA
os.system('rm -rf fourth_image.*')
tclean(vis='sis14_twhya_selfcal_3.ms',
      imagename='fourth_image',
      field='5',
      spw='',
      specmode='mfs',
      deconvolver='hogbom',
      nterms=1,
      gridder='standard',
      imsize=[250,250],
      cell=['0.1arcsec'],
      weighting='natural',
      threshold='0mJy',
      interactive=True,
      niter=5000)
</source>
 
This time, notice from the residuals that you can clean more deeply. After 4 main cycles, the background residuals look very random on
the scale of the beam size. This is good!
 
Compare the third and fourth images. The noise level is dramatically better,
while the flux has not changed markedly (this is very
good, it's what we worry about with amplitude self calibration).
By assuming that the previous cleans represent good models we have
managed to improve the signal-to-noise on the data by almost an
order of magnitude. Not bad!
 
This fourth image is our best continuum image. We can use the data
set (sis14_twhya_selfcal_3.ms) to proceed with later work.  In the next lesson we'll do UV
continuum subtraction and line imaging.
 
(ASIDE: Note that you would need to do the primary beam correction on this data
in the same way as you corrected the previous continuum image before
making science measurements).

Latest revision as of 17:13, 12 October 2023