Skip to main content

A small jax package for differentiable and fast gravitational wave data analysis.

Project description

Ripple :ocean:

A small jax package for differentiable and fast gravitational wave data analysis.

Getting Started

Installation

Both waveforms have been tested extensively and match lalsuite implementations to machine precision across all the parameter space.

Ripple can be installed using

pip3 install ripplegw

Note that by default we do not include enable float64 in jax since we want allow users to use float32 to improve performance. If you require float64, please include the following code at the start of the script:

from jax import config
config.update("jax_enable_x64", True)

See https://jax.readthedocs.io/en/latest/notebooks/Common_Gotchas_in_JAX.html for other common jax gotchas.

Supported waveforms

  • IMRPhenomXAS (aligned spin)
  • IMRPhenomD (aligned spin)
  • IMRPhenomPv2 (Still finalizing sampling checks)
  • TaylorF2 with tidal effects
  • IMRPhenomD_NRTidalv2, verified for the low spin regime (chi1, chi2 < 0.05), further testing is required for higher spins

Generating a waveform and its derivative

Generating a waveform is incredibly easy. Below is an example of calling the PhenomXAS waveform model to get the h_+ and h_x polarizations of the waveform model

We start with some basic imports:

import jax.numpy as jnp

from ripple.waveforms import IMRPhenomXAS
from ripple import ms_to_Mc_eta

And now we can just set the parameters and call the waveform!

# Get a frequency domain waveform
# source parameters

m1_msun = 20.0 # In solar masses
m2_msun = 19.0
chi1 = 0.5 # Dimensionless spin
chi2 = -0.5
tc = 0.0 # Time of coalescence in seconds
phic = 0.0 # Time of coalescence
dist_mpc = 440 # Distance to source in Mpc
inclination = 0.0 # Inclination Angle

# The PhenomD waveform model is parameterized with the chirp mass and symmetric mass ratio
Mc, eta = ms_to_Mc_eta(jnp.array([m1_msun, m2_msun]))

# These are the parametrs that go into the waveform generator
# Note that JAX does not give index errors, so if you pass in the
# the wrong array it will behave strangely
theta_ripple = jnp.array([Mc, eta, chi1, chi2, dist_mpc, tc, phic, inclination])

# Now we need to generate the frequency grid
f_l = 24
f_u = 512
del_f = 0.01
fs = jnp.arange(f_l, f_u, del_f)
f_ref = f_l

# And finally lets generate the waveform!
hp_ripple, hc_ripple = IMRPhenomXAS.gen_IMRPhenomXAS_hphc(fs, theta_ripple, f_ref)

# Note that we have not internally jitted the functions since this would
# introduce an annoying overhead each time the user evaluated the function with a different length frequency array
# We therefore recommend that the user jit the function themselves to accelerate evaluations. For example:

import jax

@jax.jit
def waveform(theta):
    return IMRPhenomXAS.gen_IMRPhenomXAS_hphc(fs, theta)

Citation

Please cite this paper if you've used ripple in your work! It's really helpful!

@article{Edwards:2023sak,
    author = "Edwards, Thomas D. P. and Wong, Kaze W. K. and Lam, Kelvin K. H. and Coogan, Adam and Foreman-Mackey, Daniel and Isi, Maximiliano and Zimmerman, Aaron",
    title = "{ripple: Differentiable and Hardware-Accelerated Waveforms for Gravitational Wave Data Analysis}",
    eprint = "2302.05329",
    archivePrefix = "arXiv",
    primaryClass = "astro-ph.IM",
    month = "2",
    year = "2023"
}

Contributions

Contributions through pull requests are very welcome. Please also feel free to open new issues if there are missing features you'd like to see!

The only requirement for contributions to be considered is that they are run through the black code formatter. This ensures we have a coherent format and makes the code easier to review/read!

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

ripplegw-0.0.6.tar.gz (453.6 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

ripplegw-0.0.6-py3-none-any.whl (455.7 kB view details)

Uploaded Python 3

File details

Details for the file ripplegw-0.0.6.tar.gz.

File metadata

  • Download URL: ripplegw-0.0.6.tar.gz
  • Upload date:
  • Size: 453.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.0.0 CPython/3.10.9

File hashes

Hashes for ripplegw-0.0.6.tar.gz
Algorithm Hash digest
SHA256 b3efaadd05d9bb2a89cdb216f7351cbac17053a278ed619fe3ac620c198c7c91
MD5 913bdb57df75762b83617184398a49dc
BLAKE2b-256 2dbb6591e6cd1252e5b996167090aa2bea007885b2558fb4ad806640e49e2211

See more details on using hashes here.

File details

Details for the file ripplegw-0.0.6-py3-none-any.whl.

File metadata

  • Download URL: ripplegw-0.0.6-py3-none-any.whl
  • Upload date:
  • Size: 455.7 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.0.0 CPython/3.10.9

File hashes

Hashes for ripplegw-0.0.6-py3-none-any.whl
Algorithm Hash digest
SHA256 e0372cdb5fa71969ba3712deed2cdbc95be893c23fae2c0a9171df809173735c
MD5 44a031162272416484114e0c7ffc32a5
BLAKE2b-256 ff7179039d6524dc19f48ff8c21c9345750b8ce70c284aebbe2a68b1ad8c61b5

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page