First Look at Self Calibration: Difference between revisions

From CASA Guides
Jump to navigationJump to search
No edit summary
No edit summary
(7 intermediate revisions by 3 users not shown)
Line 12: Line 12:
# In CASA
# In CASA
os.system("rm -rf sis14_twhya_calibrated_flagged.ms")
os.system("rm -rf sis14_twhya_calibrated_flagged.ms")
os.system("cp -r ../working_data/sis14_twhya_calibrated_flagged.ms .")
os.system("cp -r ../working/sis14_twhya_calibrated_flagged.ms .")
</source>
</source>


Line 23: Line 23:


Now, use tclean to make a continuum image of TW Hydra (field 5). This call is interactive, but the automated approach that we used
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. Clean until the residuals near TW Hydra are comparable
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.   
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.
That is, use the green arrow twice, and then click the red X to finish tclean.
Line 35: Line 41:
os.system('rm -rf first_image.*')
os.system('rm -rf first_image.*')
tclean(vis='sis14_twhya_calibrated_flagged.ms',
tclean(vis='sis14_twhya_calibrated_flagged.ms',
imagename='first_image',
      imagename='first_image',
field='5',
      field='5',
spw='',
      spw='',
specmode='mfs',
      specmode='mfs',
deconvolver='hogbom',
      deconvolver='hogbom',
nterms=1,
      nterms=1,
gridder='standard',
      gridder='standard',
imsize=[250,250],
      imsize=[250,250],
cell=['0.1arcsec'],
      cell=['0.1arcsec'],
weighting='natural',
      weighting='natural',
threshold='0mJy',
      threshold='0mJy',
niter=5000,
      niter=5000,
interactive=True,
      interactive=True,
savemodel='modelcolumn')
      savemodel='modelcolumn')
</source>
</source>


Line 57: Line 63:
good starting point.
good starting point.


In CASA 5.1, you will 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':
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;">
<pre style="background-color: #fffacd;">
INFO task_tclean Saving model column
INFO   task_tclean::SynthesisImagerVi2::predictModel  Saving model column  
INFO task_tclean [first_image] Peak residual (max,min) within mask : (0.0293835,-0.0138908) over full image : (0.0514144,-0.0328941)
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 [first_image] Total Model Flux : 1.13002
INFO   task_tclean::SIImageStore::printImageStats      [first_image] Total Model Flux : 1.12702
INFO tclean         Reached global stopping criterion : force stop
INFO   tclean::::      Reached global stopping criterion : force stop  
INFO SDAlgorithmBase [first_image] : Restoring model image.
INFO   SDAlgorithmBase::restore        [first_image] : Restoring model image.  
WARN 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.
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>
</pre>


Line 81: Line 88:
os.system("rm -rf phase.cal")
os.system("rm -rf phase.cal")
gaincal(vis="sis14_twhya_calibrated_flagged.ms",
gaincal(vis="sis14_twhya_calibrated_flagged.ms",
caltable="phase.cal",
        caltable="phase.cal",
field="5",
        field="5",
solint="30s",
        solint="30s",
calmode="p",
        calmode="p",
refant="DV22",
        refant="DV22",
gaintype="G")
        gaintype="G")
</source>
</source>


Line 108: Line 115:
<source lang="python">
<source lang="python">
# In CASA
# In CASA
plotcal(caltable="phase.cal",
plotms(vis="phase.cal",  
xaxis="time",
      xaxis="time",  
yaxis="phase",
      yaxis="phase",  
subplot=331,
      gridrows=3,  
iteration="antenna",
      gridcols=3,
plotrange=[0,0,-30,30],
      iteraxis="antenna",  
markersize=5,
      plotrange=[0,0,-30,30],  
fontsize=10.0,
      titlefont=7,
figfile="sis14_selfcal_phase_scan.png",
      xaxisfont=7,  
showgui = True)
      yaxisfont=7,  
      plotfile="sis14_selfcal_phase_scan.png",  
      showgui = True)
</source>
</source>


Line 126: Line 135:
# In CASA
# In CASA
applycal(vis="sis14_twhya_calibrated_flagged.ms",
applycal(vis="sis14_twhya_calibrated_flagged.ms",
field="5",
        field="5",
gaintable=["phase.cal"],
        gaintable=["phase.cal"],
interp="linear")
        interp="linear")
</source>
</source>


