gwsim 0.1.0__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.
Files changed (103) hide show
  1. gwsim/__init__.py +11 -0
  2. gwsim/__main__.py +8 -0
  3. gwsim/cli/__init__.py +0 -0
  4. gwsim/cli/config.py +88 -0
  5. gwsim/cli/default_config.py +56 -0
  6. gwsim/cli/main.py +101 -0
  7. gwsim/cli/merge.py +150 -0
  8. gwsim/cli/repository/__init__.py +0 -0
  9. gwsim/cli/repository/create.py +91 -0
  10. gwsim/cli/repository/delete.py +51 -0
  11. gwsim/cli/repository/download.py +54 -0
  12. gwsim/cli/repository/list_depositions.py +63 -0
  13. gwsim/cli/repository/main.py +38 -0
  14. gwsim/cli/repository/metadata/__init__.py +0 -0
  15. gwsim/cli/repository/metadata/main.py +24 -0
  16. gwsim/cli/repository/metadata/update.py +58 -0
  17. gwsim/cli/repository/publish.py +52 -0
  18. gwsim/cli/repository/upload.py +74 -0
  19. gwsim/cli/repository/utils.py +47 -0
  20. gwsim/cli/repository/verify.py +61 -0
  21. gwsim/cli/simulate.py +220 -0
  22. gwsim/cli/simulate_utils.py +596 -0
  23. gwsim/cli/utils/__init__.py +85 -0
  24. gwsim/cli/utils/checkpoint.py +178 -0
  25. gwsim/cli/utils/config.py +347 -0
  26. gwsim/cli/utils/hash.py +23 -0
  27. gwsim/cli/utils/retry.py +62 -0
  28. gwsim/cli/utils/simulation_plan.py +439 -0
  29. gwsim/cli/utils/template.py +56 -0
  30. gwsim/cli/utils/utils.py +149 -0
  31. gwsim/cli/validate.py +255 -0
  32. gwsim/data/__init__.py +8 -0
  33. gwsim/data/serialize/__init__.py +9 -0
  34. gwsim/data/serialize/decoder.py +59 -0
  35. gwsim/data/serialize/encoder.py +44 -0
  36. gwsim/data/serialize/serializable.py +33 -0
  37. gwsim/data/time_series/__init__.py +3 -0
  38. gwsim/data/time_series/inject.py +104 -0
  39. gwsim/data/time_series/time_series.py +355 -0
  40. gwsim/data/time_series/time_series_list.py +182 -0
  41. gwsim/detector/__init__.py +8 -0
  42. gwsim/detector/base.py +156 -0
  43. gwsim/detector/detectors/E1_2L_Aligned_Sardinia.interferometer +22 -0
  44. gwsim/detector/detectors/E1_2L_Misaligned_Sardinia.interferometer +22 -0
  45. gwsim/detector/detectors/E1_Triangle_EMR.interferometer +19 -0
  46. gwsim/detector/detectors/E1_Triangle_Sardinia.interferometer +19 -0
  47. gwsim/detector/detectors/E2_2L_Aligned_EMR.interferometer +22 -0
  48. gwsim/detector/detectors/E2_2L_Misaligned_EMR.interferometer +22 -0
  49. gwsim/detector/detectors/E2_Triangle_EMR.interferometer +19 -0
  50. gwsim/detector/detectors/E2_Triangle_Sardinia.interferometer +19 -0
  51. gwsim/detector/detectors/E3_Triangle_EMR.interferometer +19 -0
  52. gwsim/detector/detectors/E3_Triangle_Sardinia.interferometer +19 -0
  53. gwsim/detector/noise_curves/ET_10_HF_psd.txt +3000 -0
  54. gwsim/detector/noise_curves/ET_10_full_cryo_psd.txt +3000 -0
  55. gwsim/detector/noise_curves/ET_15_HF_psd.txt +3000 -0
  56. gwsim/detector/noise_curves/ET_15_full_cryo_psd.txt +3000 -0
  57. gwsim/detector/noise_curves/ET_20_HF_psd.txt +3000 -0
  58. gwsim/detector/noise_curves/ET_20_full_cryo_psd.txt +3000 -0
  59. gwsim/detector/noise_curves/ET_D_psd.txt +3000 -0
  60. gwsim/detector/utils.py +90 -0
  61. gwsim/glitch/__init__.py +7 -0
  62. gwsim/glitch/base.py +69 -0
  63. gwsim/mixin/__init__.py +8 -0
  64. gwsim/mixin/detector.py +203 -0
  65. gwsim/mixin/gwf.py +192 -0
  66. gwsim/mixin/population_reader.py +175 -0
  67. gwsim/mixin/randomness.py +107 -0
  68. gwsim/mixin/time_series.py +295 -0
  69. gwsim/mixin/waveform.py +47 -0
  70. gwsim/noise/__init__.py +19 -0
  71. gwsim/noise/base.py +134 -0
  72. gwsim/noise/bilby_stationary_gaussian.py +117 -0
  73. gwsim/noise/colored_noise.py +275 -0
  74. gwsim/noise/correlated_noise.py +257 -0
  75. gwsim/noise/pycbc_stationary_gaussian.py +112 -0
  76. gwsim/noise/stationary_gaussian.py +44 -0
  77. gwsim/noise/white_noise.py +51 -0
  78. gwsim/repository/__init__.py +0 -0
  79. gwsim/repository/zenodo.py +269 -0
  80. gwsim/signal/__init__.py +11 -0
  81. gwsim/signal/base.py +137 -0
  82. gwsim/signal/cbc.py +61 -0
  83. gwsim/simulator/__init__.py +7 -0
  84. gwsim/simulator/base.py +315 -0
  85. gwsim/simulator/state.py +85 -0
  86. gwsim/utils/__init__.py +11 -0
  87. gwsim/utils/datetime_parser.py +44 -0
  88. gwsim/utils/et_2l_geometry.py +165 -0
  89. gwsim/utils/io.py +167 -0
  90. gwsim/utils/log.py +145 -0
  91. gwsim/utils/population.py +48 -0
  92. gwsim/utils/random.py +69 -0
  93. gwsim/utils/retry.py +75 -0
  94. gwsim/utils/triangular_et_geometry.py +164 -0
  95. gwsim/version.py +7 -0
  96. gwsim/waveform/__init__.py +7 -0
  97. gwsim/waveform/factory.py +83 -0
  98. gwsim/waveform/pycbc_wrapper.py +37 -0
  99. gwsim-0.1.0.dist-info/METADATA +157 -0
  100. gwsim-0.1.0.dist-info/RECORD +103 -0
  101. gwsim-0.1.0.dist-info/WHEEL +4 -0
  102. gwsim-0.1.0.dist-info/entry_points.txt +2 -0
  103. gwsim-0.1.0.dist-info/licenses/LICENSE +21 -0
