Source code for autolens.interferometer.simulator

"""
Interferometer simulator for strong gravitational lens observations.

``SimulatorInterferometer`` extends ``aa.SimulatorInterferometer`` with a
``via_tracer_from`` method that accepts a ``Tracer`` object and:

1. Uses the tracer's mass profiles to ray-trace the real-space grid to the source plane.
2. Evaluates the light profiles of all galaxies on the (traced) grid.
3. Applies the Fourier transform to map the real-space image to complex visibilities.
4. Adds noise to the visibilities according to the noise-map stored in the simulator.

This is the primary entry point for generating synthetic interferometer datasets for
testing, validation, and mock-data studies of ALMA or JVLA observations.
"""
from typing import List

import autoarray as aa
import autogalaxy as ag

from autolens.lens.tracer import Tracer


[docs] class SimulatorInterferometer(aa.SimulatorInterferometer):
[docs] def via_tracer_from(self, tracer, grid): """ Returns a realistic simulated image by applying effects to a plain simulated image. Parameters ---------- image The image before simulating (e.g. the lens and source galaxies before optics blurring and Imaging read-out). pixel_scales The scale of each pixel in arc seconds exposure_time_map An arrays representing the effective exposure time of each pixel. psf: PSF An arrays describing the PSF the simulated image is blurred with. add_poisson_noise_to_data: Bool If `True` poisson noise_maps is simulated and added to the image, based on the total counts in each image pixel noise_seed: int A seed for random noise_maps generation """ image = tracer.image_2d_from(grid=grid) return self.via_image_from(image=image)
[docs] def via_galaxies_from(self, galaxies, grid): """Simulate imaging data for this data, as follows: 1) Setup the image-plane grid of the Imaging arrays, which defines the coordinates used for the ray-tracing. 2) Use this grid and the lens and source galaxies to setup a tracer, which generates the image of \ the simulated imaging data. 3) Simulate the imaging data, using a special image which ensures edge-effects don't degrade simulator of the telescope optics (e.g. the PSF convolution). 4) Plot the image using Matplotlib, if the plot_imaging bool is True. 5) Output the dataset to .fits format if a dataset_path and data_name are specified. Otherwise, return the simulated \ imaging data instance.""" tracer = Tracer(galaxies=galaxies) return self.via_tracer_from(tracer=tracer, grid=grid)
[docs] def via_deflections_and_galaxies_from( self, deflections: aa.VectorYX2D, galaxies: List[ag.Galaxy] ) -> aa.Imaging: """ Simulate an `Imaging` dataset from an input deflection angle map and list of galaxies. The input deflection angle map ray-traces the image-plane coordinates from the image-plane to source-plane, via the lens equation. This traced grid is then used to evaluate the light of the list of galaxies, which therefore simulate the image of the strong lens. This function is used in situations where one has access to a deflection angle map which does not suit being ray-traced using a `Tracer` object (e.g. deflection angles from a cosmological simulation of a galaxy). The steps of the `SimulatorImaging` simulation process (e.g. PSF convolution, noise addition) are described in the `SimulatorImaging` `__init__` method docstring. Parameters ---------- galaxies The galaxies used to create the tracer, which describes the ray-tracing and strong lens configuration used to simulate the imaging dataset. grid The image-plane 2D grid of (y,x) coordinates grid which the image of the strong lens is generated on. """ grid = aa.Grid2D.uniform( shape_native=deflections.shape_native, pixel_scales=deflections.pixel_scales, over_sample_size=1, ) deflected_grid = aa.Grid2D( values=grid - deflections, mask=grid.mask, over_sample_size=1, over_sampled=grid - deflections, over_sampler=grid.over_sampler, ) image = sum(map(lambda g: g.image_2d_from(grid=deflected_grid), galaxies)) return self.via_image_from(image=image)
[docs] def via_source_image_from( self, tracer: Tracer, grid: aa.type.Grid2DLike, source_image: aa.Array2D ) -> aa.Imaging: """ Simulate an `Interferometer` dataset from an input image of a source galaxy. This input image is on a uniform and regular 2D array, meaning it can simulate the source's irregular and asymmetric source galaxy morphological features. The typical use case is inputting the image of an irregular galaxy in the source-plane (whose values are on a uniform array) and using this function to compute the lensed image of this source galaxy. The tracer is used to perform ray-tracing and generate the image of the strong lens galaxies (e.g. the lens light, lensed source light, etc) which is simulated. The source galaxy light profiles are ignored in favour of the input source image, but the emission of other galaxies (e.g. the lems galaxy's light) are included. The steps of the `SimulatorInterferometer` simulation process (e.g. PSF convolution, noise addition) are described in the `SimulatorInterferometer` `__init__` method docstring. Parameters ---------- tracer The tracer, which describes the ray-tracing and strong lens configuration used to simulate the Interferometer dataset. grid The image-plane 2D grid of (y,x) coordinates grid which the image of the strong lens is generated on. source_image The image of the source-plane and source galaxy which is interpolated to compute the lensed image. """ image = tracer.image_2d_via_input_plane_image_from( grid=grid, plane_image=source_image ) return self.via_image_from(image=image)