Line 134: Line 143:
column. Because we will want to try more rounds of self calibration,
column. Because we will want to try more rounds of self calibration,
it's often useful (though not strictly necessary) at this point to
it's often useful (though not strictly necessary) at this point to
split out the corrected data into a new data set. '''Note if restarting this tutorial, need to also delete .flagversions file'''
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">
<source lang="python">
Line 140: Line 149:
os.system("rm -rf sis14_twhya_selfcal.ms sis14_twhya_selfcal.ms.flagversions")
os.system("rm -rf sis14_twhya_selfcal.ms sis14_twhya_selfcal.ms.flagversions")
split(vis="sis14_twhya_calibrated_flagged.ms",
split(vis="sis14_twhya_calibrated_flagged.ms",
outputvis="sis14_twhya_selfcal.ms",
      outputvis="sis14_twhya_selfcal.ms",
datacolumn="corrected")
      datacolumn="corrected")
</source>
</source>


Line 155: Line 164:
os.system('rm -rf second_image.*')
os.system('rm -rf second_image.*')
tclean(vis='sis14_twhya_selfcal.ms',
tclean(vis='sis14_twhya_selfcal.ms',
imagename='second_image',
      imagename='second_image',
field='5',
      field='5',
spw='',
      spw='',
specmode='mfs',
      specmode='mfs',
deconvolver='hogbom',
      deconvolver='hogbom',
nterms=1,
      nterms=1,
gridder='standard',
      gridder='standard',
imsize=[250,250],
      imsize=[250,250],
cell=['0.1arcsec'],
      cell=['0.1arcsec'],
weighting='natural',
      weighting='natural',
threshold='0mJy',
      threshold='0mJy',
interactive=True,
      interactive=True,
niter=5000,
      niter=5000,
savemodel='modelcolumn')
      savemodel='modelcolumn')
</source>
</source>


Line 184: Line 193:
os.system("rm -rf phase_2.cal")
os.system("rm -rf phase_2.cal")
gaincal(vis="sis14_twhya_selfcal.ms",
gaincal(vis="sis14_twhya_selfcal.ms",
caltable="phase_2.cal",
        caltable="phase_2.cal",
field="5",
        field="5",
solint="30s",
        solint="30s",
calmode="p",
        calmode="p",
refant="DV22",
        refant="DV22",
gaintype="G")
        gaintype="G")
</source>
</source>


Line 202: Line 211:
<source lang="python">
<source lang="python">
# In CASA
# In CASA
plotcal(caltable="phase_2.cal",
plotms(vis="phase_2.cal",  
xaxis="time",
      xaxis="time",  
yaxis="phase",
      yaxis="phase",  
subplot=331,
      gridrows=3,  
iteration="antenna",
      gridcols=3,
plotrange=[0,0,-30,30],
      iteraxis="antenna",  
markersize=5,
      plotrange=[0,0,-30,30],  
fontsize=10.0,
      titlefont=7,
figfile="sis14_selfcal_phase_scan_2.png",  
      xaxisfont=7,  
showgui = True)
      yaxisfont=7,  
      plotfile="sis14_selfcal_phase_scan_2.png",
      showgui = True)
</source>
</source>


Line 219: Line 230:
# In CASA
# In CASA
applycal(vis="sis14_twhya_selfcal.ms",
applycal(vis="sis14_twhya_selfcal.ms",
field="5",
        field="5",
gaintable=["phase_2.cal"],
        gaintable=["phase_2.cal"],
interp="linear")
        interp="linear")
</source>
</source>


Line 231: Line 242:
os.system("rm -rf sis14_twhya_selfcal_2.ms sis14_twhya_selfcal_2.ms.flagversions")
os.system("rm -rf sis14_twhya_selfcal_2.ms sis14_twhya_selfcal_2.ms.flagversions")
split(vis="sis14_twhya_selfcal.ms",
split(vis="sis14_twhya_selfcal.ms",
outputvis="sis14_twhya_selfcal_2.ms",
      outputvis="sis14_twhya_selfcal_2.ms",
datacolumn="corrected")
      datacolumn="corrected")
</source>
</source>


Line 245: Line 256:
os.system('rm -rf third_image.*')
os.system('rm -rf third_image.*')
tclean(vis='sis14_twhya_selfcal_2.ms',
tclean(vis='sis14_twhya_selfcal_2.ms',
imagename='third_image',
      imagename='third_image',
field='5',
      field='5',
spw='',
      spw='',
specmode='mfs',
      specmode='mfs',
deconvolver='hogbom',
      deconvolver='hogbom',
nterms=1,
      nterms=1,
gridder='standard',
      gridder='standard',
imsize=[250,250],
      imsize=[250,250],
cell=['0.1arcsec'],
      cell=['0.1arcsec'],
weighting='natural',
      weighting='natural',
threshold='0mJy',
      threshold='0mJy',
interactive=True,
      interactive=True,
niter=5000,
      niter=5000,
savemodel='modelcolumn')
      savemodel='modelcolumn')
</source>
</source>


