ler 0.4.2__py3-none-any.whl → 0.4.3__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


This version of ler might be problematic. Click here for more details.

Files changed (35) hide show
  1. ler/__init__.py +26 -26
  2. ler/gw_source_population/__init__.py +1 -0
  3. ler/gw_source_population/cbc_source_parameter_distribution.py +1073 -815
  4. ler/gw_source_population/cbc_source_redshift_distribution.py +618 -294
  5. ler/gw_source_population/jit_functions.py +484 -9
  6. ler/gw_source_population/sfr_with_time_delay.py +107 -0
  7. ler/image_properties/image_properties.py +41 -12
  8. ler/image_properties/multiprocessing_routine.py +5 -209
  9. ler/lens_galaxy_population/__init__.py +2 -0
  10. ler/lens_galaxy_population/epl_shear_cross_section.py +0 -0
  11. ler/lens_galaxy_population/jit_functions.py +101 -9
  12. ler/lens_galaxy_population/lens_galaxy_parameter_distribution.py +813 -881
  13. ler/lens_galaxy_population/lens_param_data/density_profile_slope_sl.txt +5000 -0
  14. ler/lens_galaxy_population/lens_param_data/external_shear_sl.txt +2 -0
  15. ler/lens_galaxy_population/lens_param_data/number_density_zl_zs.txt +48 -0
  16. ler/lens_galaxy_population/lens_param_data/optical_depth_epl_shear_vd_ewoud.txt +48 -0
  17. ler/lens_galaxy_population/mp copy.py +554 -0
  18. ler/lens_galaxy_population/mp.py +736 -138
  19. ler/lens_galaxy_population/optical_depth.py +2248 -616
  20. ler/rates/__init__.py +1 -2
  21. ler/rates/gwrates.py +126 -72
  22. ler/rates/ler.py +218 -111
  23. ler/utils/__init__.py +2 -0
  24. ler/utils/function_interpolation.py +322 -0
  25. ler/utils/gwsnr_training_data_generator.py +233 -0
  26. ler/utils/plots.py +1 -1
  27. ler/utils/test.py +1078 -0
  28. ler/utils/utils.py +492 -125
  29. {ler-0.4.2.dist-info → ler-0.4.3.dist-info}/METADATA +30 -17
  30. ler-0.4.3.dist-info/RECORD +34 -0
  31. {ler-0.4.2.dist-info → ler-0.4.3.dist-info}/WHEEL +1 -1
  32. ler/rates/ler copy.py +0 -2097
  33. ler-0.4.2.dist-info/RECORD +0 -25
  34. {ler-0.4.2.dist-info → ler-0.4.3.dist-info/licenses}/LICENSE +0 -0
  35. {ler-0.4.2.dist-info → ler-0.4.3.dist-info}/top_level.txt +0 -0
@@ -1,6 +1,6 @@
1
- Metadata-Version: 2.1
1
+ Metadata-Version: 2.4
2
2
  Name: ler
3
- Version: 0.4.2
3
+ Version: 0.4.3
4
4
  Summary: LVK (LIGO-Virgo-KAGRA collaboration) Event (compact-binary mergers) Rate calculator and simulator
5
5
  Home-page: https://github.com/hemantaph/ler
6
6
  Author: Hemantakumar
@@ -9,20 +9,33 @@ License: MIT
9
9
  Requires-Python: >=3.10
10
10
  Description-Content-Type: text/markdown
11
11
  License-File: LICENSE
