A Crash Course in CASA With a focus on calibration

Size: px
Start display at page:

Download "A Crash Course in CASA With a focus on calibration"

Transcription

1 A Crash Course in CASA With a focus on calibration CASA team NRAO Atacama Large Millimeter/submillimeter Array Expanded Very Large Array Robert C. Byrd Green Bank Telescope Very Long Baseline Array

2 CASA Common Astronomy Software Applications The offline data reduction package for ALMA and VLA HANDLES BOTH INTERFEROMETRIC AND SINGLE-DISH DATA Current version: NEW RELEASES ABOUT EVERY 6 MONTHS (BUT THIS MAY CHANGE..) CASA home: DOWNLOAD, COOKBOOK, REFERENCE, EXAMPLE SCRIPTS, MAILING LISTS Training material on CASAguides wiki: NRAO helpdesk: ALMA helpdesk:

3 Outline CASA interface: Python, tools, and tasks Structure of CASA data Key CASA tasks for data reduction/calibration CASA tasks for examining your data Clean Visualization Tools

4 casapy Shell Start CASA by typing casapy VERSION NUMBER AND LOGGER WILL APPEAR, YOU GET AN IPYTHON PROMPT Python tips (tutorials at o Indentation matters! So careful with cut/paste (a few lines at a time) o or use cpaste (type cpaste, paste code, end with a line of -- ) o Run shell commands with leading!, e.g.,!du hc o To run a script: execfile( scriptname.py ) " o Python is zero based: 0 n-1"

5 Tasks Tasks high-level functionality o Python wrapper around the toolkit and pythoncode o Accessed via python function call or parameter setting interface o List CASA tasks with command tasklist or taskhelp" o Most data reduction and tutorials and CASA guides focus on tasks"

6 Tools Tools low level, complete functionality o Interface to underlying C++ code o Intended for power users, less user-friendly, less well-documented o Objects: call with <tool>.<method>" o List available tools with command toolhelp" o Check casa.nrao.edu for documentation on all available methods

7 Task Syntax get detailed help with help(<taskname>)" Two ways to call tasks: o As a function with arguments: UNSPECIFIED PARAMETERS USE DEFAULT VALUES gaincal(vis= mydata.ms, caltable= caltable.cal, field= 2 )" o Standard, interactive task mode: OMITTING TASKNAME OPERATES ON CURRENT TASK default(<taskname>) sets task s parameters to default values inp(<taskname>) see task s parameter settings (input values) saveinputs(<taskname>) tget(<taskname>) saves parameters to <taskname>.saved retrieves parameters (<taskname>.last)"

8 Standard Task Interface Examine task parameters (inputs) with inp :

9 Standard Task Interface Default values in BLACK

10 Standard Task Interface Expandable parameters are highlighted Sub-parameters indented

11 Standard Task Interface User set values in BLUE Erroneous values in RED

12 Outline CASA interface: Python, tools, and tasks Structure of CASA data Key CASA tasks for data reduction/calibration CASA tasks for examining your data Clean Visualization Tools

13 Measurement Set CASA stores u-v data in directories called Measurement Sets TO DELETE THEM USE rmtables( my_data.ms ) OR " os.system( rm rf my_data.ms )" These data sets store two copies of the data (called columns ): Data Column Contains the raw, unprocessed measurements. Corrected Column Usually created by applying one or more calibration terms to the data. Additionally a model may be stored separately. THIS IS USED TO CALCULATE WHAT THE TELESCOPE SHOULD HAVE OBSERVED. Each data point may also be flagged, i.e., marked bad. IN THIS CASE IT IS IGNORED (TREATED AS MISSING) BY CASA OPERATIONS.

14 listobs! Measurement sets contain a mix of data: o One or more spectral windows o One or more fields (e.g., source, phase calibrator, flux calibrator) o Data from several antennas o Data organized into discrete scans Inspect the contents of your measurement set using listobs.

15 listobs! Measurement sets contain a mix of data: o One or more spectral windows o One or more fields (e.g., source, phase calibrator, flux calibrator) o Data from several antennas o Data organized into discrete scans Inspect the contents of your measurement set using listobs.

16 Data Selection Syntax see Chapter 2.5 of Cookbook field - string with source name or field ID can use * as wildcard, first checks for name, then ID example: field = ; field = 3C* ; field = 0,1,4~5 spw - string with spectral window ID plus channels use : as separator of spw from optional channelization use ^ as separator of channels from step/width example: spw = 0~2 ; spw = 1:10~30;50~65 ; spw = 2~5:5~54^5 16

17 Selection Syntax see Chapter 2.5 of Cookbook antenna - string with antenna name or ID first check for name, then ID (beware VLA name 1-27, ID 0-26) example: antenna = 1~5,11 ; antenna = ea*,!va Baselines: ea01&ea10 timerange - string with date/time range specify T0~T1, missing parts of T1 default to T0, can give T0+dT example: timerange = 2007/10/16/01:00:00~06:30:00 17

18 Calibration Tables Calibration yields estimates of phase and amplitude corrections. E.G., AS A FUNCTION OF TELESCOPE, TIME, FREQUENCY, POLARIZATION. CASA stores these corrections in directories called calibration tables. TO DELETE THEM USE rmtables( my_data.ms )" These are created by calibration tasks: E.G., gaincal, bandpass, gencal" Applied via applycal to the data column and saved as corrected. Measurement Set ( Data Column) Calibration Table(s) applycal CASA Task" Measurement Set Data Column Still holds original data Corrected Column Now holds corrected data.

19 Basic Calibration Flow Define what the telescope SHOULD have seen. Measurement Set Model (defaults to point source) Define a model for the data (setjy) Measurement Set (with associated model)

20 Basic Calibration Flow Derive the corrections needed to make the data match the model. Measurement Set (with associated model) Calibration Task" (e.g., gaincal, bandpass) Calibration Table

21 Basic Calibration Flow Apply these corrections to derive the corrected (calibrated) data. Measurement Set Data Column Calibration Table Apply Calibration" applycal" Measurement Set Corrected column now holds calibrated data.

22 Basic Calibration Flow Define what the telescope SHOULD have seen. Measurement Set Model (defaults to point source) Define a model for the data (setjy) Measurement Set (with associated model) Derive the corrections needed to make the data match the model. Measurement Set (with associated model) Calibration Task" (e.g., gaincal, bandpass) Calibration Table Apply these corrections to derive the corrected (calibrated) data. Measurement Set Data Column Calibration Table Apply Calibration" applycal" Measurement Set Corrected column now holds calibrated data.

23 Schematic Calibration Calibrate the Amplitude and Phase vs. Frequency of Each Antenna ASSUME TIME & FREQUENCY RESPONSE SEPARABLE, REMOVE TIME VARIABILITY Calibrate the Amplitude and Phase vs. Time of Each Antenna ASSUME TIME & FREQUENCY RESPONSE SEPARABLE, REMOVE FREQ. VARIABILITY Set the Absolute Amplitude Scale With Reference to a Known Source PLANET (MODELLED), MONITORED QUASAR, ETC. Apply all corrections to produce calibrated data

24 Schematic Calibration Calibrate the Amplitude and Phase vs. Frequency of Each Antenna bandpass" Bandpass Calibration Table Calibrate the Amplitude and Phase vs. Time of Each Antenna gaincal" Phase Calibration Table Amplitude Calibration Table Set the Absolute Amplitude Scale With Reference to a Known Source fluxscale" Flux Calibration Table Apply all corrections to produce calibrated data applycal" Measurement Set Corrected column now holds calibrated data.

25 Outline CASA interface: Python, tools, and tasks Structure of CASA data Key CASA tasks for data reduction/calibration CASA tasks for examining your data Clean Visualization Tools

26 Key Tasks for Calibration Derive Calibration Tables setjy: set model (correct) visibilities using known model for a calibrator bandpass: calculate bandpass calibration table (amp/phase vs frequency) gaincal: calculate temporal gain calibration table (amp/phase vs time) fluxscale: apply absolute flux scaling to calibration table from known source Manipulate Your Measurement Set flagdata/flagcmd/flagmanager: flag (remove) bad data applycal: apply calibration table(s) from previous steps split: split off calibrated data from your ms (for imaging!) Inspect Your Data and Results plotms: inspect your data interactively plotcal: examine a calibration table

27 gaincal Measurement Set Data column holds observations. (Optional) One or More Calibration Tables (applied on the fly before solution)" (Optional) Associate a model (expected sky distribution) with the MS. (Else assume point source) gaincal" Solve for phase and amplitude response of each telescope as a function of time. (Solutions derived to give best match of data to model once they are applied.) o What time interval to solve over? o Requirements for a good solution. o Reference Antenna Calibration Table Later applied with applycal"

28 gaincal

29 gaincal Input Measurement Set (with model set, if needed)

30 gaincal Output Calibration Table (apply later with applycal)

31 gaincal Options to select which data to consider: e.g., select calibrator fields

32 gaincal Time interval over which to solve. (Only cross scan or spw boundaries with combine )

33 gaincal Reference Antenna (pick a central one with little or no flagging)

34 gaincal Requirements for a solution in terms of S/N and # of baselines contributing

35 gaincal Normalize solutions?

36 gaincal What to solve for? a mplitude p hase ap - both

37 gaincal Calibration tables to apply before solution: e.g., apply bandpass calibration before gaincal"

38 gaincal Measurement Set Data column holds observations. (Optional) One or More Calibration Tables (applied on the fly before solution)" (Optional) Associate a model (expected sky distribution) with the MS. (Else assume point source) gaincal" Solve for phase and amplitude response of each telescope as a function of time. (Solutions derived to give best match of data to model once they are applied.) o What time interval to solve over? o Requirements for a good solution. o Reference Antenna Calibration Table Later applied with applycal"

39 Outline CASA interface: Python, tools, and tasks Structure of CASA data Key CASA tasks for data reduction/calibration CASA tasks for examining your data Clean Visualization Tools

40 Imaging/Deconvolution Task CLEAN Performs Fourier Transform of the Visibilities in Measurement Set SPATIAL AND VELOCITY GRIDDING, MOSAICKING, DATA WEIGHTING STOKES IMAGES, DIRTY CUBE Deconvolution MAJOR CYCLES/MINOR CYCLES, INTERACTIVE CLEAN REGIONS CLEAN ITERATIONS, THRESHOLDS

41 Imaging/Deconvolution MS

42 Imaging/Deconvolution Field

43 Imaging/Deconvolution MFS for continuum Velocity for Spectral Line

44 Imaging/Deconvolution Image Size

45 Imaging/Deconvolution Pixel Size

46 Imaging/Deconvolution Weighting Scheme Natural/Uniform/Briggs

47 Imaging/Deconvolution Clean Algorithm

48 Imaging/Deconvolution Maximum Clean Iterations

49 Imaging/Deconvolution Clean Residual Threshold

50 Imaging/Deconvolution Interactive T/F

51 Outline CASA interface: Python, tools, and tasks Structure of CASA data Key CASA tasks for data reduction/calibration CASA tasks for examining your data Clean Visualization Tools

52 Visualization Tools Data needs to be displayed to understand it! Can be a challenge for large datasets Visibilities: plotms, msview Images: viewer, imview Calibration tables: plotcal (soon plotms) Any table values: browsetable Single dish: sdplot Plot anything: use Python s matplotlib 52

53 PlotMS plotms 53

54 Image Viewer Image Viewer 54

55 Image Viewer Displaying cubes Movies Channel maps Declination Right Ascension 55

56 Image Viewer Displaying cubes Movies Channel maps Declination Right Ascension 56

57 MSView MS Viewer 57

58 Plotcal MS Viewer 58

59 Plot Anything - matplotlib 59

60 Image Analysis Visualization CASA VIEWER Image Cubes MOMENT MAPS GAUSSIAN SPECTRAL LINE FITTING Continuum SPECTRAL INDEX MAPS SOURCE FITTING

61 Your Turn Point your web browser at the Synthesis Imaging School CASA guide. The site has contains links to the spectral line and the continuum EVLA tutorials We use a stable version of CASA 3.4 the full release will be available soon The SIW page contains links to the CASA 3.4 tasks, tools, and the Cookbook Launch: casapy ( casaviewer, casaplotms ) at NMT, casapy-stable ( casaviewer-stable, casaplotms-stable ) at NRAO ASK IF YOU NEED HELP!

62 Your Turn Point your web browser at the Synthesis Imaging School CASA guide. The site has contains links to the spectral line and the continuum EVLA tutorials We use a stable version of CASA 3.4 the full release will be available soon The SIW page contains links to the CASA 3.4 tasks, tools, and the Cookbook Launch: casapy ( casaviewer, casaplotms ) at NMT, casapy-stable ( casaviewer-stable, casaplotms-stable ) at NRAO ASK IF YOU NEED HELP!

63 Your Turn Point your web browser at the Synthesis Imaging School CASA guide. Decide whether to start with WVR and Tsys applied. Work end-to-end through the calibration of a single measurement set. THE FULL ONLINE GUIDES STEP THROUGH CALIBRATION FOR SEVERAL MSS. (Optional) Try writing a python script as you go. THIS IS VERY GOOD PRACTICE FOR ACTUAL REDUCTION. After lunch, we will image the results. DON T WORRY, WE HAVE PROVIDED CALIBRATED DATA FOR THE AFTERNOON! ASK IF YOU NEED HELP!

Phase and Amplitude Calibration in CASA for ALMA data

Phase and Amplitude Calibration in CASA for ALMA data Phase and Amplitude Calibration in CASA for ALMA data Adam Leroy North American ALMA Science Center Atacama Large Millimeter/submillimeter Array Expanded Very Large Array Robert C. Byrd Green Bank Telescope

More information

Atacama Large Millimeter/submillimeter Array Expanded Very Large Array Robert C. Byrd Green Bank Telescope Very Long Baseline Array

Atacama Large Millimeter/submillimeter Array Expanded Very Large Array Robert C. Byrd Green Bank Telescope Very Long Baseline Array Atacama Large Millimeter/submillimeter Array Expanded Very Large Array Robert C. Byrd Green Bank Telescope Very Long Baseline Array Basics of Interferometry Data Reduction Scott Schnee (NRAO) ALMA Data

More information

ALMA Calibration Workshop

ALMA Calibration Workshop ALMA Calibration Workshop Lab #1: Basic Calibration December 1, 2011 Overview The goal of these exercises is to complete the initial calibration of an ALMA data set. There are two example data sets contained

More information

Data Processing: Visibility Calibration

Data Processing: Visibility Calibration Data Processing: Visibility Calibration The delivered ALMA data consist of the amplitudes and phases for the combined signals from pairs of antennas. These are called visibility data. The goal of visibility

More information

ALMA CASA Calibration

ALMA CASA Calibration ALMA CASA Calibration Allegro - CASA Tutorial Day Luke T. Maud 3 March 2017 Calibration - the basics Remove effects of the instrument itself Remove effects of the atmosphere Scaling to the correct flux

More information

CASA Tutorial. Bradley S. Frank. University of Cape Town SKA South Africa

CASA Tutorial. Bradley S. Frank. University of Cape Town SKA South Africa CASA Tutorial Bradley S. Frank University of Cape Town SKA South Africa This Session A southern-hemisphere non-blackbelt user s guide to CASA aka How I Learned to Stop Worrying and Learned to Love the

More information

Atacama Large Millimeter/submillimeter Array Expanded Very Large Array Robert C. Byrd Green Bank Telescope Very Long Baseline Array

Atacama Large Millimeter/submillimeter Array Expanded Very Large Array Robert C. Byrd Green Bank Telescope Very Long Baseline Array Atacama Large Millimeter/submillimeter Array Expanded Very Large Array Robert C. Byrd Green Bank Telescope Very Long Baseline Array Self-Calibration Ed Fomalont (NRAO) ALMA Data workshop Dec. 2, 2011 Atacama

More information

REDUCTION OF ALMA DATA USING CASA SOFTWARE

REDUCTION OF ALMA DATA USING CASA SOFTWARE REDUCTION OF ALMA DATA USING CASA SOFTWARE Student: Nguyen Tran Hoang Supervisor: Pham Tuan Anh Hanoi, September - 2016 1 CONTENS Introduction Interferometry Scientific Target M100 Calibration Imaging

More information

What is CASA? Rachel Friesen. North American ALMA Science Center. Victoria BC, January 18, 2011 ALMA Software Tutorial 1

What is CASA? Rachel Friesen. North American ALMA Science Center. Victoria BC, January 18, 2011 ALMA Software Tutorial 1 What is CASA? Rachel Friesen North American ALMA Science Center Victoria BC, January 18, 2011 ALMA Software Tutorial 1 Outline Introduction and Current Status General tools and tasks CASA in use! CASA

More information

Calibration with CASA

Calibration with CASA Calibration with CASA Philippe Salomé LERMA, Observatoire de Paris Credits: (Frédéric Gueth, George Moellenbrock, Wouter Vlemmings) Calibration On-line Source of possible problems that may need flagging

More information

Introduction to Imaging in CASA

Introduction to Imaging in CASA Introduction to Imaging in CASA Mark Rawlings, Juergen Ott (NRAO) Atacama Large Millimeter/submillimeter Array Expanded Very Large Array Robert C. Byrd Green Bank Telescope Very Long Baseline Array Overview

More information

Archive data weblog and QA2 report. Obtaining information of the observation and calibration of ALMA Archive data

Archive data weblog and QA2 report. Obtaining information of the observation and calibration of ALMA Archive data Archive data weblog and QA2 report Obtaining information of the observation and calibration of ALMA Archive data Purpose of ALMA weblog/qa2 report Information about the observation: weather, antenna configuration,

More information

When, why and how to self-cal Nathan Brunetti, Crystal Brogan, Amanda Kepley

When, why and how to self-cal Nathan Brunetti, Crystal Brogan, Amanda Kepley When, why and how to self-cal Nathan Brunetti, Crystal Brogan, Amanda Kepley Atacama Large Millimeter/submillimeter Array Expanded Very Large Array Robert C. Byrd Green Bank Telescope Very Long Baseline

More information

The performance of wvrgcal The 4 quasar, band 6 experiment, uid A002 X X4cd.ms

The performance of wvrgcal The 4 quasar, band 6 experiment, uid A002 X X4cd.ms The performance of wvrgcal The 4 quasar, band 6 experiment, uid A002 X219601 X4cd.ms Marcel Clemens, Astrophysics Group, Cavendish Laboratory, University of Cambridge, UK 18/9/2011 Summary This document

More information

Self-calibration. Elisabetta Liuzzo Rosita Paladino

Self-calibration. Elisabetta Liuzzo Rosita Paladino Elisabetta Liuzzo Rosita Paladino Why self-calibration works When it is possible to self-calibrate in practice Calibration using external calibrators in not perfect interpolated from different time, different

More information

2010 PASEO Meeting. CASA: Common Astronomy Software Applications. July 15-16, 2010 Socorro, NM. Steven T. Myers (EVLA CASA Subsystem Scientist)

2010 PASEO Meeting. CASA: Common Astronomy Software Applications. July 15-16, 2010 Socorro, NM. Steven T. Myers (EVLA CASA Subsystem Scientist) 2010 PASEO Meeting July 15-16, 2010 Socorro, NM CASA: Common Astronomy Software Applications Steven T. Myers (EVLA CASA Subsystem Scientist) Atacama Large Millimeter/submillimeter Array Expanded Very Large

More information

Advanced Calibration Topics - II

Advanced Calibration Topics - II Advanced Calibration Topics - II Crystal Brogan (NRAO) Sixteenth Synthesis Imaging Workshop 16-23 May 2018 Effect of Atmosphere on Phase 2 Mean Effect of Atmosphere on Phase Since the refractive index

More information

Imaging and Calibration Algorithms for EVLA, e-merlin and ALMA. Robert Laing ESO

Imaging and Calibration Algorithms for EVLA, e-merlin and ALMA. Robert Laing ESO Imaging and Calibration Algorithms for EVLA, e-merlin and ALMA Socorro, April 3 2008 Workshop details Oxford, 2008 Dec 1-3 Sponsored by Radionet and the University of Oxford 56 participants http://astrowiki.physics.ox.ac.uk/cgi-bin/twiki/view/algorithms2008/webhome

More information

Reduction with CASA. Kana Sugimoto, Erik Muller, and ALMA-J computing & EA-ARC science team (NAOJ)

Reduction with CASA. Kana Sugimoto, Erik Muller, and ALMA-J computing & EA-ARC science team (NAOJ) Single ge Dish Data a Reduction with CASA Kana Sugimoto, Erik Muller, and ALMA-J computing & EA-ARC science team (NAOJ) How to reduce and analyze observation data from single dish radio telescopes by CASA

More information

Introduction to CASA

Introduction to CASA Introduction to CASA Anita Richards UK ALMA Regional Centre JBCA, University of Manchester With thanks to Danielle Fenech, Dirk Petry, James Miller-Jones and the rest of the JBCA, RadioNet, ESO and NRAO

More information

Observing Modes and Real Time Processing

Observing Modes and Real Time Processing 2010-11-30 Observing with ALMA 1, Observing Modes and Real Time Processing R. Lucas November 30, 2010 Outline 2010-11-30 Observing with ALMA 2, Observing Modes Interferometry Modes Interferometry Calibrations

More information

Special Topics: AIPS. 24 February 2012 Socorro, NM USA. Eric Greisen. Robert C. Byrd Green Bank Telescope

Special Topics: AIPS. 24 February 2012 Socorro, NM USA. Eric Greisen. Robert C. Byrd Green Bank Telescope Special Topics: AIPS 4 February 01 Socorro, NM USA Eric Greisen Atacama Large Millimeter/submillimeter Array Expanded Very Large Array Robert C. Byrd Green Bank Telescope Very Long Baseline Array Outline

More information

Wide-Band Imaging. Outline : CASS Radio Astronomy School Sept 2012 Narrabri, NSW, Australia. - What is wideband imaging?

Wide-Band Imaging. Outline : CASS Radio Astronomy School Sept 2012 Narrabri, NSW, Australia. - What is wideband imaging? Wide-Band Imaging 24-28 Sept 2012 Narrabri, NSW, Australia Outline : - What is wideband imaging? - Two Algorithms Urvashi Rau - Many Examples National Radio Astronomy Observatory Socorro, NM, USA 1/32

More information

EVLA Memo 146 RFI Mitigation in AIPS. The New Task UVRFI

EVLA Memo 146 RFI Mitigation in AIPS. The New Task UVRFI EVLA Memo 1 RFI Mitigation in AIPS. The New Task UVRFI L. Kogan, F. Owen 1 (1) - National Radio Astronomy Observatory, Socorro, New Mexico, USA June, 1 Abstract Recently Ramana Athrea published a new algorithm

More information

PdBI data calibration. Vincent Pie tu IRAM Grenoble

PdBI data calibration. Vincent Pie tu IRAM Grenoble PdBI data calibration Vincent Pie tu IRAM Grenoble IRAM mm-interferometry School 2008 1 Data processing strategy 2 Data processing strategy Begins with proposal/setup preparation. Depends on the scientific

More information

Recent progress in EVLA-specific algorithms. EVLA Advisory Committee Meeting, March 19-20, S. Bhatnagar and U. Rau

Recent progress in EVLA-specific algorithms. EVLA Advisory Committee Meeting, March 19-20, S. Bhatnagar and U. Rau Recent progress in EVLA-specific algorithms EVLA Advisory Committee Meeting, March 19-20, 2009 S. Bhatnagar and U. Rau Imaging issues Full beam, full bandwidth, full Stokes noise limited imaging Algorithmic

More information

Recent imaging results with wide-band EVLA data, and lessons learnt so far

Recent imaging results with wide-band EVLA data, and lessons learnt so far Recent imaging results with wide-band EVLA data, and lessons learnt so far Urvashi Rau National Radio Astronomy Observatory (USA) 26 Jul 2011 (1) Introduction : Imaging wideband data (2) Wideband Imaging

More information

Planning ALMA Observations

Planning ALMA Observations Planning Observations Atacama Large mm/sub-mm Array Mark Lacy North American Science Center Atacama Large Millimeter/submillimeter Array Expanded Very Large Array Robert C. Byrd Green Bank Telescope Very

More information

arxiv: v1 [astro-ph.im] 23 Sep 2013

arxiv: v1 [astro-ph.im] 23 Sep 2013 CADRE: The CArma Data REduction pipeline D. N. Friedel a arxiv:1309.5844v1 [astro-ph.im] 23 Sep 2013 a University of Illinois, Department of Astronomy, 1002 W. Green St., Urbana, IL 61801 Abstract The

More information

Calibration in practice. Vincent Piétu (IRAM)

Calibration in practice. Vincent Piétu (IRAM) Calibration in practice Vincent Piétu (IRAM) Outline I. The Plateau de Bure interferometer II. On-line calibrations III. CLIC IV. Off-line calibrations Foreword An automated data reduction pipeline exists

More information

Wide Bandwidth Imaging

Wide Bandwidth Imaging Wide Bandwidth Imaging 14th NRAO Synthesis Imaging Workshop 13 20 May, 2014, Socorro, NM Urvashi Rau National Radio Astronomy Observatory 1 Why do we need wide bandwidths? Broad-band receivers => Increased

More information

LOFAR: From raw visibilities to calibrated data

LOFAR: From raw visibilities to calibrated data Netherlands Institute for Radio Astronomy LOFAR: From raw visibilities to calibrated data John McKean (ASTRON) [subbing in for Manu] ASTRON is part of the Netherlands Organisation for Scientific Research

More information

EVLA Memo #205. VLA polarization calibration: RL phase stability

EVLA Memo #205. VLA polarization calibration: RL phase stability EVLA Memo #205 VLA polarization calibration: RL phase stability Frank K. Schinzel (NRAO) May 2, 2018 Contents 1 Context........................................ 2 2 Verification of Calibration - Pointed

More information

Radio Data Archives. how to find, retrieve, and image radio data: a lay-person s primer. Michael P Rupen (NRAO)

Radio Data Archives. how to find, retrieve, and image radio data: a lay-person s primer. Michael P Rupen (NRAO) Radio Data Archives how to find, retrieve, and image radio data: a lay-person s primer Michael P Rupen (NRAO) By the end of this talk, you should know: The standard radio imaging surveys that provide FITS

More information

Self-calibration Overview and line-continuum case study

Self-calibration Overview and line-continuum case study Self-calibration Overview and line-continuum case study Anita M.S. Richards, UK ARC Node, Manchester, with thanks to Fomalont, Muxlow, Laing, ALMA, e-merlin, DARA teams & 'Synthesis Imaging 'Principles'

More information

Wide-field, wide-band and multi-scale imaging - II

Wide-field, wide-band and multi-scale imaging - II Wide-field, wide-band and multi-scale imaging - II Radio Astronomy School 2017 National Centre for Radio Astrophysics / TIFR Pune, India 28 Aug 8 Sept, 2017 Urvashi Rau National Radio Astronomy Observatory,

More information

Mosaicking. Brian Mason (NRAO) Sixteenth Synthesis Imaging Workshop May 2018

Mosaicking. Brian Mason (NRAO) Sixteenth Synthesis Imaging Workshop May 2018 Mosaicking Brian Mason (NRAO) Sixteenth Synthesis Imaging Workshop 16-23 May 2018 The simplest observing scenario for an interferometer: Source at known location Size

More information

Plan for Imaging Algorithm Research and Development

Plan for Imaging Algorithm Research and Development Plan for Imaging Algorithm Research and Development S. Bhatnagar July 05, 2009 Abstract Many scientific deliverables of the next generation radio telescopes require wide-field imaging or high dynamic range

More information

Spectral Line II: Calibration and Analysis. Spectral Bandpass: Bandpass Calibration (cont d) Bandpass Calibration. Bandpass Calibration

Spectral Line II: Calibration and Analysis. Spectral Bandpass: Bandpass Calibration (cont d) Bandpass Calibration. Bandpass Calibration Spectral Line II: Calibration and Analysis Bandpass Calibration Flagging Continuum Subtraction Imaging Visualization Analysis Spectral Bandpass: Spectral frequency response of antenna to a spectrally flat

More information

How small can you get? reducing data volume, retaining good imaging

How small can you get? reducing data volume, retaining good imaging How small can you get? reducing data volume, retaining good imaging Anita Richards UK ALMA Regional Centre Jodrell Bank Centre for Astrophysics University of Manchester thanks to Crystal Brogan and all

More information

The ALMA TelCal subsystem. Dominique Broguière, Institut de RadioAstronomie Millimétrique (IRAM) Casa Developers meeting - 12/05/2010

The ALMA TelCal subsystem. Dominique Broguière, Institut de RadioAstronomie Millimétrique (IRAM) Casa Developers meeting - 12/05/2010 The ALMA TelCal subsystem Dominique Broguière, Institut de RadioAstronomie Millimétrique (IRAM) Casa Developers meeting - 12/05/2010 Introduction TELCAL is the on-line calibration software for the ALMA

More information

Task Progress Milestone Summary. Page 1

Task Progress Milestone Summary. Page 1 1 ANTENNA RETROFITS 11/4/08 8/9/10 3 21 antennas retrofitted 4/13/09 4/13/09 4 24 antennas retrofitted 11/5/09 11/5/09 5 Last antenna retrofitted 8/9/10 8/9/10 6 WIDE-BAND RECEIVERS 2/4/08 10/15/12 7 L-Band

More information

Planning (VLA) observations

Planning (VLA) observations Planning () observations 14 th Synthesis Imaging Workshop (May 2014) Loránt Sjouwerman National Radio Astronomy Observatory (Socorro, NM) Atacama Large Millimeter/submillimeter Array Karl G. Jansky Very

More information

Introduction to Radio Interferometry Sabrina Stierwalt Alison Peck, Jim Braatz, Ashley Bemis

Introduction to Radio Interferometry Sabrina Stierwalt Alison Peck, Jim Braatz, Ashley Bemis Introduction to Radio Interferometry Sabrina Stierwalt Alison Peck, Jim Braatz, Ashley Bemis Atacama Large Millimeter/submillimeter Array Expanded Very Large Array Robert C. Byrd Green Bank Telescope Very

More information

Sideband Smear: Sideband Separation with the ALMA 2SB and DSB Total Power Receivers

Sideband Smear: Sideband Separation with the ALMA 2SB and DSB Total Power Receivers and DSB Total Power Receivers SCI-00.00.00.00-001-A-PLA Version: A 2007-06-11 Prepared By: Organization Date Anthony J. Remijan NRAO A. Wootten T. Hunter J.M. Payne D.T. Emerson P.R. Jewell R.N. Martin

More information

Constant Offset in Cross-Polarized HERA IDR2.1 Data

Constant Offset in Cross-Polarized HERA IDR2.1 Data Constant Offset in Cross-Polarized HERA IDR2.1 Data Katherine Elder, CHAMP ASU, 08/16/18 This memo gives an overview of the project I worked on this summer with the CAMPARE/CHAMP summer internship program

More information

Data inspection and editing (Flagging, demixing & averaging)

Data inspection and editing (Flagging, demixing & averaging) Netherlands Institute for Radio Astronomy Data inspection and editing (Flagging, demixing & averaging) Tammo Jan Dijkema LOFAR Data Processing School, 18 September 2018 ASTRON is part of the Netherlands

More information

Time and Frequency Distribution Overview and Issues Rob Selina

Time and Frequency Distribution Overview and Issues Rob Selina Time and Frequency Distribution Overview and Issues Rob Selina Atacama Large Millimeter/submillimeter Array Karl G. Jansky Very Large Array Robert C. Byrd Green Bank Telescope Very Long Baseline Array

More information

EVLA Memo #166 Comparison of the Performance of the 3-bit and 8-bit Samplers at C (4 8 GHz), X (8 12 GHz) and Ku (12 18 GHz) Bands

EVLA Memo #166 Comparison of the Performance of the 3-bit and 8-bit Samplers at C (4 8 GHz), X (8 12 GHz) and Ku (12 18 GHz) Bands EVLA Memo #166 Comparison of the Performance of the 3-bit and 8-bit Samplers at C (4 8 GHz), X (8 12 GHz) and Ku (12 18 GHz) Bands E. Momjian and R. Perley NRAO March 27, 2013 Abstract We present sensitivity

More information

Why? When? How What to do What to worry about

Why? When? How What to do What to worry about Tom Muxlow Data Combination Why? When? How What to do What to worry about Combination imaging or separate imaging??..using (e-)merlin (e-)merlin covers a unique range of telescope separations, intermediate

More information

Components of Imaging at Low Frequencies: Status & Challenges

Components of Imaging at Low Frequencies: Status & Challenges Components of Imaging at Low Frequencies: Status & Challenges Dec. 12th 2013 S. Bhatnagar NRAO Collaborators: T.J. Cornwell, R. Nityananda, K. Golap, U. Rau J. Uson, R. Perley, F. Owen Telescope sensitivity

More information

Evolution of the Capabilities of the ALMA Array

Evolution of the Capabilities of the ALMA Array Evolution of the Capabilities of the ALMA Array This note provides an outline of how we plan to build up the scientific capabilities of the array from the start of Early Science through to Full Operations.

More information

VLBI Post-Correlation Analysis and Fringe-Fitting

VLBI Post-Correlation Analysis and Fringe-Fitting VLBI Post-Correlation Analysis and Fringe-Fitting Michael Bietenholz With (many) Slides from George Moellenbroek and Craig Walker NRAO Calibration is important! What Is Delivered by a Synthesis Array?

More information

A.J. Kemball (NRAO) April 2, Introduction 2. 2 Holography support Single-dish holography Interferometric holography...

A.J. Kemball (NRAO) April 2, Introduction 2. 2 Holography support Single-dish holography Interferometric holography... Holography support in AIPS++ DRAFT V1.0 A.J. Kemball (NRAO) April 2, 1999 Contents 1 Introduction 2 2 Holography support 2 2.1 Single-dish holography... 2 2.2 Interferometric holography... 2 3 Data reduction

More information

Introduction to Radio Interferometry Anand Crossley Alison Peck, Jim Braatz, Ashley Bemis (NRAO)

Introduction to Radio Interferometry Anand Crossley Alison Peck, Jim Braatz, Ashley Bemis (NRAO) Introduction to Radio Interferometry Anand Crossley Alison Peck, Jim Braatz, Ashley Bemis (NRAO) Atacama Large Millimeter/submillimeter Array Expanded Very Large Array Robert C. Byrd Green Bank Telescope

More information

GBT Spectral-Line Data Reduction and Tutorials. David Frayer (Green Bank Observatory)

GBT Spectral-Line Data Reduction and Tutorials. David Frayer (Green Bank Observatory) GBT Spectral-Line Data Reduction and Tutorials David Frayer (Green Bank Observatory) www.gb.nrao.edu/cde2017 Click to login into Green Bank GBO startkde on Processing Machine ssh planck startkde Public

More information

VLA Lowband. Frazer Owen

VLA Lowband. Frazer Owen VLA Lowband Atacama Large Millimeter/submillimeter Array Expanded Very Large Array Robert C. Byrd Green Bank Telescope Very Long Baseline Array What is VLA Lowband? 54-86 MHz + 230-470 MHz: Two uncooled

More information

Calibration. (in Radio Astronomy) Ishwara Chandra CH NCRA-TIFR. Acknowledgments:

Calibration. (in Radio Astronomy) Ishwara Chandra CH NCRA-TIFR. Acknowledgments: Calibration (in Radio Astronomy) Ishwara Chandra CH NCRA-TIFR Acknowledgments: Synthesis Imaging in Radio Astronomy II: Chapter 5 Low Frequency Radio Astronomy (blue book): Chapter 5 Calibration and Advanced

More information

Technical Considerations: Nuts and Bolts Project Planning and Technical Justification

Technical Considerations: Nuts and Bolts Project Planning and Technical Justification Technical Considerations: Nuts and Bolts Project Planning and Technical Justification Atacama Large Millimeter/submillimeter Array Expanded Very Large Array Robert C. Byrd Green Bank Telescope Very Long

More information

ESO/ALBiUS activities in ALMA imaging with CASA

ESO/ALBiUS activities in ALMA imaging with CASA ESO/ALBiUS activities in ALMA imaging with CASA Dirk Petry (ESO), August 2010 Outline ALMA Overview ALMA CALIM challenges CASA status Ongoing work at ESO 1 ALMA Overview The Atacama Large Mm/sub-mm Array

More information

JCMT HETERODYNE DR FROM DATA TO SCIENCE

JCMT HETERODYNE DR FROM DATA TO SCIENCE JCMT HETERODYNE DR FROM DATA TO SCIENCE https://proposals.eaobservatory.org/ JCMT HETERODYNE - SHANGHAI WORKSHOP OCTOBER 2016 JCMT HETERODYNE INSTRUMENTATION www.eaobservatory.org/jcmt/science/reductionanalysis-tutorials/

More information

Large-field imaging. Frédéric Gueth, IRAM Grenoble. 7th IRAM Millimeter Interferometry School 4 8 October 2010

Large-field imaging. Frédéric Gueth, IRAM Grenoble. 7th IRAM Millimeter Interferometry School 4 8 October 2010 Large-field imaging Frédéric Gueth, IRAM Grenoble 7th IRAM Millimeter Interferometry School 4 8 October 2010 Large-field imaging The problems The field of view is limited by the antenna primary beam width

More information

ParselTongue. Mark Kettenis, JIVE. December 3, 2008

ParselTongue. Mark Kettenis, JIVE. December 3, 2008 ParselTongue Mark Kettenis, JIVE December 3, 2008 ParselTongue Software infrastructure for the ALBUS project (a RadioNet JRA) to develop and implement new calibration algorithms to implement pipelines

More information

Spectral Line Observing

Spectral Line Observing Spectral Line Observing Ylva Pihlström, UNM Eleventh Synthesis Imaging Workshop Socorro, June 10-17, 2008 Introduction 2 Spectral line observers use many channels of width δν, over a total bandwidth Δν.

More information

Parameterized Deconvolution for Wide-Band Radio Synthesis Imaging

Parameterized Deconvolution for Wide-Band Radio Synthesis Imaging Parameterized Deconvolution for Wide-Band Radio Synthesis Imaging Urvashi Rao Venkata Ph.D. Thesis Defense Department of Physics, New Mexico Institute of Mining and Technology 17 May 2010 Advisors / Committee

More information

LOFAR DATA SCHOOL 2016

LOFAR DATA SCHOOL 2016 LOFAR DATA SCHOOL 2016 Tied Array Imaging (II), with contributions from: RRL group Scintillation (R. Fallows) Pulsar Working Group Radio Observatory Outline Tools Calibration (Cyg A imaging) Beams Scientific

More information

Filter1D Time Series Analysis Tool

Filter1D Time Series Analysis Tool Filter1D Time Series Analysis Tool Introduction Preprocessing and quality control of input time series for surface water flow and sediment transport numerical models are key steps in setting up the simulations

More information

ALMA Memo #289 Atmospheric Noise in Single Dish Observations Melvyn Wright Radio Astronomy Laboratory, University of California, Berkeley 29 February

ALMA Memo #289 Atmospheric Noise in Single Dish Observations Melvyn Wright Radio Astronomy Laboratory, University of California, Berkeley 29 February ALMA Memo #289 Atmospheric Noise in Single Dish Observations Melvyn Wright Radio Astronomy Laboratory, University of California, Berkeley 29 February 2000 Abstract Atmospheric noise and pointing fluctuations

More information

Wide-band Wide-field Imaging

Wide-band Wide-field Imaging Wide-band Wide-field Imaging Colloquium, Socorro, Feb. 11th 2011 S. Bhatnagar K. Golap, U. Rau, J. Robnett NRAO Algorithms R&D Group activities R&D for new post-processing algorithms required for wideband

More information

Spectral Line Imaging

Spectral Line Imaging ATNF Synthesis School 2003 Spectral Line Imaging Juergen Ott (ATNF) Juergen.Ott@csiro.au Topics Introduction to Spectral Lines Velocity Reference Frames Bandpass Calibration Continuum Subtraction Gibbs

More information

Performance of H Maser During the EOC Week 29 July to 03 August

Performance of H Maser During the EOC Week 29 July to 03 August Performance of H Maser During the EOC Week 29 July to 03 August ALMA Technical Note Number: 6 Status: FINAL Prepared by: Organization: Date: Anthony Remijan (EOC Program Scientist for Extension and Optimization

More information

Next Generation Very Large Array Memo No. 47 Resolution and Sensitivity of ngvla-revb. C.L. Carilli (NRAO)

Next Generation Very Large Array Memo No. 47 Resolution and Sensitivity of ngvla-revb. C.L. Carilli (NRAO) Next Generation Very Large Array Memo No. 47 Resolution and Sensitivity of ngvla-revb C.L. Carilli (NRAO) Abstract I investigate the noise performance vs. resolution for the new ngvlarevb configuration.

More information

Spectral Line Calibration Techniques with Single Dish Telescopes. K. O Neil NRAO - GB

Spectral Line Calibration Techniques with Single Dish Telescopes. K. O Neil NRAO - GB Spectral Line Calibration Techniques with Single Dish Telescopes K. O Neil NRAO - GB Determining the Source Temperature Determining T source T A,meas (,az,za) = T src (,az,za) + T system Determining T

More information

To receive future CASA News issues, be sure to subscribe by visiting the CASA Announcements list

To receive future CASA News issues, be sure to subscribe by visiting the CASA Announcements list CASA News Issue 1 6 2015 Letter from the Lead Jeffrey Kern It is my pleasure to welcome you to the first edition of the Common Astronomy Software Applications (CASA) Newsletter. This semi-annual publication

More information

EVLA Science Operations: the Array Science Center. Claire Chandler NRAO/Socorro

EVLA Science Operations: the Array Science Center. Claire Chandler NRAO/Socorro EVLA Science Operations: the Array Science Center Claire Chandler NRAO/Socorro SAGE meeting Socorro, May 22-23, 2007 The need for an Array Science Center 2 The VLA/VLBA currently supply users with raw

More information

The Basics of Radio Interferometry. Frédéric Boone LERMA, Observatoire de Paris

The Basics of Radio Interferometry. Frédéric Boone LERMA, Observatoire de Paris The Basics of Radio Interferometry LERMA, Observatoire de Paris The Basics of Radio Interferometry The role of interferometry in astronomy = role of venetian blinds in Film Noir 2 The Basics of Radio Interferometry

More information

Why Single Dish? Darrel Emerson NRAO Tucson. NAIC-NRAO School on Single-Dish Radio Astronomy. Green Bank, August 2003.

Why Single Dish? Darrel Emerson NRAO Tucson. NAIC-NRAO School on Single-Dish Radio Astronomy. Green Bank, August 2003. Why Single Dish? Darrel Emerson NRAO Tucson NAIC-NRAO School on Single-Dish Radio Astronomy. Green Bank, August 2003. Why Single Dish? What's the Alternative? Comparisons between Single-Dish, Phased Array

More information

Next Generation Very Large Array Memo No. 16 More on Synthesized Beams and Sensitivity. C.L. Carilli, NRAO, PO Box O, Socorro, NM

Next Generation Very Large Array Memo No. 16 More on Synthesized Beams and Sensitivity. C.L. Carilli, NRAO, PO Box O, Socorro, NM Next Generation Very Large Array Memo No. 16 More on Synthesized Beams and Sensitivity C.L. Carilli, NRAO, PO Box O, Socorro, NM Abstract I present further calculations on synthesized beams and sensitivities

More information

EVLA System Commissioning Results

EVLA System Commissioning Results EVLA System Commissioning Results EVLA Advisory Committee Meeting, March 19-20, 2009 Rick Perley EVLA Project Scientist t 1 Project Requirements EVLA Project Book, Chapter 2, contains the EVLA Project

More information

EVLA and LWA Imaging Challenges

EVLA and LWA Imaging Challenges EVLA and LWA Imaging Challenges Steven T. Myers IGPP, Los Alamos National Laboratory and National Radio Astronomy Observatory, Socorro, NM 1 EVLA key issues 2 Key algorithmic issues ambitious goals / hard

More information

Imaging Simulations with CARMA-23

Imaging Simulations with CARMA-23 BIMA memo 101 - July 2004 Imaging Simulations with CARMA-23 M. C. H. Wright Radio Astronomy laboratory, University of California, Berkeley, CA, 94720 ABSTRACT We simulated imaging for the 23-antenna CARMA

More information

LOFAR: Special Issues

LOFAR: Special Issues Netherlands Institute for Radio Astronomy LOFAR: Special Issues John McKean (ASTRON) ASTRON is part of the Netherlands Organisation for Scientific Research (NWO) 1 Preamble http://www.astron.nl/~mckean/eris-2011-2.pdf

More information

MIRIAD Users Guide for SMA

MIRIAD Users Guide for SMA MIRIAD Users Guide for SMA Jun-Hui Zhao July 9, 2012 iriad-for-sma> i

More information

High Fidelity Imaging of Extended Sources. Rick Perley NRAO Socorro, NM

High Fidelity Imaging of Extended Sources. Rick Perley NRAO Socorro, NM High Fidelity Imaging of Extended Sources Rick Perley NRAO Socorro, NM A Brief History of Calibration (VLA) An Amazing Fact: The VLA was proposed, and funded, without any real concept of how to calibrate

More information

LOFAR update: long baselines and other random topics

LOFAR update: long baselines and other random topics LOFAR update: long baselines and other random topics AIfA/MPIfR lunch colloquium Olaf Wucknitz wucknitz@astro.uni-bonn.de Bonn, 6th April 20 LOFAR update: long baselines and other random topics LOFAR previous

More information

EVLA Scientific Commissioning and Antenna Performance Test Check List

EVLA Scientific Commissioning and Antenna Performance Test Check List EVLA Scientific Commissioning and Antenna Performance Test Check List C. J. Chandler, C. L. Carilli, R. Perley, October 17, 2005 The following requirements come from Chapter 2 of the EVLA Project Book.

More information

EVLA Memo # 194 EVLA Ka-band Receiver Down Converter Module Harmonics: The Mega-Birdie at MHz

EVLA Memo # 194 EVLA Ka-band Receiver Down Converter Module Harmonics: The Mega-Birdie at MHz EVLA Memo # 194 EVLA Ka-band Receiver Down Converter Module Harmonics: The Mega-Birdie at 29440 MHz R. Selina, E. Momjian, W. Grammer, J. Jackson NRAO February 5, 2016 Abstract Observations carried out

More information

Software Tools for NICMOS

Software Tools for NICMOS 1997 HST Calibration Workshop Space Telescope Science Institute, 1997 S. Casertano, et al., eds. Software Tools for NICMOS E.Stobie,D.Lytle,A.Ferro,I.Barg Steward Observatory NICMOS Project, University

More information

Pointing Calibration Steps

Pointing Calibration Steps ALMA-90.03.00.00-00x-A-SPE 2007 08 02 Specification Document Jeff Mangum & Robert The Man Lucas Page 2 Change Record Revision Date Author Section/ Remarks Page affected 1 2003-10-10 Jeff Mangum All Initial

More information

Computing IPT. B.E. Glendenning (NRAO) J. Ibsen (JAO) G. Kosugi (NAOJ) G. Raffi (ESO) Computing IPT ALMA Annual External Review October

Computing IPT. B.E. Glendenning (NRAO) J. Ibsen (JAO) G. Kosugi (NAOJ) G. Raffi (ESO) Computing IPT ALMA Annual External Review October Computing IPT B.E. Glendenning (NRAO) J. Ibsen (JAO) G. Kosugi (NAOJ) G. Raffi (ESO) Computing IPT ALMA Annual External Review 25-28 October 2010 1 Outline Overall Status Software Development Organization

More information

Basic Calibration. Al Wootten. Thanks to Moellenbrock, Marrone, Braatz 1. Basic Calibration

Basic Calibration. Al Wootten. Thanks to Moellenbrock, Marrone, Braatz 1. Basic Calibration Basic Calibration Al Wootten Thanks to Moellenbrock, Marrone, Braatz 1 Basic Calibration Outline Sketch of a typical observation Short discussion of formalism Types of calibration A priori A posteriori

More information

The 4mm (68-92 GHz) Receiver

The 4mm (68-92 GHz) Receiver Chapter 18 The 4mm (68-92 GHz) Receiver 18.1 Overview The 4 mm receiver ( W-band ) is a dual-beam, dual-polarization receiver which covers the frequency range of approximately 67-93 GHz. The performance

More information

Spectral Line Observing. Astro 423, Spring 2017

Spectral Line Observing. Astro 423, Spring 2017 Spectral Line Observing Astro 423, Spring 2017 Announcements 2 Seminar tomorrow Mark Gorski on VLA observations of Water and Methanol masers Outline 3 Rotation Curves Editing and Flagging Bandpass Calibration

More information

Introduction to Radio Astronomy!

Introduction to Radio Astronomy! Introduction to Radio Astronomy! Sources of radio emission! Radio telescopes - collecting the radiation! Processing the radio signal! Radio telescope characteristics! Observing radio sources Sources of

More information

EVLA Memo 151 EVLA Antenna Polarization at L, S, C, and X Bands

EVLA Memo 151 EVLA Antenna Polarization at L, S, C, and X Bands EVLA Memo 11 EVLA Antenna Polarization at L, S, C, and X Bands Rick Perley and Bob Hayward April 28, 211 Abstract The method described in EVLA Memo #131 for determining absolute antenna cross-polarization

More information

Radio Astronomy: SKA-Era Interferometry and Other Challenges. Dr Jasper Horrell, SKA SA (and Dr Oleg Smirnov, Rhodes and SKA SA)

Radio Astronomy: SKA-Era Interferometry and Other Challenges. Dr Jasper Horrell, SKA SA (and Dr Oleg Smirnov, Rhodes and SKA SA) Radio Astronomy: SKA-Era Interferometry and Other Challenges Dr Jasper Horrell, SKA SA (and Dr Oleg Smirnov, Rhodes and SKA SA) ASSA Symposium, Cape Town, Oct 2012 Scope SKA antenna types Single dishes

More information

Fundamentals of Interferometry

Fundamentals of Interferometry Fundamentals of Interferometry ERIS, Rimini, Sept 5-9 2011 Outline What is an interferometer? Basic theory Interlude: Fourier transforms for birdwatchers Review of assumptions and complications Interferometers

More information

Correlator Development at Haystack. Roger Cappallo Haystack-NRAO Technical Mtg

Correlator Development at Haystack. Roger Cappallo Haystack-NRAO Technical Mtg Correlator Development at Haystack Roger Cappallo Haystack-NRAO Technical Mtg. 2006.10.26 History of Correlator Development at Haystack ~1973 Mk I 360 Kb/s x 2 stns. 1981 Mk III 112 Mb/s x 4 stns. 1986

More information

GPU based imager for radio astronomy

GPU based imager for radio astronomy GPU based imager for radio astronomy GTC2014, San Jose, March 27th 2014 S. Bhatnagar, P. K. Gupta, M. Clark, National Radio Astronomy Observatory, NM, USA NVIDIA-India, Pune NVIDIA-US, CA Introduction

More information

Atacama Large Millimeter Array Project Status. M. Tarenghi ALMA Director

Atacama Large Millimeter Array Project Status. M. Tarenghi ALMA Director Atacama Large Millimeter Array Project Status M. Tarenghi ALMA Director Atacama Large Millimeter Array Specifications Partners: US (NSF)+Canada (NRC) - ESO+Spain - Chile 64 12-m antennas, at 5000 m altitude

More information