Line 276: Line 287:
os.system("rm -rf amp.cal")
os.system("rm -rf amp.cal")
gaincal(vis="sis14_twhya_selfcal_2.ms",
gaincal(vis="sis14_twhya_selfcal_2.ms",
caltable="amp.cal",
        caltable="amp.cal",
field="5",
        field="5",
solint="30s",
        solint="30s",
calmode="ap",
        calmode="ap",
refant="DV22",
        refant="DV22",
gaintype="G",
        gaintype="G",
solnorm=True)
        solnorm=True)


# Plot the amplitude solutions.
# Plot the amplitude solutions.
plotcal(caltable="amp.cal",
plotms(vis="amp.cal",  
xaxis="time",
      xaxis="time",  
yaxis="amp",
      yaxis="amp",  
subplot=331,
      gridrows=3,  
iteration="antenna",
      gridcols=3,
plotrange=[0,0,0,0],
      iteraxis="antenna",  
markersize=5,
      plotrange=[0,0,0,0],  
fontsize=10.0,  
      titlefont=7, 
showgui = True)
      xaxisfont=7, 
      yaxisfont=7,  
      plotfile="sis14_selfcal_phase_scan_3.png",
      showgui = True)
</source>
</source>


Line 303: Line 317:
# In CASA
# In CASA
applycal(vis="sis14_twhya_selfcal_2.ms",
applycal(vis="sis14_twhya_selfcal_2.ms",
field="5",
        field="5",
gaintable=["amp.cal"],
        gaintable=["amp.cal"],
interp="linear")
        interp="linear")
</source>
</source>


Line 317: Line 331:
os.system("rm -rf sis14_twhya_selfcal_3.ms sis14_twhya_selfcal_3.ms.flagversions")
os.system("rm -rf sis14_twhya_selfcal_3.ms sis14_twhya_selfcal_3.ms.flagversions")
split(vis="sis14_twhya_selfcal_2.ms",
split(vis="sis14_twhya_selfcal_2.ms",
outputvis="sis14_twhya_selfcal_3.ms",
      outputvis="sis14_twhya_selfcal_3.ms",
datacolumn="corrected")
      datacolumn="corrected")
</source>
</source>


Line 331: Line 345:
os.system('rm -rf fourth_image.*')
os.system('rm -rf fourth_image.*')
tclean(vis='sis14_twhya_selfcal_3.ms',
tclean(vis='sis14_twhya_selfcal_3.ms',
imagename='fourth_image',
      imagename='fourth_image',
field='5',
      field='5',
spw='',
      spw='',
specmode='mfs',
      specmode='mfs',
deconvolver='hogbom',
      deconvolver='hogbom',
nterms=1,
      nterms=1,
gridder='standard',
      gridder='standard',
imsize=[250,250],
      imsize=[250,250],
cell=['0.1arcsec'],
      cell=['0.1arcsec'],
weighting='natural',
      weighting='natural',
threshold='0mJy',
      threshold='0mJy',
interactive=True,
      interactive=True,
niter=5000)
      niter=5000)
</source>
</source>



Revision as of 16:12, 14 November 2019

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 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.

# In CASA
os.system("rm -rf sis14_twhya_calibrated_flagged.ms")
os.system("cp -r ../working/sis14_twhya_calibrated_flagged.ms .")

Run a quick listobs to get oriented:

# In CASA
listobs("sis14_twhya_calibrated_flagged.ms")

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.

<figure id="Imaging-tutorial-selfcal-1.png">

Residuals from the first tclean after 2 main cycles of cleaning.

</figure>

# 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')

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':

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.

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.

# 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")

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">

Phase solutions after the first round of self calibration.

</figure>

# 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)

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).

# In CASA
applycal(vis="sis14_twhya_calibrated_flagged.ms",
         field="5",
         gaintable=["phase.cal"],
         interp="linear")

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.

# 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")

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">

Residuals from the second tclean after 2 main cycles of cleaning.

</figure>

# 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')

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.

# 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")

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">

Phase solutions after the second round of self calibration.

</figure>

# 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)

Apply the solutions again:

# In CASA
applycal(vis="sis14_twhya_selfcal.ms",
         field="5",
         gaintable=["phase_2.cal"],
         interp="linear")

Split the data off again. Here you can see the work flow for heavily iterative self-calibration. We progressively calibrate, split.

# 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")

Clean a third time.

<figure id="Imaging-tutorial-selfcal-3.png">

Residuals from the third clean after 2 main cycles of cleaning.

</figure>

# 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')

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">

Amplitude solutions after the third round of self calibration.

</figure>

# 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)

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.

# In CASA
applycal(vis="sis14_twhya_selfcal_2.ms",
         field="5",
         gaintable=["amp.cal"],
         interp="linear")

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.

# 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")

Clean a fourth time.

<figure id="Imaging-tutorial-selfcal-4.png">

Residuals from the fourth tclean after 4 main cycles of cleaning.

</figure>

# 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)

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).