User guide¶
gwmock-signal provides small, composable building blocks for time-domain GW signal simulation in Python, aligned with PyCBC, GWpy, and typical LIGO/Virgo/KAGRA analysis habits. The parent gwmock package (separate repo) is intended to orchestrate full mock-data challenges; this library focuses on the physics-adjacent primitives.
Typical pipeline¶
flowchart LR
W[Waveforms] --> P[Projection]
P --> I[Injection]
I --> M[Multichannel]
Under User guide → Examples in the sidebar:
- Waveforms — Produce \(h_{+}\), \(h_{\times}\) with PyCBC; optional registry for custom models.
- Detector projection — Map polarizations to each IFO strain using antenna patterns and delays.
- Strain injection — Add simulated strain into a longer GWpy segment (e.g. zeros or noise).
- Multichannel strains — Stack per-detector series in a fixed order for array-oriented code.
Example pages are narrative + copy-paste snippets. Authoritative API details (signatures, types, exceptions) are only in API (auto-generated from docstrings):
| Topic | Examples (this site) | Reference (signatures & types) |
|---|---|---|
| Waveforms | Waveforms | Waveform API |
| Projection | Detector projection | Projection API |
| Injection | Strain injection | Injection API |
| Multichannel | Multichannel strains | Multichannel API |
Prerequisites¶
- Install the package (see Installation).
- For a minimal environment check, see Quick Start.
See also¶
- API overview — all reference sections
- Documentation home
- Contributing
- Maintainer project tracker (roadmap and backlog)