Skip to content
/ GWFrames Public
forked from moble/GWFrames

Manipulate gravitational waveforms—changing frames, and so on.

License

Notifications You must be signed in to change notification settings

10220/GWFrames

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

NOTE: This module is no longer actively maintained. Much of the functionality has been moved to scri. Pull requests are welcome, and I'll generally reply to issues. But because of the age of this code and its dependencies (especially SWIG), I may not be able to help very much if you run into problems. —Mike

GWFrames

Manipulate gravitational waveforms—changing frames, and so on.

The code in this project extends code written for the paper "Angular velocity of gravitational radiation from precessing binaries and the corotating frame", giving an explicit implementation of the methods discussed in it. The first commit of this project is the last commit of the paper's project.

The license for using this software is basically open (see the LICENSE file in this directory), though citations to the original paper are appreciated, where relevant. Also, if your work depends on features found in this module that have not been described in a separate publication of mine, I would appreciate the opportunity to be a coauthor.

Note that this code is not optimized. In many cases, obvious optimizations were rejected in favor of clearer or simpler code, or code that simply reflected the discussion in the paper more directly. The code is generally more than fast enough for interactive use on individual waveforms, but there is plenty of room for improvement. In particular, rotations may be painfully slow for large data sets.

Quick Start

The best way to get GWFrames running is to install anaconda and run the following commands

# Update conda itself first
conda update -y -n base -c defaults conda

# Create a new conda env just for GWFrames
# You may want to add "matplotlib ipython jupyter" to the end of the next line
conda create -y -n GWFrames python=2 swig==3.0.10 numpy gsl hdf5 fftw h5py
conda activate GWFrames

# Get the code
git clone https://github.com/moble/GWFrames.git
cd GWFrames
git submodule init
git submodule update

# Compile and install the code into this conda env
cd Code
python setup.py install

# Test that it works by constructing an equal-mass aligned-spin PN waveform
cd ~
python -c 'import GWFrames; W = GWFrames.PNWaveform("TaylorT4", 0.0, [0., 0., 0.9], [0.0, 0.0, 0.9], 0.01); print("That worked!")'

This gives you a separate GWFrames environment with working code, and without polluting other parts of your more modern python installation. Every time you want to use GWFrames in a new shell, just run

conda activate GWFrames

and python/ipython will automatically know where to find this module. You can install more packages (like matplotlib, ipython, jupyter, etc.) in this environment. Or if you want to stop using this environment and go back to your default environment, just run

conda deactivate

If the command above fails, you may have an old version of conda with screwed up compilers---even after updating. The surest way to solve that is just to reinstall with the current version of conda.

Docker

While conda is the scientific python community's prescribed way of running all things python, the community may have moved on by the time you try to run this code, or you may just not want to use a sensible way of running python. In that case, a good alternative to compiling everything yourself (described below) is to use docker.

You can download and run this image using the following commands:

docker pull moble/gwframes
docker run -i -t moble/gwframes bash

You'll probably want to attach some local directory to the container as a "volume", by adding such a flag to the command line:

docker run -i -t moble/gwframes --volume=/path/to/data:/data bash

This uses the directory found on your local machine in /path/to/data, and makes it available in the docker container as /data. Note that this allows the directory on your local machine to be both read from and written to, so that your output will survive even after you exit the container.

A convenient way to use this code is to start a Jupyter Notebook server and interact with it via your browser:

docker run -i -t -p 8888:8888 moble/gwframes --volume=/path/to/data:/data \
bash -c "/opt/conda/bin/jupyter notebook --notebook-dir=/data --ip='*' --port=8888 --no-browser"

You can then view the Jupyter Notebook by opening http://localhost:8888 in your browser.

Build requirements

To build just the C++ code:

To use the optional—but highly recommended—Python interface:

  • SWIG v3.0.10
  • HDF5 v1.8.10 or greater, built as a shared library with development headers (libhdf5-dev or similar)
  • FFTW v3.2 or greater, built as a shared library

And, of course, python and a few of its goodies, for which I cannot recommend anaconda highly enough -- it makes installation and maintenance of the python software stack vastly easier.

  • Python v2.7.4 or greater (but less than v3), with development headers (python-dev or similar)
  • NumPy v1.7 or greater (conda install numpy)
  • Matplotlib v1.2 or greater (conda install matplotlib)
  • h5py v2.1 or greater (conda install h5py)
  • IPython v2.0 or greater, with notebook (conda install ipython)

All of the above are reasonably standard, and can be installed easily through package managers such as apt and homebrew. The notebook interface for IPython provides an environment much like the Mathematica notebook interface. The examples are provided in a notebook (.ipynb) file.

Getting started

The first step is to clone the git repo and its submodules:

git clone https://github.com/moble/GWFrames.git
cd GWFrames
git submodule init
git submodule update

The code is mostly in the form of C++, for speed. All functions are provided in the GWFrames namespace. The interface is reasonably straightforward, and can easily be included into and compiled with other code. Look for examples of how to do this in the C++Example directory. (See below for a few more details.)

However, it is mostly intended to be used through the interface to python. With the above-listed requirements, build the code and install to the user directory. To do this, run make or

python setup.py install --user

After this, you should be able to start a new python session (in any directory) and import GWFrames, which is the basic module provided by this code. The primary objects are Quaternion and Waveform objects, with various methods defined for each. An IPython notebook in the Docs directory contains extensive examples, following the outline of the paper. To use it, run

ipython notebook Docs/AngVelOfGravRadFromPrecessingBinaries_CorotatingFrame.ipynb

Alternatively, this code may be used directly through its C++ interface. A simple example is provided in the C++Example directory, along with the Makefiles needed to build all the necessary code. If it does not compile easily, make sure the various paths in both Makefiles are set properly.

Detailed documentation of most functions may be found through python's help function, or by running make in the Docs subdirectory, and reading Docs/html/index.html.

Contributions

The code is primarily written by me (Mike Boyle). Dan Hemberger helped by porting some of my older code from Triton to perform noise-weighted overlap calculations, and with numerous bug reports and helpful suggestions. Serguei Ossokine also helped substantially by cross-checking the post-Newtonian formulas and results. Dante Iozzo has done his best to keep things working as this code enters its dotage.

Other contributions are entirely welcome. The preferred method is via github's excellent interface. If you have a bug report, just go to the issues page for this repo, check for related issues, and if this is new click "New Issue". If you want to contribute code, it is easiest for everyone if you use the [fork & pull method described here] (https://help.github.com/articles/using-pull-requests).

About

Manipulate gravitational waveforms—changing frames, and so on.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Jupyter Notebook 83.4%
  • C++ 10.7%
  • C 3.7%
  • Python 2.0%
  • Makefile 0.2%
  • Perl 0.0%