| Getting Started | Documentation | Glish | Learn More | Programming | Contact Us |
| Version 1.9 Build 803 |
|
First, set the flux density for 3C 286 (FIELD_ID 11) according to
Perley-Taylor (1999):
imgrC:=imager(filename='ap366.ms'); # Start the imager tool
imgrC.setjy(fieldid=11); # Calculate & set flux density for
# 1328+307 (3C 286) to 7.462Jy
After running setjy you will get a report in the logger giving
the status of the task along with the end results:
Starting imager::setjy
1328+307 spwid= 1 [I=7.462, Q=0, U=0, V=0] Jy, (Perley-Taylor 99)
Finished imager::setjy
Check that the flux is actually set by using the imager.plotvis function to see the value in the MODEL_DATA column. First select only the 3C 286 data using the imager.setdata function, then run plotvis to create Fig 1.10:
imgrC.setdata(fieldid=11); # Setdata to 1328+307 (3C 286) imgrC.plotvis(type='model'); # Plot model amplitudes vs uv distance imgrC.done(); # Close out the tool.
![]() |