@@ -0,0 +1,83 @@
1
+ """Waveform Factory for generating gravitational waveforms using various models."""
2
+
3
+ from __future__ import annotations
4
+
5
+ import importlib
6
+ import logging
7
+ from collections.abc import Callable
8
+ from typing import Any
9
+
10
+ from gwpy.timeseries import TimeSeries
11
+ from pycbc.waveform import td_approximants
12
+
13
+ from gwsim.waveform.pycbc_wrapper import pycbc_waveform_wrapper
14
+
15
+ logger = logging.getLogger("gwsim")
16
+
17
+
18
+ class WaveformFactory:
19
+ """Factory class for generating gravitational waveforms using various models."""
20
+
21
+ def __init__(self):
22
+ """Initialize the WaveformFactory with built-in models."""
23
+ self._models: dict[str, Callable] = dict.fromkeys(td_approximants(), pycbc_waveform_wrapper)
24
+
25
+ def register_model(self, name: str, factory_func: Callable | str) -> None:
26
+ """Register a new waveform model.
27
+
28
+ Args:
29
+ name: Name of the waveform model.
30
+ factory_func: A callable that generates the waveform or a string path to import it.
31
+ """
32
+ if isinstance(factory_func, str):
33
+ # Import from path
34
+ module_path, func_name = factory_func.rsplit(".", 1)
35
+ module = importlib.import_module(module_path)
36
+ factory_func: Callable = getattr(module, func_name)
37
+
38
+ self._models[name] = factory_func
39
+ logger.info("Registered waveform model: %s", name)
40
+
41
+ def get_model(self, name: str) -> Callable:
42
+ """Get a waveform model by name.
43
+
44
+ Args:
45
+ name: Name of the waveform model.
46
+
47
+ Returns:
48
+ Callable: The waveform generation function.
49
+ """
50
+ if name in self._models:
51
+ return self._models[name]
52
+ raise ValueError(f"Waveform model '{name}' not found. " f"Available: {list(self._models.keys())}.")
53
+
54
+ def list_models(self) -> list[str]:
55
+ """List all registered waveform models.
56
+
57
+ Returns:
58
+ list[str]: List of waveform model names.
59
+ """
60
+ return list(self._models.keys())
61
+
62
+ def generate(
63
+ self,
64
+ waveform_model: str,
65
+ parameters: dict[str, Any],
66
+ **extra_params,
67
+ ) -> dict[str, TimeSeries]:
68
+ """Generate a waveform using the specified model and parameters.
69
+
70
+ Args:
71
+ waveform_model: Name of the waveform model to use.
72
+ parameters: Parameters for the waveform generation.
73
+ extra_params: Additional parameters to pass to the waveform function.
74
+
75
+ Returns:
76
+ dict[str, TimeSeries]: Generated waveform data.
77
+ """
78
+ waveform_func = self.get_model(waveform_model)
79
+
80
+ # Merge parameters
81
+ all_params = {"waveform_model": waveform_model, **parameters, **extra_params}
82
+
83
+ return waveform_func(**all_params)
@@ -0,0 +1,37 @@
1
+ """Wrapper for generating waveforms using PyCBC and converting them to GWpy TimeSeries."""
2
+
3
+ from __future__ import annotations
4
+
5
+ from gwpy.timeseries import TimeSeries
6
+ from pycbc.waveform import get_td_waveform
7
+
8
+
9
+ def pycbc_waveform_wrapper(
10
+ tc: float, sampling_frequency: float, minimum_frequency: float, waveform_model: str, **kwargs
11
+ ) -> dict[str, TimeSeries]:
12
+ """Wrapper to generate waveforms using PyCBC and convert to GWpy TimeSeries.
13
+
14
+ Args:
15
+ tc: Coalescence time in GPS seconds.
16
+ sampling_frequency: Sampling frequency in Hz.
17
+ minimum_frequency: Minimum frequency of the waveform in Hz.
18
+ waveform_model: Name of the waveform model to use.
19
+ **kwargs: Additional keyword arguments for the waveform generation.
20
+ Returns:
21
+ A dictionary with 'plus' and 'cross' keys containing the respective GWpy TimeSeries.
22
+ """
23
+
24
+ # Call PyCBC to generate the waveform.
25
+ hp, hc = get_td_waveform(
26
+ approximant=waveform_model, delta_t=1 / sampling_frequency, f_lower=minimum_frequency, **kwargs
27
+ )
28
+
29
+ # Add the coalescence time.
30
+ hp.start_time += tc
31
+ hc.start_time += tc
32
+
33
+ # Convert to GWpy
34
+ hp_gwpy = TimeSeries.from_pycbc(hp, copy=True)
35
+ hc_gwpy = TimeSeries.from_pycbc(hc, copy=True)
36
+
37
+ return {"plus": hp_gwpy, "cross": hc_gwpy}
@@ -0,0 +1,157 @@
1
+ Metadata-Version: 2.4
2
+ Name: gwsim
3
+ Version: 0.1.0
4
+ Summary: A Python package for simulating gravitational wave detector data for mock data challenges.
5
+ Project-URL: Documentation, https://gwsim.readthedocs.io/en/latest/
6
+ Project-URL: Source, https://gitlab.et-gw.eu/et-projects/software/gwsim
7
+ Project-URL: Tracker, https://gitlab.et-gw.eu/et-projects/software/gwsim/-/issues
8
+ Author-email: "Isaac C. F. Wong" <chunfung.wong@kuleuven.be>
9
+ License-File: LICENSE
10
+ Classifier: Development Status :: 3 - Alpha
11
+ Classifier: Intended Audience :: Science/Research
12
+ Classifier: License :: OSI Approved :: MIT License
13
+ Classifier: Programming Language :: Python :: 3 :: Only
14
+ Classifier: Programming Language :: Python :: 3.10
15
+ Classifier: Programming Language :: Python :: 3.11
16
+ Classifier: Programming Language :: Python :: 3.12
17
+ Classifier: Topic :: Scientific/Engineering :: Astronomy
18
+ Classifier: Topic :: Scientific/Engineering :: Physics
19
+ Requires-Python: >=3.10
20
+ Requires-Dist: bilby
21
+ Requires-Dist: gengli
22
+ Requires-Dist: h5py
23
+ Requires-Dist: numpy
24
+ Requires-Dist: pycbc
25
+ Requires-Dist: pydantic
26
+ Requires-Dist: pymap3d
27
+ Requires-Dist: tqdm
28
+ Requires-Dist: typer
29
+ Provides-Extra: dev
30
+ Requires-Dist: black; extra == 'dev'
31
+ Requires-Dist: flake8; extra == 'dev'
32
+ Requires-Dist: pre-commit; extra == 'dev'
33
+ Requires-Dist: pytest; extra == 'dev'
34
+ Provides-Extra: docs
35
+ Requires-Dist: mkdocs; extra == 'docs'
36
+ Requires-Dist: mkdocs-gen-files; extra == 'docs'
37
+ Requires-Dist: mkdocs-literate-nav; extra == 'docs'
38
+ Requires-Dist: mkdocs-material; extra == 'docs'
39
+ Requires-Dist: mkdocs-section-index; extra == 'docs'
40
+ Requires-Dist: mkdocstrings[python]; extra == 'docs'
41
+ Provides-Extra: test
42
+ Requires-Dist: bandit[toml]==1.8.2; extra == 'test'
43
+ Requires-Dist: black==25.1.0; extra == 'test'
44
+ Requires-Dist: check-manifest==0.50; extra == 'test'
45
+ Requires-Dist: flake8; extra == 'test'
46
+ Requires-Dist: flake8-bugbear==24.12.12; extra == 'test'
47
+ Requires-Dist: flake8-docstrings; extra == 'test'
48
+ Requires-Dist: flake8-formatter-junit-xml; extra == 'test'
49
+ Requires-Dist: flake8-pyproject; extra == 'test'
50
+ Requires-Dist: pre-commit==4.1.0; extra == 'test'
51
+ Requires-Dist: pylint-junit; extra == 'test'
52
+ Requires-Dist: pylint==3.3.4; extra == 'test'
53
+ Requires-Dist: pytest-cov==6.0.0; extra == 'test'
54
+ Requires-Dist: pytest-github-actions-annotate-failures; extra == 'test'
55
+ Requires-Dist: pytest-mock<3.14.1; extra == 'test'
56
+ Requires-Dist: pytest-runner; extra == 'test'
57
+ Requires-Dist: pytest==8.3.4; extra == 'test'
58
+ Requires-Dist: shellcheck-py==0.10.0.1; extra == 'test'
59
+ Description-Content-Type: text/markdown
60
+
61
+ # gwsim
62
+
63
+ [![Pipeline](https://gitlab.et-gw.eu/et-projects/software/gwsim/badges/main/pipeline.svg)](https://gitlab.et-gw.eu/et-projects/software/gwsim/-/pipelines)
64
+ [![Documentation](https://app.readthedocs.org/projects/gwsim/badge/?version=latest)](https://gwsim.readthedocs.io/en/latest/)
65
+ [![Coverage Report](https://gitlab.et-gw.eu/et-projects/software/gwsim/badges/main/coverage.svg)](https://gitlab.et-gw.eu/et-projects/software/gwsim/-/commits/main)
66
+ [![PyPI Version](https://img.shields.io/pypi/v/gwsim)](https://pypi.org/project/gwsim/)
67
+ [![Python Versions](https://img.shields.io/pypi/pyversions/gwsim)](https://pypi.org/project/gwsim/)
68
+ [![License](https://img.shields.io/badge/license-MIT-blue.svg)](https://gitlab.et-gw.eu/et-projects/software/gwsim/-/blob/main/LICENSE)
69
+
70
+ A Python package for generating Mock Data Challenge (MDC) datasets for the gravitational-wave (GW) community. It simulates strain data for detectors like Einstein Telescope, providing a unified interface for reproducible GW data generation.
71
+
72
+ ## Features
73
+
74
+ - **Modular Design**: Uses mixins for flexible simulator composition
75
+ - **Detector Support**: Built-in support for various GW detectors with custom configuration options
76
+ - **Waveform Generation**: Integrates with PyCBC and LALSuite for accurate signal simulation
77
+ - **Noise Models**: Supports colored and correlated noise generation (In-Progress)
78
+ - **Population Models**: Handles injection populations for signals and glitches
79
+ - **Data Formats**: Outputs in standard GW formats (GWF frames)
80
+ - **CLI Interface**: Command-line tools for easy simulation workflows
81
+
82
+ ## Installation
83
+
84
+ We recommend using `uv` to manage virtual environments for installing gwsim.
85
+
86
+ If you don't have `uv` installed, you can install it with pip. See the project pages for more details:
87
+
88
+ - Install via pip: `pip install --upgrade pip && pip install uv`
89
+ - Project pages: [uv on PyPI](https://pypi.org/project/uv/) | [uv on GitHub](https://github.com/astral-sh/uv)
90
+ - Full documentation and usage guide: [uv docs](https://docs.astral.sh/uv/)
91
+
92
+ ### From PyPI
93
+
94
+ ```bash
95
+ # Create a virtual environment (recommended with uv)
96
+ uv venv gwsim-env
97
+ source gwsim-env/bin/activate # On Windows: gwsim-env\Scripts\activate
98
+ uv pip install gwsim
99
+ ```
100
+
101
+ ### From Source
102
+
103
+ ```bash
104
+ git clone https://gitlab.et-gw.eu/et-projects/software/gwsim.git
105
+ ce gwsim
106
+ # Create a virtual environment (recommended with uv)
107
+ uv venv
108
+ source .venv/bin/activate # On Windows: .venv\Scripts\activate
109
+ uv pip install .
110
+ ```
111
+
112
+ ## Quick Start
113
+
114
+ ### Command Line
115
+
116
+ ```bash
117
+ # Generate simulated data
118
+ gwsim simulate config.yaml
119
+ ```
120
+
121
+ ## Configuration
122
+
123
+ gwsim uses YAML configuration files for reproducible simulations. See `examples/config.yaml` for a complete example.
124
+
125
+ Key configuration sections:
126
+ - `globals`: Shared parameters (sampling rate, duration, etc.)
127
+ - `simulators`: List of noise, signal, and glitch generators
128
+
129
+ ## Documentation
130
+
131
+ Full documentation to be available at readthedocs.io.
132
+
133
+ ## Contributing
134
+
135
+ Contributions are welcome!
136
+
137
+ 1. Fork the repository
138
+ 2. Create a feature branch
139
+ 3. Make your changes
140
+ 4. Add tests
141
+ 5. Submit a pull request
142
+
143
+ ## Testing
144
+
145
+ Run the test suite:
146
+
147
+ ```bash
148
+ pytest
149
+ ```
150
+
151
+ ## License
152
+
153
+ This project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details.
154
+
155
+ ## Support
156
+
157
+ For questions or issues, please open an issue on [GitLab](https://gitlab.et-gw.eu/et-projects/software/gwsim/-/issues/new) or contact the maintainers.
@@ -0,0 +1,103 @@
1
+ gwsim/__init__.py,sha256=WXpImlwdmJ-fNYhsWZTRuVdMgwfN3gCqyVULrSoksII,243
2
+ gwsim/__main__.py,sha256=eCydMyajToakI2YRE7vf6U5cqzdPxD5Y5zAcC-w89ow,189
3
+ gwsim/version.py,sha256=f_rRezREZ6quJCLGPpQZsoSjSj8ScfnyEbGxArZoToM,153
4
+ gwsim/cli/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
5
+ gwsim/cli/config.py,sha256=ZZnqEWO2WoxVvXnLFQLZEd5AvzYUnfB8TVi-1eUOhlY,2817
6
+ gwsim/cli/default_config.py,sha256=7uk5lm62M8Sw5GKK-zNuLpQ-p6pLxkoigeOwvMnS6nQ,1687
7
+ gwsim/cli/main.py,sha256=hpNn76707_n08Hhm0DQNdfvxmTyd6jgBqvg5lLrFWao,3099
8
+ gwsim/cli/merge.py,sha256=rlRMfecB6MiPcUC4cES0z6sKZIFiXLdXpnCK0YXqDtY,6632
9
+ gwsim/cli/simulate.py,sha256=9IFXkvvL6fYu6d08x9auJunXrrdGp9xihLiOUUOEAWQ,9595
10
+ gwsim/cli/simulate_utils.py,sha256=NU30P5o4VmHlQKehs6jhT8dSfojGuDD-V14etnVlhLY,23442
11
+ gwsim/cli/validate.py,sha256=dBf_KLD6qrb9k-Fb76QhLdZImAiUjOVmoATsVg466ec,10475
12
+ gwsim/cli/repository/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
13
+ gwsim/cli/repository/create.py,sha256=amAYVu5Bi9kjEe8IbDh3Ebp_hcNGraaFuBdnGfMAGnQ,3411
14
+ gwsim/cli/repository/delete.py,sha256=ufgLdrHrtqgs5RyofzEfC_fdb4gUAs1j1uIO8WKOmtc,1854
15
+ gwsim/cli/repository/download.py,sha256=Bwpu8crrOMUNAyzP_Jb7qWR6GWaGmoFD2esxOUwibIw,2195
16
+ gwsim/cli/repository/list_depositions.py,sha256=tH5v0AK9tpWXc5iupN9St3f_rEwUJMpGL8_DzcnvFMY,2205
17
+ gwsim/cli/repository/main.py,sha256=HwK_NH6vBECoGU2wBuAXB0o3ZY-pCRBW5LPq82r_pqk,1607
18
+ gwsim/cli/repository/publish.py,sha256=crjniS030K8qUhCyalvKy5KL172B9bYjrMy_5808wAI,1756
19
+ gwsim/cli/repository/upload.py,sha256=3AT4PxFaCvdly0yD70xSWkW1D2o-467A6a3YNMPA99g,2900
20
+ gwsim/cli/repository/utils.py,sha256=9vz9AL0HUiMVMmylCkwYsibib1876QCDQqRBLG0CdnI,1619
21
+ gwsim/cli/repository/verify.py,sha256=kVr8yYHiKXVzP5c90ZkvLJ1pHLiMEhkTzJCgdbtT9U0,2448
22
+ gwsim/cli/repository/metadata/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
23
+ gwsim/cli/repository/metadata/main.py,sha256=QpXQY6o-t52BKRdRguLqT2lI4SaNIeLNjAT8d15G3w0,574
24
+ gwsim/cli/repository/metadata/update.py,sha256=r18GJo48HTo5PIGJW9aphwNhsKylgVLRHO6kQu36xD4,2125
25
+ gwsim/cli/utils/__init__.py,sha256=IVsX_vpiR5180cWokC6SyTKc9e3XVh3WhMuyyQzX6NI,2405
26
+ gwsim/cli/utils/checkpoint.py,sha256=MdxNo_ia1PRAZMWt2Wz2ncmTxPLvQrdkK3Et5XhAjaw,6893
27
+ gwsim/cli/utils/config.py,sha256=vZJT8_iHWpmyzzGwIMdc_ME5rOYZToT0tTJOukOHWRs,13502
28
+ gwsim/cli/utils/hash.py,sha256=PvvaJrkt_Q6GP-NLcLFKSA61DgAjr-0dyVEUO9bregQ,685
29
+ gwsim/cli/utils/retry.py,sha256=LjgTT1vId_vCZcqaaPIuJvccdADVC1lGwQSC43yyR0A,2015
30
+ gwsim/cli/utils/simulation_plan.py,sha256=9fGK3rpSA0lO39oT-ij8FrdbxcEQDBnpkl5uiVfcGGw,15437
31
+ gwsim/cli/utils/template.py,sha256=jKmR_-cWuWZ_CEzjcihXHFqe69tfib3xxqd3tnGtc_g,1825
32
+ gwsim/cli/utils/utils.py,sha256=T0bIHVUJjjtym2aB53zKgVnn40MIYg3TqQQNr9IRnEU,5232
33
+ gwsim/data/__init__.py,sha256=Ff_82egyQ9d_Wf6zgwRyOCmQ3EshOnKhM2soLXNZFP8,260
34
+ gwsim/data/serialize/__init__.py,sha256=kZjF8t1tGsqnosjsgs2rzbMv_FsUMK_nqMCQ13r-Dzo,294
35
+ gwsim/data/serialize/decoder.py,sha256=400L1eCumLXPalZqk0Y2Urteabheeqv4TmiDOA7XymQ,1895
36
+ gwsim/data/serialize/encoder.py,sha256=bdrDRJt9uTc8IgzA7w75Jxxfn-xOIRQMy0xmKY0OO04,1248
37
+ gwsim/data/serialize/serializable.py,sha256=5DxAguQEYAfuaf603HTpPMY5PPMGy0XjI9VPZtfCzMY,1176
38
+ gwsim/data/time_series/__init__.py,sha256=T4XmSxAOMYw_4O8MkIUDHC5-R8H78HEosaKMJkxOFuU,62
39
+ gwsim/data/time_series/inject.py,sha256=WYcNvfonU2UvKpODUybLxZWym0sdZz2OGBbfvNyUbec,4158
40
+ gwsim/data/time_series/time_series.py,sha256=gqC3wTJeMMyL6QmtmkLmqjZ7Giq7JSlZ3epSKUib1MY,13223
41
+ gwsim/data/time_series/time_series_list.py,sha256=yyVgNWPs8NcCCkSOfu0lRDH2Gsz1JKuGingzvPcoK6k,5858
42
+ gwsim/detector/__init__.py,sha256=dwHnUJ0EjQnXwjeQQVO7viV46PWIsVMQgEmbhObaz8Y,283
43
+ gwsim/detector/base.py,sha256=GbVBIexdT9kSfGcFi92QLRyYEswvuewyp5Ian0YokfM,5965
44
+ gwsim/detector/utils.py,sha256=6pR6qxkK2StHJgRw5eqpvDp-XqlojY5QEgeWV6FTq-Y,3196
45
+ gwsim/detector/detectors/E1_2L_Aligned_Sardinia.interferometer,sha256=D8wWMJ1wN2ChAD4AOAoIKwQSjr-8mpjGE1ib4kx-JH0,1387
46
+ gwsim/detector/detectors/E1_2L_Misaligned_Sardinia.interferometer,sha256=XoZ4-zUJOaK2iEhScSzgJBajdeyUBpXZ_XmNDqDHQBk,1397
47
+ gwsim/detector/detectors/E1_Triangle_EMR.interferometer,sha256=rY5U_W-r7QD--33Cs9xkZrbIbpp-2Rsm4VsbgrKvGHI,1122
48
+ gwsim/detector/detectors/E1_Triangle_Sardinia.interferometer,sha256=xZMnNAL3qFTS491Jtp8Z0iDnBnxT95fHvjcuI4vgMSg,1101
49
+ gwsim/detector/detectors/E2_2L_Aligned_EMR.interferometer,sha256=bVOl6kJsAH9BeZSVKZkGOXGNxdnTx4_gtE2lBRbCOro,1382
50
+ gwsim/detector/detectors/E2_2L_Misaligned_EMR.interferometer,sha256=LV0wmkiCbjlWFaplOBk7ZsBUMfup3qw21N-27CmqDFY,1391
51
+ gwsim/detector/detectors/E2_Triangle_EMR.interferometer,sha256=EVT2v_s-J_-KCKkM9GtI-DZpa_ZSb3UHfNFSZDPPUgw,1123
52
+ gwsim/detector/detectors/E2_Triangle_Sardinia.interferometer,sha256=Le6LUHMfM3gC9cYVO7qMO1Z43AVlE3SdO1CacCt6e1U,1102
53
+ gwsim/detector/detectors/E3_Triangle_EMR.interferometer,sha256=tuWHqU3xAeog4F0Tz4BWo_3TBschQiANVVD8q-lbsls,1122
54
+ gwsim/detector/detectors/E3_Triangle_Sardinia.interferometer,sha256=gSawmcxsfBtDbdZ6L488_yarXYefO4EeZhDYo25LpXY,1102
55
+ gwsim/detector/noise_curves/ET_10_HF_psd.txt,sha256=ojJUG9avenDrGELMEv30b9yp4s_Rv7R9K8937aTYMus,150000
56
+ gwsim/detector/noise_curves/ET_10_full_cryo_psd.txt,sha256=KbP8rBJkDGF6akxBgXkAAax37QBdVAfylK0B4J_7ic4,150000
57
+ gwsim/detector/noise_curves/ET_15_HF_psd.txt,sha256=67cqUT06oneJEKL1-chL2Oo9_5hDwkKDLwPCbIANrHU,150000
58
+ gwsim/detector/noise_curves/ET_15_full_cryo_psd.txt,sha256=SbqEn7-6BiCJ_6sng9_qk0MmcOuyjpTb5au6LOSb4R0,150000
59
+ gwsim/detector/noise_curves/ET_20_HF_psd.txt,sha256=HmatFfhQsA-dk_mLVxgr6N2fgTAXjCfwS7Z_ViYbctw,150000
60
+ gwsim/detector/noise_curves/ET_20_full_cryo_psd.txt,sha256=GsFn16Q1tuCBnIDpEghz7oTXAZx_2SlsXmcjNYm9DKc,150000
61
+ gwsim/detector/noise_curves/ET_D_psd.txt,sha256=kgifuRtaIq7CCmMRTahM8eSUt1B_t8QeYB4HDJV5LNY,150000
62
+ gwsim/glitch/__init__.py,sha256=AaJySHWplhtxJ3-zWDVfzqBiUgnM__MEd7-qAFofmsE,167
63
+ gwsim/glitch/base.py,sha256=tomYwyYrHpFwDo5v19ecCNHYxfvqsy22pvGt_plNumk,2368
64
+ gwsim/mixin/__init__.py,sha256=LIum-uu5noqUpMhsJHBTpNTasCrb6yflU0I5NuhVa24,208
65
+ gwsim/mixin/detector.py,sha256=wy33ei0PDfDT8P78ixDW4SBeQc-MZ7e92QYEA6SjECQ,8158
66
+ gwsim/mixin/gwf.py,sha256=82WfqbXkZeT4l-qB1g220VxI4j4bpJZcJ-PhQvpAKFQ,6383
67
+ gwsim/mixin/population_reader.py,sha256=op-FqOcYyDz2pEQ7OZXz8g5g0owR_wvdQK1AsxAJqLw,6179
68
+ gwsim/mixin/randomness.py,sha256=nhgePtn7gm5_Rh6b2S_g6mwUnuLQoRw7aJ_nNVI8VeE,3116
69
+ gwsim/mixin/time_series.py,sha256=RlUYp5oD8qH2dpEVZTVnLlDmNqty9dBGzGqL66bc38g,10844
70
+ gwsim/mixin/waveform.py,sha256=VWdzBaV3xHBMwqXvPW7khg_AayF7gNNCTNBoYP6NFvU,1719
71
+ gwsim/noise/__init__.py,sha256=cGLCQ17pbmX1K6USG1lz_Ph8pjqCe1IpS0EN4k1SuUk,637
72
+ gwsim/noise/base.py,sha256=VQgKmP2FR_p-UUs8XCmlV_0mMpK55TEFHb374CSAgMc,5046
73
+ gwsim/noise/bilby_stationary_gaussian.py,sha256=SGwV3HuD9UejJPbJ7gvNBpo3n4HH5kyRFjQFlLv5kEI,4505
74
+ gwsim/noise/colored_noise.py,sha256=oHfbZEUiU_578m_N-RMhp-EuryhxRjocmaBGLbc7Wqg,11555
75
+ gwsim/noise/correlated_noise.py,sha256=khV_W9cl144CJ8MVQrZ_lahf6lZ7apbP4mD-ju7OF1M,11212
76
+ gwsim/noise/pycbc_stationary_gaussian.py,sha256=pIrONLZ9xY6kmQn2V7OxeaorjVL2KZx_5fY7c3SRi0o,4877
77
+ gwsim/noise/stationary_gaussian.py,sha256=lORSepEZJCmmp-6hpj3qYnQFT2XjmttXskWY9Qqjhdc,1539
78
+ gwsim/noise/white_noise.py,sha256=ZvNAYx5KSGzViadtnx7d877EqWsOZAk2uVZa3OrwJQA,1784
79
+ gwsim/repository/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
80
+ gwsim/repository/zenodo.py,sha256=2_BxlkD9vHarXHEa7ovC1KBaJNPGaDKZyRhy5r-pwCw,8998
81
+ gwsim/signal/__init__.py,sha256=ueFVbVGCNoU0asnj5zzLnz-QCVLbNzX16HzIMHqxM3s,239
82
+ gwsim/signal/base.py,sha256=DgJKrPVMVEB3YQ9TCCuv8W4x7cFS42zPJY771DJ7cBk,5277
83
+ gwsim/signal/cbc.py,sha256=PZpL_6dbg0IAVso3NWZeyCgMeFDTwBJBbQBFbEWB3Dk,2480
84
+ gwsim/simulator/__init__.py,sha256=VzYTH1p6zE_g5V6576W_xALHS7r9PLfncV1GCOQGleo,124
85
+ gwsim/simulator/base.py,sha256=Kb_ZIj6Cd47OMWYwTaba72IMMQOZjev4XrbSKNuGsGY,11125
86
+ gwsim/simulator/state.py,sha256=6ifgWCae-JE9x47kPSMeEbCdEZepvieARKnOtFgvsAM,2910
87
+ gwsim/utils/__init__.py,sha256=BxXfwSTdhd38af3DHnRb_32XumvTa57f6ts-58Q3wjM,184
88
+ gwsim/utils/datetime_parser.py,sha256=bM0zo1kiZ-1hIX2lZCdk1yuUilsNzz8BkcOAc38maIc,1239
89
+ gwsim/utils/et_2l_geometry.py,sha256=BKEaYCQc4psDGqDgzjYUuI0uiuJ5UiW0EVhYs7AXdw8,6693
90
+ gwsim/utils/io.py,sha256=VDo2o0B2vncSAbF4tXQPg7oqKef2Ve8_Jc-Ezj1x3TY,6291
91
+ gwsim/utils/log.py,sha256=uSuaQ23TXlGXpbQ5x8B7swWkZvoMa8bjUUlfAsxhHKc,5370
92
+ gwsim/utils/population.py,sha256=OZ1knKhG8XQMVe5Q_QhIFfwad3SteBKyZgpByUek1is,1231
93
+ gwsim/utils/random.py,sha256=fajVQUprt9TjZspnQKVQEiDDY3O_eZYcIW0Q7mITyy4,1855
94
+ gwsim/utils/retry.py,sha256=w1ScvqMckli6qpliNY1GHD-chLWct8Det04JIUNFARI,2623
95
+ gwsim/utils/triangular_et_geometry.py,sha256=nXsr11MV9Bph_L7QyvKjxelIIk8-IWi6UCCSUUk1N4c,6515
96
+ gwsim/waveform/__init__.py,sha256=LoYbl0o6KJaSniZFqLhi8_kiWONtlMduzIwwXvbILHQ,176
97
+ gwsim/waveform/factory.py,sha256=HprjsY1ls7Wm7nL9xwGoNDBcv19tRHmKISmyfwq_d_k,2737
98
+ gwsim/waveform/pycbc_wrapper.py,sha256=2hMy9GS29pap5gHAr8vIiFUiSokQQdXEJCeFfl_JFrE,1312
99
+ gwsim-0.1.0.dist-info/METADATA,sha256=L3FwoJ7I4N_Cdsm2jmGkLWFekYH6FtIRvska27pM4KU,5980
100
+ gwsim-0.1.0.dist-info/WHEEL,sha256=WLgqFyCfm_KASv4WHyYy0P3pM_m7J5L9k2skdKLirC8,87
101
+ gwsim-0.1.0.dist-info/entry_points.txt,sha256=Og7LGhIX91RP-wDorgYmDPTjl6mWUKuZCxxNBrRDx4E,45
102
+ gwsim-0.1.0.dist-info/licenses/LICENSE,sha256=gQEhe-cH8Z9vjf_stoN-Us-sVq7IBK__Cd0d3OPyy7A,1068
103
+ gwsim-0.1.0.dist-info/RECORD,,
@@ -0,0 +1,4 @@
1
+ Wheel-Version: 1.0
2
+ Generator: hatchling 1.28.0
3
+ Root-Is-Purelib: true
4
+ Tag: py3-none-any
@@ -0,0 +1,2 @@
1
+ [console_scripts]
2
+ gwsim = gwsim.cli.main:app
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2025 ET Projects
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.