12
- Requires-Dist: setuptools >=65.5.0
13
- Requires-Dist: matplotlib >=3.4.2
14
- Requires-Dist: pycbc >=2.0.4
15
- Requires-Dist: numpy >=1.18
16
- Requires-Dist: numba >=0.57.1
17
- Requires-Dist: bilby >=1.0.2
18
- Requires-Dist: gwsnr >=0.3.2
19
- Requires-Dist: scipy <1.14.0
20
- Requires-Dist: lenstronomy >=1.10.4
21
- Requires-Dist: astropy >=5.1
22
- Requires-Dist: tqdm >=4.64.1
23
- Requires-Dist: pointpats >=2.3
24
- Requires-Dist: shapely >=2.0.1
25
- Requires-Dist: gwcosmo ==2.1.0
12
+ Requires-Dist: setuptools>=65.5.0
13
+ Requires-Dist: matplotlib>=3.4.2
14
+ Requires-Dist: pycbc>=2.0.4
15
+ Requires-Dist: numpy<=1.26.4
16
+ Requires-Dist: numba>=0.60.0
17
+ Requires-Dist: bilby>=1.0.2
18
+ Requires-Dist: gwpy>=3.0.12
19
+ Requires-Dist: lalsuite>=7.26.1
20
+ Requires-Dist: gwsnr>=0.3.8
21
+ Requires-Dist: lenstronomy>=1.10.4
22
+ Requires-Dist: astropy>=5.1
23
+ Requires-Dist: tqdm>=4.64.1
24
+ Requires-Dist: pointpats>=2.3
25
+ Requires-Dist: shapely>=2.0.1
26
+ Requires-Dist: lenstronomy
27
+ Requires-Dist: pointpats
28
+ Requires-Dist: shapely
29
+ Dynamic: author
30
+ Dynamic: author-email
31
+ Dynamic: description
32
+ Dynamic: description-content-type
33
+ Dynamic: home-page
34
+ Dynamic: license
35
+ Dynamic: license-file
36
+ Dynamic: requires-dist
37
+ Dynamic: requires-python
38
+ Dynamic: summary
26
39
 
27
40
  # LeR
