SAGECal
Fast, memory efficient and GPU accelerated radio interferometric calibration program
Cite this software
Description
SAGECAL
Features
- Levenberg-Marquardt, (stochastic) LBFGS, Riemannian Trust Region, Nesterov's accelerated gradient descent algorithms
- GPU acceleration using CUDA
- Fast and accurate interferometric calibration
- Gaussian and Student's t noise models
- Shapelet source models
- CASA MS data format supported
- Distributed calibration using MPI - consensus optimization with data multiplexing
- Tools to build sky models and restore sky models to images
- Adaptive update of ADMM penalty (Barzilai-Borwein a.k.a. Spectral method)
- Bandpass calibration and unprecedented RFI mitigation with stochastic LBFGS
- Stochastic calibration for handling data at highest resolution (with federated averaging and consensus optimization)
- Spectral and spatial regularization of calibration solutions
- Large scale diffuse sky models via shapelet decomposition
- Lunar frame interferometric simulation via the SPICE toolkit
Please read INSTALL.md for installation instructions, but 'cmake' should work in most cases. We give a brief guide to use SAGECal here but there is extensive documentation in the links at the end.
Contributing
Read the contributing guide
Code documentation
Code documentation can be found here.
Step by Step Introduction:
1) Input Data
Input to sagecal must be in CASA MS format, make sure to create a column in the MS to write output data as well. The data can be in raw or averaged form, also initial calibration using other software can be also applied.
2) Sky Model:
2a) Make an image of your MS (using ExCon/casapy).
Use Duchamp to create a mask for the image. Use buildsky to create a sky model. (see the README file on top level directory). Also create a proper cluster file. Special options to buildsky: -o 1 (NOTE: not -o 2)
Alternatively, create these files by hand according to the following formats.
2b) Cluster file format:
cluster_id chunk_size source1 source2 ... e.g.
0 1 P0C1 P0C2
2 3 P11C2 P11C1 P13C1
Note: putting -ve values for cluster_id will not subtract them from data. chunk_size: find hybrid solutions during one solve run. Eg. if -t 120 is used to select 120 timeslots, cluster 0 will find a solution using the full 120 timeslots while cluster 2 will solve for every 120/3=40 timeslots.
2c) Sky model format:
#name h m s d m s I Q U V spectral_index RM extent_X(rad) extent_Y(rad) pos_angle(rad) freq0
or
#name h m s d m s I Q U V spectral_index1 spectral_index2 spectral_index3 RM extent_X(rad) extent_Y(rad) pos_angle(rad) freq0
e.g.:
P1C1 0 12 42.996 85 43 21.514 0.030498 0 0 0 -5.713060 0 0 0 0 115039062.0
P5C1 1 18 5.864 85 58 39.755 0.041839 0 0 0 -6.672879 0 0 0 0 115039062.0
#A Gaussian mjor,minor 0.1375,0.0917 deg diameter -> radius(rad), PA 43.4772 deg (-> rad)
#Position Angle: "West from North (counter-clockwise)" (0 deg = North, 90 deg = West).
#Note: PyBDSF/BBS/DP3 use "North from East (counter-clockwise)" (0 deg = East, 90 deg = North).
#Flux scaling is same for both
G0 5 34 31.75 22 00 52.86 100 0 0 0 0.00 0 0.0012 0.0008 -2.329615801 130.0e6
#A Disk radius=0.041 deg
D01 23 23 25.67 58 48 58 80 0 0 0 0 0 0.000715 0.000715 0 130e6
#A Ring radius=0.031 deg
R01 23 23 25.416 58 48 57 70 0 0 0 0 0 0.00052 0.00052 0 130e6
#A shapelet ('S3C61MD.fits.modes' file must be in the current directory)
S3C61MD 2 22 49.796414 86 18 55.913266 0.135 0 0 0 -6.6 0 1 1 0.0 115000000.0
Note: Comments starting with a '#' are allowed for both sky model and cluster files.
Note: 3rd order spectral indices are also supported, use -F 1 option in sagecal.
Note: Spectral indices use natural logarithm, exp(ln(I0) + p1 * ln(f/f0) + p2 * ln(f/f0)^2 + ..) so if you have a model with common logarithms like 10^(log(J0) + q1*log(f/f0) + q2*log(f/f0)^2 + ..) then, conversion is
ln(I0)+p1*ln(f/f0)+p2*ln(f/f0)^2+... = ln(10)*(log(J0)+q1*log(f/f0)+q2*log(f/f0))^2)+...)
=ln(10)*(ln(J0)/ln(10)+q1*ln(f/f0)/ln(10)+q2*ln(f/f0)^2/ln(10)^2+...)
so
I0=J0
p1=q1
p2=q2/ln(10)
p3=q3/ln(10)^2
...
3) Run sagecal
Optionally: Make sure your machine has (1/2 working NVIDIA GPU cards or Intel Xeon Phi MICs) to use sagecal. Recommended usage: (with GPUs)
sagecal_gpu -d my_data.MS -s my_skymodel -c my_clustering -n no.of.threads -t 60 -p my_solutions -e 3 -g 2 -l 10 -m 7 -w 1 -b 1
Replace sagecal_gpu with sagecal if you have a CPU only build.
Use your solution interval (-t 60) so that its big enough to get a decent solution and not too big to make the parameters vary too much. (about 20 minutes per solution is reasonable).
Note: It is also possible to calibrate more than one MS together. See section 4 below.
Note: To fully use GPU acceleration use -E 1 option.
Simulations:
With -a 1, only a simulation of the sky model is done.
With -a 1 and -p 'solutions_file', simulation is done with the sky model corrupted with solutions in 'solutions_file'.
With -a 1 and -p 'solutions_file' and -z 'ignore_file', simulation is done with the solutions in the 'solutions_file', but ignoring the cluster ids in the 'ignore_file'.
E.g., If you need to ignore cluster ids '-1', '10', '999', create a text file :
-1
10
999
and use it as the 'ignore_file'.
Bandpass correction using stochastic calibration with consensus:
Use -N 1 combined with options for -M,-w (see also section 4 below).
4) Distributed calibration
Use mpirun to run sagecal-mpi, (or sagecal-mpi_gpu for GPU version) for example:
mpirun -np 11 -hostfile ./machines --map-by node --cpus-per-proc 8
--mca yield_when_idle 1 -mca orte_tmpdir_base /scratch/users/sarod
/full/path/to/sagecal-mpi -f 'MS*pattern' -A 30 -P 2 -r 5
-s sky.txt -c cluster.txt -n 16 -t 1 -e 3 -g 2 -l 10 -m 7 -x 10 -F 1 -j 5
Specific options :
-np 11 : 11 processes : starts 10 workers + 1 master
./machines : will list the host names of the 11 (or fewer) nodes used ( 1st name is the master ) : normally the node where you invoke mpirun
-f 'MS*pattern' : Search MS names that match this pattern and calibrate all of them together. The total number of MS being calibrated can be higher than the actual number of slaves (multiplexing).
-A 30 : 30 ADMM iterations.
-P 2 : polynomial in frequency has 2 terms.
-Q : can change the type of polynomial used (-Q 2 gives Bernstein polynomials).
-r 5 : regularization factor is 5.0. See -G option below for regularization per direction.
-G textfile: each cluster can have a different regularization factor, instead of using -r option (and -u option) when the regularization is the same for all clusters. The text file format is as follows: each row should have the cluter_id, hybrid count (= same as in the cluster file), spectral regularization, and (optionally) spatial regularization, e.g.,
# cluster_id hybrid_factor spetral_reg spatial_reg
-1 1 5.0 3.0
2 4 1.0 2.0
...
It is also possible to only use spectral regularization, for example,
# cluster_id hybrid_factor spetral_reg
-1 1 5.0
2 4 1.0
...
Note that lines starting with '#' are comments.
-N 1: enable stochastic calibration (minibatches of data), combined with options -M, -w and -u.
-U 1: use global solution instead of local solution for residual calculation.
MPI specific options:
/scratch/users/sarod : this is where MPI stores temp files (default is probably /tmp).
--mca*: various options to tune the networking and scheduling.
Note: the number of workers (-np option) can be lower than the number of MS calibrated. The program will divide the workload among the number of available workers.
The rest of the options are similar to sagecal.
5) Spatial regularization
Spatial regularization (with distributed multi-directional calibration) enables the use of solutions along all directions in the sky as spatial regularization for calibration along each single direction. In other words, we construct a model of the systematic errors covering the full field of view (not explicitly but implicitly) and use this as an additional constraint. To turn this on, the following options are needed:
-X L2 penalty,L1 penalty,model order,FISTA iterations,update cadence : For example -X 0.01,1e-4,3,40,10 will use 0.01 as the L2 penalty and 1e-4 as the L1 penalty for solving an elastic net regression to build a spatial model. The model will have 3x3=9 spatial basis functions. The elastic net model will be found using 40 FISTA iterations. The spatial model will be updated at every 10 ADMM iterations.
-u alpha : The regularization factor for the spatial constraint while solving the consensus problem. Note that by using the -G option, you can define regularization factors for each cluster.
After each solution, images showing the spatial model (amplitude) will be created as .PPM files.
5a) Diffuse sky models in calibration
When a spatial model is enabled, it is also possible to apply the spatial model onto a model of a diffuse sky background. The diffuse sky model can have any number of shapelet components. They all should belong to one cluster (say cluster 45). With -D option, it is possible to enable the use of diffuse sky model with the spatial model, like -D 45,0.1, where 0.1 is the regularization factor used while applying the spatial model. The larger this regularization is, the more strongly the spatial model will be enforced onto the diffuse sky model.
6) Solution format
All SAGECal solutions are stored as text files. Lines starting with '#' are comments. The first non-comment line includes some general information, i.e. freq(MHz) bandwidth(MHz) time_interval(min) stations clusters effective_clusters
The remaining lines contain solutions for each cluster as a single column, the first column is just a counter.
Let's say there are K effective clusters and N directions. Then there will be K+1 columns, the first column will start from 0 and increase to 8N-1,
which can be used to count the row number. It will keep repeating this, for each time interval.
The rows 0 to 7 belong to the solutions for the 1st station. The rows 8 to 15 for the 2nd station and so on.
Each 8 rows of any given column represent the 8 values of a 2x2 Jones matrix. Lets say these are S0,S1,S2,S3,S4,S5,S6 and S7. Then the Jones matrix is [S0+j*S1, S4+j*S5; S2+j*S3, S6+j*S7] (the ';' denotes the 1st row of the 2x2 matrix).
When a cluster has a chunk size > 1, there will be more than 1 solution per given time interval. So for this cluster, there will be more than 1 column in the solution file, the exact number of columns being equal to the chunk size.
Additional Info
See a Tutorial and the LOFAR Cookbook Chapter.
Participating organisations
Reference papers
- 1.Author(s): Sarod YatawattaPublished in Monthly Notices of the Royal Astronomical Society by Oxford University Press (OUP) in 2020, page: 6071-607810.1093/mnras/staa648
- 2.Author(s): Sarod YatawattaPublished in Monthly Notices of the Royal Astronomical Society by Oxford University Press (OUP) in 2015, page: 4506-451410.1093/mnras/stv596
- 3.Author(s): S. Kazemi, S. Yatawatta, S. Zaroubi, P. Lampropoulos, A. G. de Bruyn, L. V. E. Koopmans, J. NoordamPublished in Monthly Notices of the Royal Astronomical Society by Oxford University Press (OUP) in 2011, page: 1656-166610.1111/j.1365-2966.2011.18506.x
- 1.Author(s): H. Spreeuw, S. Yatawatta, B. van Werkhoven, F. DiblenPublished by arXiv in 202010.48550/arxiv.2010.15661
- 2.Author(s): Sarod YatawattaPublished by arXiv in 201610.48550/arxiv.1605.09219
- 3.Author(s): Sarod Yatawatta, Saleem Zaroubi, Ger de Bruyn, Leon Koopmans, Jan NoordamPublished by arXiv in 200810.48550/arxiv.0810.5751
Mentions
- 1.Author(s): Ying Mei, Rodrigo Tobar, Chen Wu, Hui Deng, Shoulin Wei, Feng WangPublished in Big Data in Astronomy by Elsevier in 2020, page: 245-26910.1016/b978-0-12-819084-5.00011-0
- 2.Author(s): Emma Chapman, Vibor JelićPublished in The Cosmic 21-cm Revolution by IOP Publishing in 2019, page: 6-1-6-2910.1088/2514-3433/ab4a73ch6
- 3.Author(s): Cathryn M Trott, Jonathan PoberPublished in The Cosmic 21-cm Revolution by IOP Publishing in 2019, page: 8-1-8-2610.1088/2514-3433/ab4a73ch8
- 4.Author(s): Tammo Jan DijkemaPublished in Astrophysics and Space Science Library, Low Frequency Radio Astronomy and the LOFAR Observatory by Springer International Publishing in 2018, page: 55-6310.1007/978-3-319-23434-2_4
- 5.Author(s): Alle-Jan van der Veen, Stefan J. Wijnholds, Ahmad Mouri SardarabadiPublished in Handbook of Signal Processing Systems by Springer International Publishing in 2018, page: 311-36010.1007/978-3-319-91734-4_9
- 6.Author(s): John McKean, Ger de BruynPublished in Astrophysics and Space Science Library, Low Frequency Radio Astronomy and the LOFAR Observatory by Springer International Publishing in 2018, page: 65-9110.1007/978-3-319-23434-2_5
- 7.Author(s): Saleem ZaroubiPublished in Astrophysics and Space Science Library, The First Galaxies by Springer Berlin Heidelberg in 2012, page: 45-10110.1007/978-3-642-32362-1_2
- 1.Author(s): Sarod YatawattaPublished in 2020 28th European Signal Processing Conference (EUSIPCO) by IEEE in 2021, page: 1961-196510.23919/eusipco47968.2020.9287467
- 2.Author(s): J.N. Spreeuw, S. Yatawatta, B.J.C. van Werkhoven, F. DiblenPublished in 2020 XXXIIIrd General Assembly and Scientific Symposium of the International Union of Radio Science by IEEE in 2020, page: 1-310.23919/ursigass49373.2020.9232346
- 3.Author(s): B. Veenboer, S. Van der Tol, A. R. Offringa, J. W. Romein, T. J. DijkemaPublished in 2020 XXXIIIrd General Assembly and Scientific Symposium of the International Union of Radio Science by IEEE in 2020, page: 1-410.23919/ursigass49373.2020.9232218
- 4.Author(s): Sarod Yatawatta, Lukas De Clercq, Hanno Spreeuw, Faruk DiblenPublished in 2019 IEEE Data Science Workshop (DSW) by IEEE in 2019, page: 208-21210.1109/dsw.2019.8755567
- 5.Author(s): Sarod YatawattaPublished in 2018 IEEE 10th Sensor Array and Multichannel Signal Processing Workshop (SAM) by IEEE in 2018, page: 485-48910.1109/sam.2018.8448481
- 6.Author(s): Ahmad Mouri Sardarabadi, Aile-Jan van der Veen, Leon V. E. KoopmansPublished in 2018 26th European Signal Processing Conference (EUSIPCO) by IEEE in 2018, page: 2688-269210.23919/eusipco.2018.8553058
- 7.Author(s): Urvashi RauPublished in Optical and Infrared Interferometry and Imaging VI by SPIE in 2018, page: 3110.1117/12.2315411
- 8.Author(s): V. Ollier, M. N. El Korso, A. Ferrari, R. Boyer, P. LarzabalPublished in 2018 IEEE International Conference on Acoustics, Speech and Signal Processing (ICASSP) by IEEE in 2018, page: 3494-349810.1109/icassp.2018.8461382
- 9.Author(s): Sarod YatawattaPublished in 2018 IEEE International Conference on Acoustics, Speech and Signal Processing (ICASSP) by IEEE in 2018, page: 3489-349310.1109/icassp.2018.8462230
- 10.Author(s): V. Ollier, M. N. El Korso, A. Ferrari, R. Boyer, P. LarzabalPublished in 2018 26th European Signal Processing Conference (EUSIPCO) by IEEE in 2018, page: 2673-267710.23919/eusipco.2018.8553543
- 11.Author(s): Sarod Yatawatta, Hanno Spreeuw, Faruk DiblenPublished in 2018 IEEE 14th International Conference on e-Science (e-Science) by IEEE in 2018, page: 386-38710.1109/escience.2018.00112
- 12.Author(s): Stefan J. WijnholdsPublished in 2018 26th European Signal Processing Conference (EUSIPCO) by IEEE in 2018, page: 2663-266710.23919/eusipco.2018.8552957
- 13.Author(s): Sarod Yatawatta, Faruk Diblen, Hanno SpreeuwPublished in 2017 IEEE 7th International Workshop on Computational Advances in Multi-Sensor Adaptive Processing (CAMSAP) by IEEE in 2017, page: 1-510.1109/camsap.2017.8313135
- 14.Author(s): Thomas Antony, Michael J. GrantPublished in AIAA Atmospheric Flight Mechanics Conference by American Institute of Aeronautics and Astronautics in 201610.2514/6.2016-0275
- 15.Author(s): V. Ollier, M.N. El Korso, R. Boyer, P. Larzabal, M. PesaventoPublished in 2016 24th European Signal Processing Conference (EUSIPCO) by IEEE in 2016, page: 280-28410.1109/eusipco.2016.7760254
- 16.Author(s): Sarod YatawattaPublished in 2016 24th European Signal Processing Conference (EUSIPCO) by IEEE in 2016, page: 265-26910.1109/eusipco.2016.7760251
- 17.Author(s): Kohei Kumazaki, Sarod Yatawatta, Saleem ZaroubiPublished in 2014 XXXIth URSI General Assembly and Scientific Symposium (URSI GASS) by IEEE in 2014, page: 1-410.1109/ursigass.2014.6930036
- 18.Author(s): Sarod Yatawatta, Sanaz KazemiPublished in 2014 IEEE International Conference on Acoustics, Speech and Signal Processing (ICASSP) by IEEE in 2014, page: 5392-539610.1109/icassp.2014.6854633
- 19.Author(s): Souley Madougou, Ana Lucia Varbanescu, Rob Van NieuwpoortPublished in 2014 IEEE Intl Conf on High Performance Computing and Communications, 2014 IEEE 6th Intl Symp on Cyberspace Safety and Security, 2014 IEEE 11th Intl Conf on Embedded Software and Syst (HPCC,CSS,ICESS) by IEEE in 2014, page: 1158-116510.1109/hpcc.2014.189
- 20.Author(s): A. van Ardenne, J. G. bij de Vaate, B. Fiorelli, S. J. WijnholdsPublished in 2013
- 21.Author(s): Sarod YatawattaPublished in 2013 IEEE International Conference on Acoustics, Speech and Signal Processing by IEEE in 2013, page: 3866-387010.1109/icassp.2013.6638382
- 22.Author(s): Stefan J. Wijnholds, Wim A. van Cappellen, Jan Geralt bij de VaatePublished in 2013 IEEE Antennas and Propagation Society International Symposium (APSURSI) by IEEE in 2013, page: 2223-222410.1109/aps.2013.6711770
- 23.Author(s): Sarod YatawattaPublished in 2012 IEEE 7th Sensor Array and Multichannel Signal Processing Workshop (SAM) by IEEE in 2012, page: 525-52810.1109/sam.2012.6250556
- 24.Author(s): Sarod Yatawatta, Sanaz Kazemi, Saleem ZaroubiPublished in 2012 IEEE International Symposium on Signal Processing and Information Technology (ISSPIT) by IEEE in 2012, page: 000193-00019710.1109/isspit.2012.6621285
- 25.Author(s): O. M. Smirnov, B. S. Frank, I. P. Theron, I. Hey WoodPublished in 2012 International Conference on Electromagnetics in Advanced Applications by IEEE in 2012, page: 586-59010.1109/iceaa.2012.6328694
- 26.Author(s): S. Kazemi, S. Yatawatta, S. ZaroubiPublished in 2011 IEEE Statistical Signal Processing Workshop (SSP) by IEEE in 2011, page: 597-60010.1109/ssp.2011.5967769
- 27.Author(s): A. G. de Bruyn, M. A. Brentjens, L. V. E. Koopmans, S. Zaroubi, P. Lampropoulos, S. B. YatawattaPublished in 2011 XXXth URSI General Assembly and Scientific Symposium by IEEE in 2011, page: 1-410.1109/ursigass.2011.6051193
- 1.Author(s): Chengna Xu, Yu Shao, Tuqiao Zhang, Raziyeh Farmani, Shipeng Chu, Zhihong LongPublished in Water Research by Elsevier BV in 2026, page: 12462110.1016/j.watres.2025.124621
- 2.Author(s): S A Brackenhoff, A R Offringa, M Mevius, L V E Koopmans, J K Chege, E Ceccotti, C Höfer, L Gao, S Ghosh, F G Mertens, S MunshiPublished in Monthly Notices of the Royal Astronomical Society by Oxford University Press (OUP) in 2025, page: 3993-401010.1093/mnras/staf1206
- 3.Author(s): X. Zhang, P. Zarka, C. Viou, A. Loh, C. G. Bassa, Q. Duchene, C. Tasse, J.-M. Grießmeier, J. D. Turner, O. Ulyanov, L. V. E. Koopmans, F. Mertens, V. Zakharenko, C. Briand, B. Cecconi, R. Vermeulen, O. Konovalenko, J. N. Girard, S. CorbelPublished in 202510.1051/0004-6361/202554152
- 4.Author(s): E Ceccotti, A.R Offringa, L.V.E Koopmans, F.G Mertens, M Mevius, A Acharya, S.A Brackenhoff, B Ciardi, B.K Gehlot, R Ghara, J.K Chege, S Ghosh, C Höfer, I Hothi, I.T Iliev, J.P Mckean, S Munshi, S ZaroubiPublished in 202510.1051/0004-6361/202453106
- 5.Author(s): C. D. Nunhokee, D. Null, C. M Trott, N. Barry, Y. Qin, R. B. Wayth, J. L. B. Line, C. H. Jordan, B. Pindor, J. H. Cook, J. Bowman, A. Chokshi, J. Ducharme, K. Elder, Q. Guo, B. Hazelton, W. Hidayat, T. Ito, D. Jacobs, E. Jong, M. Kolopanis, T. Kunicki, E. Lilleskov, M. F. Morales, J. C. Pober, A. Selvaraj, R. Shi, K. Takahashi, S. J. Tingay, R. L. Webster, S. Yoshiura, Q. ZhengPublished in The Astrophysical Journal by American Astronomical Society in 2025, page: 5710.3847/1538-4357/adda45
- 6.Author(s): J.S. Kenyon, S.J. Perkins, H.L. Bester, O.M. Smirnov, C. Russeeawon, B.V. HugoPublished in Astronomy and Computing by Elsevier BV in 2025, page: 10096210.1016/j.ascom.2025.100962
- 7.Author(s): Piyanat Kittiwisit, Steven G Murray, Hugh Garsden, Philip Bull, Michael J Wilensky, Christopher Cain, Aaron R Parsons, Jackson Sipple, Tyrone Adams, James E Aguirre, Rushelle Baartman, Adam P Beardsley, Lindsay M Berkhout, Gianni Bernardi, Tashalee S Billings, Judd D Bowman, Richard F Bradley, Jacob Burba, Steven Carey, Chris L Carilli, Kai-Feng Chen, Samir Choudhuri, Tyler Cox, David R DeBoer, Eloy de Lera Acedo, Matt Dexter, Joshua S Dillon, Nico Eksteen, John Ely, Aaron Ewall-Wice, Nicolas Fagnoni, Steven R Furlanetto, Kingsley Gale-Sides, Bharat Kumar Gehlot, Brian Glendenning, Adelie Gorce, Deepthi Gorthi, Bradley Greig, Jasper Grobbelaar, Ziyaad Halday, Bryna J Hazelton, Jacqueline N Hewitt, Jack Hickish, Daniel C Jacobs, Alec Josaitis, Nicholas S Kern, Joshua Kerrigan, Honggeun Kim, Matthew Kolopanis, Adam Lanman, Paul La Plante, Adrian Liu, Yin-Zhe Ma, David H E MacMahon, Lourence Malan, Cresshim Malgas, Keith Malgas, Bradley Marero, Zachary E Martinot, Lisa McBride, Andrei Mesinger, Mathakane Molewa, Miguel F Morales, Tshegofalang Mosiane, Chuneeta Devi Nunhokee, Hans Nuwegeld, Robert Pascua, Yuxiang Qin, Eleanor Rath, Nima Razavi-Ghods, James Robnett, Mario G Santos, Peter Sims, Saurabh Singh, Dara Storer, Hilton Swarts, Jianrong Tan, Nithyanandan Thyagarajan, Pieter van Wyngaarden, Zhilei Xu, Haoxuan ZhengPublished in RAS Techniques and Instruments by Oxford University Press (OUP) in 202510.1093/rasti/rzaf001
- 8.Author(s): S A Brackenhoff, M Mevius, L V E Koopmans, A Offringa, E Ceccotti, J K Chege, B K Gehlot, S Ghosh, C Höfer, F G Mertens, S Munshi, S ZaroubiPublished in Monthly Notices of the Royal Astronomical Society by Oxford University Press (OUP) in 2024, page: 632-65610.1093/mnras/stae1856
- 9.Author(s): Ruby Byrne, Nivedita Mahesh, Gregg W. Hallinan, Liam Connor, Vikram Ravi, T. Joseph W. LazioPublished in The Astrophysical Journal by American Astronomical Society in 2024, page: 22110.3847/1538-4357/ad3a6a
- 10.Author(s): S. YatawattaPublished in Astronomy & Astrophysics by EDP Sciences in 2024, page: A3110.1051/0004-6361/202449158
- 11.Author(s): Chenxi Shan, Haiguang Xu, Yongkai Zhu, Yuanyuan Zhao, Sarah V White, Jack L B Line, Dongchao Zheng, Zhenghao Zhu, Dan Hu, Zhongli Zhang, Xiangping WuPublished in Monthly Notices of the Royal Astronomical Society by Oxford University Press (OUP) in 2024, page: 2037-206110.1093/mnras/stae2168
- 12.Author(s): J. K. Chege, L. V. E. Koopmans, A. R. Offringa, B. K. Gehlot, S. A. Brackenhoff, E. Ceccotti, S. Ghosh, C. Höfer, F. G. Mertens, M. Mevius, S. MunshiPublished in Astronomy & Astrophysics by EDP Sciences in 2024, page: A21110.1051/0004-6361/202451367
- 13.Author(s): P. Wortmann, J. Kent, B. NikolicPublished in Astronomy & Astrophysics by EDP Sciences in 2024, page: A15210.1051/0004-6361/202142040
- 14.Author(s): Ruby ByrnePublished in The Astrophysical Journal by American Astronomical Society in 2023, page: 11710.3847/1538-4357/acac95
- 15.Author(s): Chandrachud B V Dash, Tapomoy Guha Sarkar, Anjan A SenPublished in Monthly Notices of the Royal Astronomical Society by Oxford University Press (OUP) in 2023, page: 11694-1170610.1093/mnras/stad3946
- 16.Author(s): Honggeun Kim, Nicholas S. Kern, Jacqueline N. Hewitt, Bang D. Nhan, Joshua S. Dillon, Eloy de Lera Acedo, Scott B. C. Dynes, Nivedita Mahesh, Nicolas Fagnoni, David R. DeBoerPublished in The Astrophysical Journal by American Astronomical Society in 2023, page: 13610.3847/1538-4357/ace35e
- 17.Author(s): Ntsikelelo Charles, Nicholas Kern, Gianni Bernardi, Landman Bester, Oleg Smirnov, Nicolas Fagnoni, Eloy de Lera AcedoPublished in Monthly Notices of the Royal Astronomical Society by Oxford University Press (OUP) in 2023, page: 1009-102110.1093/mnras/stad1046
- 18.Author(s): Jason P Jackson, Trienko L GroblerPublished in Monthly Notices of the Royal Astronomical Society by Oxford University Press (OUP) in 2023, page: 3740-375910.1093/mnras/stad2494
- 19.Author(s): E Ceccotti, A R Offringa, L V E Koopmans, R Timmerman, S A Brackenhoff, B K Gehlot, F G Mertens, S Munshi, V N Pandey, R J van Weeren, S Yatawatta, S ZaroubiPublished in Monthly Notices of the Royal Astronomical Society by Oxford University Press (OUP) in 2023, page: 3946-396210.1093/mnras/stad2465
- 20.Author(s): Aditya Arun Iyer, Gautham Manuru Prabhu, Tanay Gupta, Shrey Deshmukh, Rushit RivankarPublished in Journal of Physics: Conference Series by IOP Publishing in 2023, page: 01203110.1088/1742-6596/2571/1/012031
- 21.Author(s): J. M. G. H. J. de Jong, R. J. van Weeren, A. Botteon, J. B. R. Oonk, G. Brunetti, T. W. Shimwell, R. Cassano, H. J. A. Röttgering, C. TassePublished in Astronomy & Astrophysics by EDP Sciences in 2022, page: A10710.1051/0004-6361/202244346
- 22.Author(s): Peter H Sims, Jonathan C Pober, Jonathan L SieversPublished in Monthly Notices of the Royal Astronomical Society by Oxford University Press (OUP) in 2022, page: 910-93410.1093/mnras/stac1861
- 23.Author(s): Chandra Shekhar Murmu, Raghunath Ghara, Suman Majumdar, Kanan K. DattaPublished in Journal of Astrophysics and Astronomy by Springer Science and Business Media LLC in 202210.1007/s12036-022-09882-z
- 24.Author(s): H. Gan, F. G. Mertens, L. V. E. Koopmans, A. R. Offringa, M. Mevius, V. N. Pandey, S. A. Brackenhoff, E. Ceccotti, B. Ciardi, B. K. Gehlot, R. Ghara, S. K. Giri, I. T. Iliev, S. MunshiPublished in Astronomy & Astrophysics by EDP Sciences in 2022, page: A2010.1051/0004-6361/202244316
- 25.Author(s): J C Andrianjafy, N Heeralall-Issur, A A Deshpande, K Golap, P Woudt, M Caleb, E D Barr, W Chen, F Jankowski, M Kramer, B W Stappers, J WuPublished in Monthly Notices of the Royal Astronomical Society by Oxford University Press (OUP) in 2022, page: 3462-347410.1093/mnras/stac3348
- 26.Author(s): H. Gan, L. V. E. Koopmans, F. G. Mertens, M. Mevius, A. R. Offringa, B. Ciardi, B. K. Gehlot, R. Ghara, A. Ghosh, S. K. Giri, I. T. Iliev, G. Mellema, V. N. Pandey, S. ZaroubiPublished in Astronomy & Astrophysics by EDP Sciences in 2022, page: A910.1051/0004-6361/202142945
- 27.Author(s): Aaron Ewall-Wice, Joshua S. Dillon, Bharat Gehlot, Aaron Parsons, Tyler Cox, Daniel C. JacobsPublished in The Astrophysical Journal by American Astronomical Society in 2022, page: 15110.3847/1538-4357/ac87b3
- 28.Author(s): Yassine Mhiri, Mohammed Nabil El Korso, Arnaud Breloy, Pascal LarzabalPublished in Signal Processing by Elsevier BV in 2022, page: 10861310.1016/j.sigpro.2022.108613
- 29.Author(s): Zara Abdurashidova, James E. Aguirre, Paul Alexander, Zaki S. Ali, Yanga Balfour, Adam P. Beardsley, Gianni Bernardi, Tashalee S. Billings, Judd D. Bowman, Richard F. Bradley, Philip Bull, Jacob Burba, Steve Carey, Chris L. Carilli, Carina Cheng, David R. DeBoer, Matt Dexter, Eloy de Lera Acedo, Taylor Dibblee-Barkman, Joshua S. Dillon, John Ely, Aaron Ewall-Wice, Nicolas Fagnoni, Randall Fritz, Steven R. Furlanetto, Kingsley Gale-Sides, Brian Glendenning, Deepthi Gorthi, Bradley Greig, Jasper Grobbelaar, Ziyaad Halday, Bryna J. Hazelton, Jacqueline N. Hewitt, Jack Hickish, Daniel C. Jacobs, Austin Julius, Nicholas S. Kern, Joshua Kerrigan, Piyanat Kittiwisit, Saul A. Kohn, Matthew Kolopanis, Adam Lanman, Paul La Plante, Telalo Lekalake, David Lewis, Adrian Liu, David MacMahon, Lourence Malan, Cresshim Malgas, Matthys Maree, Zachary E. Martinot, Eunice Matsetela, Andrei Mesinger, Mathakane Molewa, Miguel F. Morales, Tshegofalang Mosiane, Steven G. Murray, Abraham R. Neben, Bojan Nikolic, Chuneeta D. Nunhokee, Aaron R. Parsons, Nipanjana Patra, Robert Pascua, Samantha Pieterse, Jonathan C. Pober, Nima Razavi-Ghods, Jon Ringuette, James Robnett, Kathryn Rosie, Peter Sims, Saurabh Singh, Craig Smith, Angelo Syce, Nithyanandan Thyagarajan, Peter K. G. Williams, Haoxuan Zheng, The HERA CollaborationPublished in The Astrophysical Journal by American Astronomical Society in 2022, page: 22110.3847/1538-4357/ac1c78
- 30.Author(s): B. K. Gehlot, L. V. E. Koopmans, A. R. Offringa, H. Gan, R. Ghara, S. K. Giri, M. Kuiack, F. G. Mertens, M. Mevius, R. Mondal, V. N. Pandey, A. Shulevski, R. A. M. J. Wijers, S. YatawattaPublished in Astronomy & Astrophysics by EDP Sciences in 2022, page: A9710.1051/0004-6361/202142939
- 31.Author(s): B. Adebahr, R. Schulz, T.J. Dijkema, V.A. Moss, A.R. Offringa, A. Kutkin, J.M. van der Hulst, B.S. Frank, N.P.E. Vilchez, J. Verstappen, E.K. Adams, W.J.G. de Blok, H. Denes, K.M. Hess, D. Lucero, R. Morganti, T. Oosterloo, D.-J. Pisano, M.V. Ivashina, W.A. van Cappellen, L.D. Connor, A.H.W.M. Coolen, S. Damstra, G.M. Loose, Y. Maan, F.M. Maccagni, A. Mika, H. Mulder, L.C. Oostrum, E. Orrú, R. Smits, D. van der Schuur, J. van Leeuwen, D. Vohl, S.J. Wijnholds, J. ZiemkePublished in Astronomy and Computing by Elsevier BV in 2022, page: 10051410.1016/j.ascom.2021.100514
- 32.Author(s): Hayato Shimabukuro, Kenji Hasegawa, Akira Kuchinomachi, Hidenobu Yajima, Shintaro YoshiuraPublished in Publications of the Astronomical Society of Japan by Oxford University Press (OUP) in 2022, page: S1-S3210.1093/pasj/psac042
- 33.Author(s): Y. Mei, S. Wei, F. Wang, C. Wu, R. Tobar, M. Shaikh, H. Deng, W. Dai, B. Liang, A. WicenecPublished in Astronomy and Computing by Elsevier BV in 2022, page: 10054110.1016/j.ascom.2021.100541
- 34.Author(s): M Mevius, F Mertens, L V E Koopmans, A R Offringa, S Yatawatta, M A Brentjens, E Chapman, B Ciardi, H Gan, B K Gehlot, R Ghara, A Ghosh, S K Giri, I T Iliev, G Mellema, V N Pandey, S ZaroubiPublished in Monthly Notices of the Royal Astronomical Society by Oxford University Press (OUP) in 2021, page: 3693-370210.1093/mnras/stab3233
- 35.Published in URSI Radio Science Letters by International Union of Radio Science (URSI) in 202110.46620/20-0026
- 36.Author(s): Sarod YatawattaPublished in Monthly Notices of the Royal Astronomical Society by Oxford University Press (OUP) in 2021, page: 2718-272310.1093/mnras/stab3643
- 37.Author(s): V Parekh, R Kincaid, K Thorat, B Hugo, S Sankhyayan, R Kale, N Oozeer, O Smirnov, I Heywood, S Makhathini, K van der HeydenPublished in Monthly Notices of the Royal Astronomical Society by Oxford University Press (OUP) in 2021, page: 3086-310110.1093/mnras/stab3045
- 38.Author(s): Sarod Yatawatta, Ian M AvruchPublished in Monthly Notices of the Royal Astronomical Society by Oxford University Press (OUP) in 2021, page: 2141-215010.1093/mnras/stab1401
- 39.Author(s): C. Tasse, T. Shimwell, M. J. Hardcastle, S. P. O’Sullivan, R. van Weeren, P. N. Best, L. Bester, B. Hugo, O. Smirnov, J. Sabater, G. Calistro-Rivera, F. de Gasperin, L. K. Morabito, H. Röttgering, W. L. Williams, M. Bonato, M. Bondi, A. Botteon, M. Brüggen, G. Brunetti, K. T. Chyży, M. A. Garrett, G. Gürkan, M. J. Jarvis, R. Kondapally, S. Mandal, I. Prandoni, A. Repetti, E. Retana-Montenegro, D. J. Schwarz, A. Shulevski, Y. WiauxPublished in Astronomy & Astrophysics by EDP Sciences in 2021, page: A110.1051/0004-6361/202038804
- 40.Author(s): Bharat K Gehlot, Daniel C Jacobs, Judd D Bowman, Nivedita Mahesh, Steven G Murray, Matthew Kolopanis, Adam P Beardsley, Zara Abdurashidova, James E Aguirre, Paul Alexander, Zaki S Ali, Yanga Balfour, Gianni Bernardi, Tashalee S Billings, Richard F Bradley, Phil Bull, Jacob Burba, Steve Carey, Chris L Carilli, Carina Cheng, David R DeBoer, Matt Dexter, Eloy de Lera Acedo, Joshua S Dillon, John Ely, Aaron Ewall-Wice, Nicolas Fagnoni, Randall Fritz, Steven R Furlanetto, Kingsley Gale-Sides, Brian Glendenning, Deepthi Gorthi, Bradley Greig, Jasper Grobbelaar, Ziyaad Halday, Bryna J Hazelton, Jacqueline N Hewitt, Jack Hickish, Austin Julius, Nicholas S Kern, Joshua Kerrigan, Piyanat Kittiwisit, Saul A Kohn, Adam Lanman, Paul La Plante, Telalo Lekalake, David Lewis, Adrian Liu, Yin-Zhe Ma, David MacMahon, Lourence Malan, Cresshim Malgas, Matthys Maree, Zachary E Martinot, Eunice Matsetela, Andrei Mesinger, Mathakane Molewa, Raul A Monsalve, Miguel F Morales, Tshegofalang Mosiane, Abraham R Neben, Bojan Nikolic, Aaron R Parsons, Robert Pascua, Nipanjana Patra, Samantha Pieterse, Jonathan C Pober, Nima Razavi-Ghods, Jon Ringuette, James Robnett, Kathryn Rosie, Mario G Santos, Peter Sims, Craig Smith, Angelo Syce, Max Tegmark, Nithyanandan Thyagarajan, Peter K G Williams, Haoxuan ZhengPublished in Monthly Notices of the Royal Astronomical Society by Oxford University Press (OUP) in 2021, page: 4578-459210.1093/mnras/stab2072
- 41.Author(s): U M Sob, H L Bester, O M Smirnov, J S Kenyon, C RusseeawonPublished in Monthly Notices of the Royal Astronomical Society by Oxford University Press (OUP) in 2021, page: 1714-173210.1093/mnras/stab928
- 42.Author(s): Ruby Byrne, Miguel F Morales, Bryna J Hazelton, Michael WilenskyPublished in Monthly Notices of the Royal Astronomical Society by Oxford University Press (OUP) in 2021, page: 2457-247710.1093/mnras/stab647
- 43.Author(s): J. G. Albert, R. J. van Weeren, H. T. Intema, H. J. A. RöttgeringPublished in Astronomy & Astrophysics by EDP Sciences in 2020, page: A14710.1051/0004-6361/201937424
- 44.Author(s): J. G. Albert, M. S. S. L. Oei, R. J. van Weeren, H. T. Intema, H. J. A. RöttgeringPublished in Astronomy & Astrophysics by EDP Sciences in 2020, page: A7710.1051/0004-6361/201935668
- 45.Author(s): C. Tasse, T. Shimwell, M.J. Hardcastle, S.P. O'Sullivan, R. van Weeren, P.N. Best, L. Bester, B. Hugo, O. Smirnov, J. Sabater, G. Calistro-Rivera, F. de Gasperin, L.K. Morabito, H. Röttgering, W.L. Williams, M. Bonato, M. Bondi, A. Botteon, M. Brüggen, G. Brunetti, K.T. Chyży, M.A. Garrett, G. Gürkan, M.J. Jarvis, R. Kondapally, S. Mandal, I. Prandoni, A. Repetti, E. Retana-Montenegro, D.J. Schwarz, A. Shulevski, Y. WiauxPublished in 2020
- 46.Author(s): F G Mertens, M Mevius, L V E Koopmans, A R Offringa, G Mellema, S Zaroubi, M A Brentjens, H Gan, B K Gehlot, V N Pandey, A M Sardarabadi, H K Vedantham, S Yatawatta, K M B Asad, B Ciardi, E Chapman, S Gazagnes, R Ghara, A Ghosh, S K Giri, I T Iliev, V Jelić, R Kooistra, R Mondal, J Schaye, M B SilvaPublished in Monthly Notices of the Royal Astronomical Society by Oxford University Press (OUP) in 2020, page: 1662-168510.1093/mnras/staa327
- 47.Author(s): B K Gehlot, F G Mertens, L V E Koopmans, A R Offringa, A Shulevski, M Mevius, M A Brentjens, M Kuiack, V N Pandey, A Rowlinson, A M Sardarabadi, H K Vedantham, R A M J Wijers, S Yatawatta, S ZaroubiPublished in Monthly Notices of the Royal Astronomical Society by Oxford University Press (OUP) in 2020, page: 4158-417310.1093/mnras/staa3093
- 48.Author(s): R Ansari, J E Campagne, D Charlet, M Moniez, C Pailler, O Perdereau, M Taurigna, J M Martin, F Rigaud, P Colom, Ph Abbon, Ch Magneville, J Pezzani, C Viou, S A Torchinsky, Q Huang, J ZhangPublished in Monthly Notices of the Royal Astronomical Society by Oxford University Press (OUP) in 2020, page: 2965-298010.1093/mnras/staa345
- 49.Author(s): F. de Gasperin, J. Vink, J. P. McKean, A. Asgekar, I. Avruch, M. J. Bentum, R. Blaauw, A. Bonafede, J. W. Broderick, M. Brüggen, F. Breitling, W. N. Brouw, H. R. Butcher, B. Ciardi, V. Cuciti, M. de Vos, S. Duscha, J. Eislöffel, D. Engels, R. A. Fallows, T. M. O. Franzen, M. A. Garrett, A. W. Gunst, J. Hörandel, G. Heald, M. Hoeft, M. Iacobelli, L. V. E. Koopmans, A. Krankowski, P. Maat, G. Mann, M. Mevius, G. Miley, R. Morganti, A. Nelles, M. J. Norden, A. R. Offringa, E. Orrú, H. Paas, V. N. Pandey, M. Pandey-Pommier, R. Pekal, R. Pizzo, W. Reich, A. Rowlinson, H. J. A. Rottgering, D. J. Schwarz, A. Shulevski, O. Smirnov, C. Sobey, M. Soida, M. Steinmetz, M. Tagger, M. C. Toribio, A. van Ardenne, A. J. van der Horst, M. P. van Haarlem, R. J. van Weeren, C. Vocks, O. Wucknitz, P. Zarka, P. ZuccaPublished in Astronomy & Astrophysics by EDP Sciences in 2020, page: A15010.1051/0004-6361/201936844
- 50.Author(s): Adrian Liu, J. Richard ShawPublished in Publications of the Astronomical Society of the Pacific by IOP Publishing in 2020, page: 06200110.1088/1538-3873/ab5bfd
- 1.Author(s): Jonathan Simon Kenyon, Simon James Perkins, Hertzog Landman Bester, Oleg Mikhailovich Smirnov, Cyndie Russeeawon, Benjamin Vorster HugoPublished by Elsevier BV in 202410.2139/ssrn.5057243
- 2.Author(s): Martin Brossard, Virginie Ollier, Mohammed Nabil El Korso, Rémy Boyer, Pascal LarzabalPublished by arXiv in 202010.48550/arxiv.2002.11498
- 3.Author(s): H. Spreeuw, S. Yatawatta, B. Van Werkhoven, F. DiblenPublished by arXiv in 202010.48550/arxiv.2010.16209
- 4.Author(s): Sarod YatawattaPublished in 2020
- 5.Author(s): Sarod Yatawatta, Lukas De Clercq, Hanno Spreeuw, Faruk DiblenPublished in 2019
- 6.Author(s): Sarod YatawattaPublished in 2018
- 7.Author(s): Virginie Ollier, Mohammed Nabil El Korso, André Ferrari, Rémy Boyer, Pascal LarzabalPublished in 2018
- 8.Author(s): Virginie Ollier, Mohammed Nabil El Korso, André Ferrari, Rémy Boyer, Pascal LarzabalPublished in 2018
- 9.Author(s): Sarod YatawattaPublished in 2018
- 10.Author(s): Martin Brossard, Mohammed Nabil El Korso, Marius Pesavento, Rémy Boyer, Pascal Larzabal, Stefan J. WijnholdsPublished in 2016
- 11.Author(s): Sarod YatawattaPublished in 2016
- 12.Author(s): Virginie Ollier, Mohammed Nabil El Korso, Rémy Boyer, Pascal Larzabal, Marius PesaventoPublished in 2016
- 13.Author(s): Simon Perkins, Patrick Marais, Jonathan Zwart, Iniyan Natarajan, Cyril Tasse, Oleg SmirnovPublished in 2015
- 14.Author(s): Anna M. M. Scaife, Nadeem Oozeer, Francesco de Gasperin, Marcus Brueggen, Cyril Tasse, Lindsay MagnusPublished in 2015
- 15.Author(s): Panagiotis Labropoulos, Leon V. E. Koopmans, Vibor Jelic, Sarod Yatawatta, Rajat M. Thomas, Gianni Bernardi, Michiel Brentjens, Ger de Bruyn, Benedetta Ciardi, Geraint Harker, Andre Offringa, Vishambar N. Pandey, Joop Schaye, Saleem ZaroubiPublished by arXiv in 200910.48550/arxiv.0901.3359
Contributors
Contact person
Related projects
DIRAC
Distributed radio astronomical computing