Skip to main content

Automated Strong Gravitational Lens Modeling

Project description

PyAutoLens

When two or more galaxies are aligned perfectly down our line-of-sight, the background galaxy appears multiple times. This is called strong gravitational lensing, & PyAutoLens makes it simple to model strong gravitational lenses, like this one:

.. image:: https://raw.githubusercontent.com/Jammy2211/PyAutoLens/master/gitimage.png :width: 400 :alt: Alternative text

PyAutoLens is based on the following papers:

Adaptive Semi-linear Inversion of Strong Gravitational Lens Imaging <https://arxiv.org/abs/1412.7436>_

AutoLens: Automated Modeling of a Strong Lens's Light, Mass & Source <https://arxiv.org/abs/1708.07377>_

API Overview

Lensing calculations are performed in PyAutoLens by building a Tracer object from LightProfile, MassProfile and Galaxy objects. Below, we create a simple strong lens system where a redshift 0.5 lens galaxy with an isothermal mass profile lenses a background source at redshift 1.0 with an Exponential light profile.

.. code-block:: python

import autolens as al
import autolens.plot as aplt

"""
To describe the deflection of light grids are used which are two-dimensional Cartesian grids
of (y,x) coordinates which are deflected by mass profiles.
"""

grid = al.Grid.uniform(
    shape_2d=(50, 50),
    pixel_scales=0.05,  # <- Conversion from pixel units to arc-seconds.
)

"""The lens galaxy is at redshift 0.5 and its mass profile is an elliptical Isothermal."""

sie = al.mp.EllipticalIsothermal(
    centre=(0.0, 0.0), elliptical_comps=(0.1, 0.05), einstein_radius=1.6
)

lens_galaxy = al.Galaxy(redshift=0.5, mass=sie)

"""The source galaxy is at redshift 1.0, and its light profile is elliptical Exponential."""

exponential = al.lp.EllipticalExponential(
    centre=(0.3, 0.2),
    elliptical_comps=(0.05, 0.25),
    intensity=0.05,
    effective_radius=0.5,
)

source_galaxy = al.Galaxy(redshift=1.0, light=exponential)

"""
We create the strong lens system by performing ray-tracing via a Tracer object, which uses the
galaxies above, their redshifts and an input cosmology to determine how light is deflected on
its path to Earth.
"""

tracer = al.Tracer.from_galaxies(
    galaxies=[lens_galaxy, source_galaxy], cosmology=cosmo.Planck15
)

"""
We can use the tracer to perform many lensing calculations, for example plotting the
image of the lensed source.
"""

aplt.Tracer.image(tracer=tracer, grid=grid)

With PyAutoLens, you can begin modeling a lens in just a couple of minutes. The example below demonstrates a simple analysis which fits the foreground lens galaxy's mass & the background source galaxy's light.

.. code-block:: python

import autofit as af
import autolens as al

import os

"""In this example, we'll fit a simple lens galaxy + source galaxy system."""

dataset_path = "{}/../data".format(os.path.dirname(os.path.realpath(__file__)))
lens_name = "example_lens"

"""Use the relative path to the dataset to load the imaging data."""

imaging = al.Imaging.from_fits(
    image_path=f"{dataset_path}/{lens_name}/image.fits",
    noise_map_path=f"{dataset_path}/{lens_name}/noise_map.fits",
    psf_path=f"{dataset_path}/{lens_name}/psf.fits",
    pixel_scales=0.1,
)

"""Create a mask for the data, which we setup as a 3.0" circle."""

mask = al.Mask.circular(
    shape_2d=imaging.shape_2d, pixel_scales=imaging.pixel_scales, radius=3.0
)

"""
We model our lens galaxy using a mass profile (a singular isothermal ellipsoid) &
our source galaxy a light profile (an elliptical Sersic).
"""

lens_mass_profile = al.mp.EllipticalIsothermal
source_light_profile = al.lp.EllipticalSersic

"""
To setup our model galaxies, we use the GalaxyModel class, which represents a
galaxy whose parameters are free & fitted for by PyAutoLens.
"""

lens_galaxy_model = al.GalaxyModel(redshift=0.5, mass=lens_mass_profile)
source_galaxy_model = al.GalaxyModel(redshift=1.0, light=source_light_profile)

"""
To perform the analysis we set up a phase, which takes our galaxy models & fits
their parameters using a non-linear search (in this case, Dynesty).
"""

phase = al.PhaseImaging(
    galaxies=dict(lens=lens_galaxy_model, source=source_galaxy_model),
    phase_name="example/phase_example",
    search=af.DynestyStatic(n_live_points=50, sampling_efficiency=0.5),
)

"""
We pass the imaging data and mask to the phase, thereby fitting it with the lens
model & plot the resulting fit.
"""

result = phase.run(data=imaging, mask=mask)
al.plot.FitImaging.subplot_fit_imaging(fit=result.max_log_likelihood_fit)

Getting Started

To get started checkout our readthedocs <https://pyautolens.readthedocs.io/>_, where you'll find our installation guide, a complete overview of PyAutoLens's features, examples scripts and tutorials and detailed API documentation.

Slack

We're building a PyAutoLens community on Slack, so you should contact us on our Slack channel <https://pyautolens.slack.com/>_ before getting started. Here, I will give you the latest updates on the software & discuss how best to use PyAutoLens for your science case.

Unfortunately, Slack is invitation-only, so first send me an email <https://github.com/Jammy2211>_ requesting an invite.

Project details


Release history Release notifications | RSS feed

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

autolens-1.0.10.tar.gz (94.9 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

autolens-1.0.10-py3-none-any.whl (164.0 kB view details)

Uploaded Python 3

File details

Details for the file autolens-1.0.10.tar.gz.

File metadata

  • Download URL: autolens-1.0.10.tar.gz
  • Upload date:
  • Size: 94.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.19.1 setuptools/39.0.1 requests-toolbelt/0.8.0 tqdm/4.26.0 CPython/3.6.9

File hashes

Hashes for autolens-1.0.10.tar.gz
Algorithm Hash digest
SHA256 a90aaf2d3788902099abd9fca399dfa6083791e7ec14657223a712af5f28e8f2
MD5 3b1f593a39a8e9e397d91223e4c332e5
BLAKE2b-256 0d68ce0ca3faf9e76f36fe73460b7463d0ba142d5adb2307b08d70ea8093b55d

See more details on using hashes here.

File details

Details for the file autolens-1.0.10-py3-none-any.whl.

File metadata

  • Download URL: autolens-1.0.10-py3-none-any.whl
  • Upload date:
  • Size: 164.0 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.19.1 setuptools/39.0.1 requests-toolbelt/0.8.0 tqdm/4.26.0 CPython/3.6.9

File hashes

Hashes for autolens-1.0.10-py3-none-any.whl
Algorithm Hash digest
SHA256 664e38ff6a8939b32d5b800d612eb5f48ec1359795fb7d2454d8f2cd687edaa9
MD5 1263cd60d6a9791e147abb4eaf3ea29f
BLAKE2b-256 2719bb8283a752fdbd920535e186289f992165382ec717ca31acf8ff63c4fbfc

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page