gravelamps.lensing.sis ====================== .. py:module:: gravelamps.lensing.sis .. autoapi-nested-parse:: Singular Isothermal Sphere (SIS) Lensing Functions Following are functions performing calculations for the singular isothermal sphere lens mass density profile model. The module backend is based in libsis. Written by Mick Wright 2022 Globals ------- _cdll : ctypes.CDLL Library of C++ functions necessary for calculations _additional_arguments : list of str Additional arguments required to construct interpolator data _additional_argument_types : list of types Types of the argumnets that are given above _lens_parameters : list of str Parameters used for the model Routines -------- redshifted_lens_mass Calculates redshifted lens mass required for given time delay and dimensionless time delay to correlate dimensionless_time_delay Computes the dimensionless time delay corresponding to a given source position magnification Computes the magnification of the specified image at the given source position single_image_amplification Computes the geometric optics amplification factor for only the specified image amplification_factor Calculates geometric optics amplification factor generate_interpolator_data Generates the amplification factor data files for use in interpolator generation .. !! processed by numpydoc !! Functions --------- .. autoapisummary:: gravelamps.lensing.sis.redshifted_lens_mass gravelamps.lensing.sis.magnification gravelamps.lensing.sis.relative_magnification gravelamps.lensing.sis.dimensionless_time_delay gravelamps.lensing.sis.single_image_amplification gravelamps.lensing.sis.amplification_factor gravelamps.lensing.sis.generate_interpolator_data Module Contents --------------- .. py:function:: redshifted_lens_mass(time_delay_value, dimensionless_time_delay_value) Calculates redshifted lens mass required for given time delay and dimensionless time delay to correlate. This is a rearranging of the relationship betweeen the time delay and the dimensionless equivalent, which for the isolated singular isothermal sphere model is given by td = 4 * Mlz * dim_td. :Parameters: **time_delay_value** : float Physical time delay between two signals in seconds **dimensionless_time_delay_value** : float Corresponding dimensionless time delay between the two signals :Returns: **mass** : float Physical mass that connects the physical and dimensionless time delays .. !! processed by numpydoc !! .. py:function:: magnification(source_position, image) Computes the magnification of the specified image at the source position given. This is a wrapper function to the C++ function `PyMagnification` within `libsis`. :Parameters: **source_position** : float Dimensionless displacement from the optical axis **image** : int Which image to compute. 1 corresponds to the + image and 0 corresponds to the - image. :Returns: float Magnification corresponding to the specified input parameters .. !! processed by numpydoc !! .. py:function:: relative_magnification(source_position) Computes the relative magnification of two images at the given source position. This function computes the two magnifications associated with singular isothermal sphere lensing and returns the ratio (+/-) between them. :Parameters: **source_position** : float Dimensionless displacement from the optical axis :Returns: **mu_rel** : float Ratio between the magnifications of the + and - image respectively. .. !! processed by numpydoc !! .. py:function:: dimensionless_time_delay(source_position) Computes the dimensionless time delay that corresponds to the source position. This is a wrapper function to the C++ function `PyTimeDelay` within `libsis` for the given source position. :Parameters: **source_position** : float Dimensionless displacement from the optical axis :Returns: **delay** : float Dimensionless time delay produced by the lensing of the signals with given source position .. !! processed by numpydoc !! .. py:function:: single_image_amplification(dimensionless_frequency_array, source_position, image) Calculates the geomtric optics amplification factor for only the specified image. This calculation is done using the C++ function `PySingleImageAmplification` within `libsis` for the given dimensionless frequencies and source position, for the specified image. :Parameters: **dimensionless_frequency_array** : ArrayLike Dimensionless form of the frequencies of interest **source_position** : float Dimensionelss displacement from the optical axis **image** : int Which image to compute, 1 corresponds to the + image and 0 corresponds to the - image :Returns: **amplification_array** : ArrayLike Amplification of the image signal for the frequeny range at the specified source position .. !! processed by numpydoc !! .. py:function:: amplification_factor(dimensionless_frequency_array, source_position) Calculates geometric optics amplification factor. This calculation is done using C++ function `PyAmplificationFactorGeometric` within `libsis` for the given dimensionless frequency and source position. :Parameters: **dimensionless_frequency_array** : Array of floats Dimensionless form of the frequencies of interest **source_position** : float Dimensionless displacement from the optical axis :Returns: **amplification_array** : Array of complex Amplification factor to the signal .. !! processed by numpydoc !! .. py:function:: generate_interpolator_data(config, args, file_dict) Generates the amplification factor data files for use in interpolator generation. This is done via the C++ `GenerateLensData` function within `libsis`. It will read in the specified grid files and fill the data files with the appropriate values of the amplification factor. This can be done in wave and geometric optics. :Parameters: **config** : configparser.ConfigParser Object containing settings from user INI file **args** : argparse.Namespace Object containing commandline arguments to program **file_dict** : dict Contains paths to the interpolator grid and data files to fill .. !! processed by numpydoc !!