Simulates geodesic motion around black holes.
Project description
Table of Contents
Event hoRyzen is a Python library designed to simulate and visualize geodesic motion around Schwarzschild, Reisner-Nordstrom, Kerr, and Kerr-Newman black holes. It uses a slightly modified version of Pierre Christian and Chi-kwan Chan’s FANTASY geodesic integration code (see https://github.com/pierrechristian/FANTASY + Pierre Christian and Chi-kwan Chan 2021 ApJ 909 67).
Installation
pip
pip install event-horyzen
or
pip install event-horzyen[pyqt]
(If you use zsh
as your shell you will need to quote the package name for optional dependencies, i.e., “event-horyzen[pyqt]”)
Depending on whether or not you’d like to use the pyqtgraph
and opengl
plotting modules (They are not small dependencies. The option to plot with matplotlib is included in the base package).
Manually
git clone https://github.com/UCF-SPS-Research-21/event-horyzen
If you use Poetry for package and venv management, you can use
poetry install
or
poetry install -E pyqt
If you don’t, you can pip install -r requirements.txt
or conda install --file requirements.txt
.
There are multiple versions of requirements.txt provided, it should be evident what each is for.
Usage
The code is configured with a YAML configuration file. Please see the example at <event_horyzen/config.yml>
Example
I use Unix paths in the examples. Windows paths will work too — just make sure you escape backslashes or make use of pathlib
’s functionality.
If you’d like to use the default configuration, you can just leave the argument to event_horyzen.run()
empty.
To copy the default config and edit it, do the following.
from pathlib import Path
from event_horyzen import event_horyzen
dest = Path("./foo/")
event_horyzen.copy_default_config(dest)
If you don’t specify a destination, it will copy the file to your current working directory.
Now, assuming you’ve edited the config to your liking and its named config.yml
:
from pathlib import Path
from event_horyzen import event_horyzen
conf_path = Path('./config.yml')
event_horyzen.run(conf_path)
or for multiple geodesics simulated in parallel
from pathlib import Path
from event_horyzen import event_horyzen
conf_path1 = Path('./config1.yml')
conf_path2 = Path('./config2.yml')
conf_path3 = Path('./config3.yml')
confs = [conf_path1, conf_path2, conf_path3]
event_horyzen.run(confs)
A unique directory under the output directory specified in the configuration file will be created in the format <output-dir>/<date+time>_<name-of-config-file>
.
So, it makes sense to give your configuration files meaningful names.
The geodesic in both spherical and cartesian coordinates will be saved to this directory as results.h5
.
The configuration file used to generate the simulation will be copied to this directory as well to ensure reproducibility.
A basic plot of the geodesic is also created and saved in the directory as both a .PNG and a pickle
file so that the figure can be reloaded and interacted with.
Example Kerr-Newman Plot
If you want to load the pickled Matplotlib plot, you can do the following.
import pickle as pl
from pathlib import Path
plot_path = Path("<path-to-plot>/basic-plot.pickle")
with open(plot_path, "rb") as plot:
fig = pl.load(plot)
# Now do whatever you want with the figure!
fig.show()
For the 3D plotting,
from pathlib import Path
from event_horyzen import animated_plot as ap
results = Path("./results.h5")
viz = ap.Visualizer(results)
viz.animation()
or for multiple geodesics on the same plot
from pathlib import Path
from event_horyzen import animated_plot as ap
results1 = Path("./results1.h5")
results2 = Path("./results2.h5")
results3 = Path("./results3.h5")
results = [results1, results2, results3]
viz = ap.Visualizer(results)
viz.animation()
By default, it puts a photon sphere for a M=1 (geometrized units) schwarzschild black hole on the plot for reference.
This can be turned off or modified in the call to Visualizer()
.
Both the simulation and the plotting can be ran directly from the command line
First, the simulation tools.
event-horyzen -h
usage: event-horyzen [-h] [datapath ...]
positional arguments:
datapath The path(s) to the configuration file(s). Defaults to the
included `config.yml` if not provided.
options:
-h, --help show this help message and exit
Now, the plotting tools.
event-horyzen-plot -h
usage: event-horyzen-plot [-h] datapath [datapath ...]
positional arguments:
datapath The path(s) to the data file(s).
options:
-h, --help show this help message and exit
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file event-horyzen-0.1.2.tar.gz
.
File metadata
- Download URL: event-horyzen-0.1.2.tar.gz
- Upload date:
- Size: 26.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.1.12 CPython/3.10.1 Linux/5.15.12-arch1-1
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | e9153e850da75e3b8686aca4bfcf687ac7576d07a2d1801b96a06dbc9be271c2 |
|
MD5 | 459e8c65b8b01ab24a01435004a14961 |
|
BLAKE2b-256 | 6f9fd37925cc99caa3469db7533074996e923c921bb00d71c804c492cc8fac62 |
File details
Details for the file event_horyzen-0.1.2-py3-none-any.whl
.
File metadata
- Download URL: event_horyzen-0.1.2-py3-none-any.whl
- Upload date:
- Size: 38.6 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.1.12 CPython/3.10.1 Linux/5.15.12-arch1-1
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 8cc21322c865017b99468e4cdecbbe860d832f7fd01036e36ea11cfc02668d98 |
|
MD5 | ce13b6e83c79658fcf57bba4c71b2000 |
|
BLAKE2b-256 | 5e209307c565209a9798289b639a26f605d379601260c6ec255952b4df8ab403 |