Import standard modules:
In [ ]:
import numpy as np
import matplotlib.pyplot as plt
%matplotlib inline
from IPython.display import HTML
HTML('../style/course.css') #apply general CSS
Import section specific modules:
In [ ]:
from IPython.display import Image
In [ ]:
HTML('../style/code_toggle.html')
TODO:
how is the primary beam used in calibration and imaging?
https://www.cv.nrao.edu/course/astr534/ReflectorAntennas.html
The primary beam of an antenna (also known as the radiation pattern) is the directional dependence of the gain of the antenna.
The primary beam of the antenna is the most important direction-dependent propagation effect.
It has a multiplicative effect in the image plane, and a convolutional effect in the visibility plane, due to the Fourier Transform relationship between the image and visibility planes.
In [ ]:
Image(filename='figures/AntennaRadiationDiagram.png', width=400)
Figure 7.5.1: Schematic diagram of an antenna radiation pattern (Image taken from https://commons.wikimedia.org/wiki/File:Sidelobes_en.svg).
Example: Primary beam of the JVLA (Jansky Very Large Array)
In [ ]:
Image(filename='figures/PrimaryBeam_1410MHz_labeled.png', width=700)
In [ ]:
Image(filename='figures/BGvsRadius.png', width=500)
Figure 7.5.3: Gain across a horizontal cross section through the centre of the beam pattern shown in Figure 7.5.2. The peak at the centre corresponds to the mainlobe, with the first null and the first sidelobe on either side.
In [ ]:
Image(url="figures/beam_freq_variation.gif",width=400)
In [ ]:
Image(filename='figures/BGvsFreq.png', width=500)
Figure 7.5.5: Variation of the beam gain with frequency at the position of the source marked by a black dot in Figure 7.5.4.
A JVLA antenna, which has an alt-azimuth mount, rotates relative to the sky during the course of an observation.
In [ ]:
Image(filename='figures/AltAzAntennaRotation.png', width=700)
The rotation of the primary beam causes the beam gain in a given direction to vary with time.
In [ ]:
Image(url="figures/beam_rotate.gif",width=400)
Figure 7.5.7: Rotation of the beam pattern in Figure 7.5.2 during the course of an observation.
In [ ]:
Image(filename='figures/BGvsHA.png', width=500)
Figure 7.5.8: Variation of the beam gain as a function of the hour angle at the position of the source marked by a black dot in Figure 7.5.7.
An antenna with an alt-azimuth mount tracks a source in the sky by rotating along two axes - altitude (vertical) and azimuth (vertical).
An antenna with an equatorial mount tracks a source by rotating about the polar axis (i.e., an axis which points towards the celestial pole).
In [ ]:
Image(filename='figures/antenna_mounts.png', width=600)
Figure 7.7.1: Alt-azimuth and equatorial mounts illustrated for the case of an optical telescope (Image taken from http://www.oasi.org.uk/Telescopes/CFTOB/Mounts.gif).
For an antenna with an alt-azimuth mount, the antenna primary beam rotates relative to the sky during the course of an observation. For an equatorially-mounted antenna, the relative orientation of the antenna primary beam and the sky remains unchanged throughout the course of an observation.
In [ ]:
Image(filename='figures/AltAzAntennaRotation.png', width=700)
In [ ]:
Image(filename='figures/EquatorialAntennaRotation.png', width=700)
The parallactic angle is the spherical angle between two great circles on the celestial sphere - one passing through the source and the zenith, and the other passing through the source and the north celestial pole.
In [ ]:
Image(filename='figures/ParallacticAngle.png', width=500)
Figure 7.7.4: Parallactic angle
The parallactic angle is given by
$$ q = \arctan \bigg( \frac{\sin(HA)}{\tan(L_a)\cos(\delta)-\sin(\delta)\cos(HA)} \bigg) $$where
$q$ is the parallactic angle,
$HA$ is the hour angle of the source,
$\delta$ is the declination of the source,
$L_a$ is the latitude of the observer.