28
41
  [![DOI](https://zenodo.org/badge/626733473.svg)](https://zenodo.org/badge/latestdoi/626733473) [![PyPI version](https://badge.fury.io/py/ler.svg)](https://badge.fury.io/py/ler) [![DOCS](https://readthedocs.org/projects/ler/badge/?version=latest)](https://ler.readthedocs.io/en/latest/)
@@ -40,7 +53,7 @@ pip install ler
40
53
  ## About
41
54
 
42
55
  <p align="center">
43
- <img src="sl.png" alt="Your Logo" width="100%">
56
+ <img src="docs/_static/sl.png" alt="Your Logo" width="100%">
44
57
  </p>
45
58
 
46
59
  LeR is a Python package designed for the statistical simulation and forecasting of gravitational wave (GW) events and their rates. It is tailored to support both GW population study groups and GW lensing research groups by providing a comprehensive suite of tools for GW event analysis. The package is organized into the following main components:
@@ -0,0 +1,34 @@
1
+ ler/__init__.py,sha256=F8PHt8-pbFnETWozRkCTVuaSTgOCSQLOUVdZYkcxttY,2224
2
+ ler/gw_source_population/__init__.py,sha256=7USiaGbq6AAUYG7_geTid2ADD5u6Tj1QZqy5CsGObC8,161
3
+ ler/gw_source_population/cbc_source_parameter_distribution.py,sha256=-qbr-dthekXYQo2h5K4v6s1Nm0qV9Q9lCPGGH9uEuH4,81934
4
+ ler/gw_source_population/cbc_source_redshift_distribution.py,sha256=v8LV96mJY0FePNOKLM5sNRwfcptFUT2myR_0yTiH87E,44308
5
+ ler/gw_source_population/jit_functions.py,sha256=ThyNoORhr0nJhqCJWVBgEFmmsPbYSagbQWpISK3xSa4,27066
6
+ ler/gw_source_population/sfr_with_time_delay.py,sha256=C5vf9WMJFUJixPL3GHeHt4K9jPRGwQoYe1np0gkNH2g,3429
7
+ ler/image_properties/__init__.py,sha256=XfJFlyZuOrKODT-z9WxjR9mI8eT399YJV-jzcJKTqGo,71
8
+ ler/image_properties/image_properties.py,sha256=QO4jq1qaJQsB-n_enFDIIQCU-h_Fu8DHxN9bwWvDs9Y,26594
9
+ ler/image_properties/multiprocessing_routine.py,sha256=Ud5epT16c_f7f5zsUkuTP2Ry5gB-6nHZXd35fvZJRqE,9719
10
+ ler/lens_galaxy_population/__init__.py,sha256=gQ4IzkxNQuuYTI5PUs3YP0LEhAeucyxHx2g_pqzLaWA,156
11
+ ler/lens_galaxy_population/epl_shear_cross_section.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
12
+ ler/lens_galaxy_population/jit_functions.py,sha256=jAdwhiHvrUEZu-P6C1sbysqfqLlDIaBXp4hOIwYNu2o,11939
13
+ ler/lens_galaxy_population/lens_galaxy_parameter_distribution.py,sha256=-zILNVquMTxqvolFPHODc44yhFLxgbYiqpvBxEOSsRY,46146
14
+ ler/lens_galaxy_population/mp copy.py,sha256=UTNSx7PQBOZa6FhlrFEILoXfGJvqwttZ13BPC6ZzflE,20883
15
+ ler/lens_galaxy_population/mp.py,sha256=0yULMVm_nOk3cwQO3L6QCjKD-IOyAMwH-LNar7-48kE,27399
16
+ ler/lens_galaxy_population/optical_depth.py,sha256=U1TV-dPkQA9E_4NJ2gkCobc1bSToEY-Ese-t_kve9vY,111784
17
+ ler/lens_galaxy_population/lens_param_data/density_profile_slope_sl.txt,sha256=YUmEpOLocilLFITxjJWNZdM3W_TXFsidY-LB03BnvCc,125000
18
+ ler/lens_galaxy_population/lens_param_data/external_shear_sl.txt,sha256=HNiGSfp_DMPvD7J3QXsDDsklIkQVS7Fhw1D0XilysjA,255027
19
+ ler/lens_galaxy_population/lens_param_data/number_density_zl_zs.txt,sha256=Z0wLq5z2vS60cSwtSZjVI3YDHsVX_N9bh-hQOt7ofOg,62400
20
+ ler/lens_galaxy_population/lens_param_data/optical_depth_epl_shear_vd_ewoud.txt,sha256=cMK0zAPfvPPrD34a-qsDK31XlKbmIubNHTflZeVz2Ho,1200
21
+ ler/rates/__init__.py,sha256=5bzLjLsNLDlNcI15KRV6TUjxLUQGIwNSEHbpsn8EtYM,41
22
+ ler/rates/gwrates.py,sha256=974p3QgDuRaMWAE3VRAwU3Oi3_ZrTiru9PKejS4hnMQ,61621
23
+ ler/rates/ler.py,sha256=t5HuvhGQ3fhYnZ1gq9IvTo44w2niD27QGHKmBdU9nb4,113458
24
+ ler/utils/__init__.py,sha256=zE34BJVvJIfL9cFcQtWiWdI7tVpS-xR1UCWg0U8NFkU,124
25
+ ler/utils/function_interpolation.py,sha256=FKJbjeIah_CeUP5CQLOwAO9Du87kUrYBl9p7udpCCD0,14037
26
+ ler/utils/gwsnr_training_data_generator.py,sha256=t8smtx1WUnJaDLu53UekVh8umjdr1VgrjQIhgNZpNGM,8488
27
+ ler/utils/plots.py,sha256=BoKwCE1hRkyImEfgp6nkRpz3D5cM4gqsInxMcPWKkEQ,15656
28
+ ler/utils/test.py,sha256=wxcHWHNdjdU9fi4RftDez4PuIeu5m7OCL-lS-L6j5b8,32798
29
+ ler/utils/utils.py,sha256=RJ1vIThWxNgItz1F73S0TQZul8QSoHDYDaHN_xVRA4Q,46038
30
+ ler-0.4.3.dist-info/licenses/LICENSE,sha256=9LeXXC3WaHBpiUGhLVgOVnz0F12olPma1RX5zgpfp8Q,1081
31
+ ler-0.4.3.dist-info/METADATA,sha256=FbVoLEn7MDIa0Txblrs-vljgMy-1X99nBfkiaZFyIbk,6886
32
+ ler-0.4.3.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
33
+ ler-0.4.3.dist-info/top_level.txt,sha256=VWeWLF_gNMjzquGmqrLXqp2J5WegY86apTUimMTh68I,4
34
+ ler-0.4.3.dist-info/RECORD,,
@@ -1,5 +1,5 @@
1
1
  Wheel-Version: 1.0
2
- Generator: bdist_wheel (0.43.0)
2
+ Generator: setuptools (80.9.0)
3
3
  Root-Is-Purelib: true
4
4
  Tag: py3-none-any
5
5