Source code for lenstronomy.LensModel.Profiles.base_profile
__all__ = ['LensProfileBase']
[docs]class LensProfileBase(object):
"""
this class acts as the base class of all lens model functions and indicates raise statements and default outputs
if these functions are not defined in the specific lens model class
"""
def __init__(self, *args, **kwargs):
self._static = False
[docs] def function(self, *args, **kwargs):
"""
lensing potential
:param kwargs: keywords of the profile
:return: raise as definition is not defined
"""
raise ValueError('function definition is not defined in the profile you want to execute.')
[docs] def derivatives(self, *args, **kwargs):
"""
deflection angles
:param kwargs: keywords of the profile
:return: raise as definition is not defined
"""
raise ValueError('derivatives definition is not defined in the profile you want to execute.')
[docs] def hessian(self, *args, **kwargs):
"""
returns Hessian matrix of function d^2f/dx^2, d^2/dxdy, d^2/dydx, d^f/dy^2
:param kwargs: keywords of the profile
:return: raise as definition is not defined
"""
raise ValueError('hessian definition is not defined in the profile you want to execute.')
[docs] def density_lens(self, *args, **kwargs):
"""
computes the density at 3d radius r given lens model parameterization.
The integral in the LOS projection of this quantity results in the convergence quantity.
:param kwargs: keywords of the profile
:return: raise as definition is not defined
"""
raise ValueError('density_lens definition is not defined in the profile you want to execute.')
[docs] def mass_3d_lens(self, *args, **kwargs):
"""
mass enclosed a 3d sphere or radius r given a lens parameterization with angular units
For this profile those are identical.
:param kwargs: keywords of the profile
:return: raise as definition is not defined
"""
raise ValueError('mass_3d_lens definition is not defined in the profile you want to execute.')
[docs] def set_static(self, **kwargs):
"""
pre-computes certain computations that do only relate to the lens model parameters and not to the specific
position where to evaluate the lens model
:param kwargs: lens model parameters
:return: no return, for certain lens model some private self variables are initiated
"""
pass
[docs] def set_dynamic(self):
"""
:return: no return, deletes pre-computed variables for certain lens models
"""
pass