• Stars
    star
    768
  • Rank 57,027 (Top 2 %)
  • Language
    C
  • License
    GNU General Publi...
  • Created almost 13 years ago
  • Updated 11 days ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

💫 An open-source multi-purpose N-body code.

Version PyPI GPL Paper Paper Paper Paper Paper Paper Paper Paper Docs Binder REBOUND (C) REBOUND (python)

Welcome to REBOUND

REBOUND Examples

REBOUND is an N-body integrator, i.e. a software package that can integrate the motion of particles under the influence of gravity. The particles can represent stars, planets, moons, ring or dust particles. REBOUND is very flexible and can be customized to accurately and efficiently solve many problems in astrophysics.

Features

  • Symplectic integrators (WHFast, SEI, LEAPFROG, EOS)
  • High order symplectic integrators for integrating planetary systems (SABA, WH Kernel methods)
  • Hybrid symplectic integrators for planetary dynamics with close encounters (MERCURIUS)
  • High accuracy non-symplectic integrators with adaptive time-stepping (IAS15, Gragg-Bulirsch-Stoer)
  • Can integrate arbitrary user-defined ODEs that are coupled to N-body dynamics for tides, spin, etc
  • Support for collisional/granular dynamics, various collision detection routines
  • The code is written entirely in C, conforms to the ISO standard C99 and can be used as a thread-safe shared library
  • Easy-to-use Python module, installation in 3 words: pip install rebound
  • Extensive set of example problems in both C and Python
  • Real-time, 3D OpenGL visualization (C version)
  • Parallelized with OpenMP (for shared memory systems)
  • Parallelized with MPI is supported for some special use cases only (using an essential tree for gravity and collisions)
  • No dependencies on external libraries (use of OpenGL/glfw3 for visualization is optional)
  • The code is 100% open-source. All features are inluced in the public repository on github
  • No configuration is needed to run any of the example problems. Just type make && ./rebound in the problem directory to run them
  • Comes with standard ASCII or binary output routines
  • Different modules are easily interchangeable at runtime

One minute installation

You can install REBOUND with pip if you want to only use the python version of REBOUND:

pip install rebound

Then, you can run a simple REBOUND simulation such as

import rebound
sim = rebound.Simulation()
sim.add(m=1.0)
sim.add(m=1.0e-3, a=1.0)
sim.integrate(1000.)
sim.status()

If you want to use the C version of REBOUND simply copy and paste this line into your terminal (it won't do anything bad, we promise):

git clone https://github.com/hannorein/rebound && cd rebound/examples/shearing_sheet && make && ./rebound

Documentation

The full documentation with many examples, changelogs and tutorials can be found at

https://rebound.readthedocs.org

If you have trouble installing or using REBOUND, please open an issue on github and we'll try to help as much as we can.

There are also short YouTube videos describing various aspects of REBOUND available at https://www.youtube.com/channel/UCNmrCzxcmWVTBwtDPPLxkkw .

Additional Physics

To easily incorporate additional physics into your REBOUND simulations, see REBOUNDx at https://github.com/dtamayo/reboundx

Papers

There are several papers describing the functionality of REBOUND.

  1. Rein & Liu 2012 (Astronomy and Astrophysics, Volume 537, A128) describes the code structure and the main feature including the gravity and collision routines for many particle systems. http://adsabs.harvard.edu/abs/2012A%26A...537A.128R

  2. Rein & Tremaine 2011 (Monthly Notices of the Royal Astronomical Society, Volume 415, Issue 4, pp. 3168-3176) describes the Symplectic Epicycle integrator for shearing sheet simulations. https://ui.adsabs.harvard.edu/abs/2011MNRAS.415.3168R

  3. Rein & Spiegel 2015 (Monthly Notices of the Royal Astronomical Society, Volume 446, Issue 2, p.1424-1437) describes the versatile high order integrator IAS15 which is now part of REBOUND. http://adsabs.harvard.edu/abs/2015MNRAS.446.1424R

  4. Rein & Tamayo 2015 (Monthly Notices of the Royal Astronomical Society, Volume 452, Issue 1, p.376-388) describes WHFast, the fast and unbiased implementation of a symplectic Wisdom-Holman integrator for long term gravitational simulations. http://adsabs.harvard.edu/abs/2015MNRAS.452..376R

  5. Rein & Tamayo 2016 (Monthly Notices of the Royal Astronomical Society, Volume 459, Issue 3, p.2275-2285) develop the framework for second order variational equations. https://ui.adsabs.harvard.edu/abs/2016MNRAS.459.2275R

  6. Rein & Tamayo 2017 (Monthly Notices of the Royal Astronomical Society, Volume 467, Issue 2, p.2377-2383) describes the Simulation Archive for exact reproducibility of N-body simulations. https://ui.adsabs.harvard.edu/abs/2017MNRAS.467.2377R

  7. Rein & Tamayo 2018 (Monthly Notices of the Royal Astronomical Society, Volume 473, Issue 3, p.3351–3357) describes the integer based JANUS integrator. https://ui.adsabs.harvard.edu/abs/2018MNRAS.473.3351R

  8. Rein, Hernandez, Tamayo, Brown, Eckels, Holmes, Lau, Leblanc & Silburt 2019 (Monthly Notices of the Royal Astronomical Society, Volume 485, Issue 4, p.5490-5497) describes the hybrid symplectic integrator MERCURIUS. https://ui.adsabs.harvard.edu/abs/2019MNRAS.485.5490R

  9. Rein, Tamayo & Brown 2019 (Monthly Notices of the Royal Astronomical Society, Volume 489, Issue 4, November 2019, Pages 4632-4640) describes the implementation of the high order symplectic integrators SABA, SABAC, SABACL, WHCKL, WHCKM, and WHCKC. https://ui.adsabs.harvard.edu/abs/

Acknowledgments

If you use this code or parts of this code for results presented in a scientific publication, we would greatly appreciate a citation. please cite REBOUND. The simplest way to find the citations relevant to the specific setup of your REBOUND simulation is:

sim = rebound.Simulation()
-your setup-
sim.cite()

Contributors

REBOUND is open source and you are invited to contribute to this project!

License

REBOUND is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.

REBOUND is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.

You should have received a copy of the GNU General Public License along with REBOUND. If not, see http://www.gnu.org/licenses/.

More Repositories

1

OpenGLMilkyWay

An attempt to create a realistic model of the Milky Way in OpenGL.
Objective-C
102
star
2

megaconstellations

Script to reproduce figures of Lawler, Boley & Rein 2021. Source code of web app.
Jupyter Notebook
12
star
3

starsounds

JavaScript
6
star
4

GalaxyChallenge

Exoplanet App Galaxy Challenge. http://exoplanetapp.com/galaxychallenge/
Objective-C
5
star
5

JanusPaper

Jupyter Notebook
3
star
6

rebound-blender

Scripts to import REBOUND simulation data into BLENDER
Python
3
star
7

planck_cmb_cubemaps

Planck Cosmic Microwave Background (CMB) Cube Maps
3
star
8

reboundcitationbot

A simple twitter bot tweeting links to new papers citing REBOUND
Python
3
star
9

fargnuplot

Visualisation script for the FARGO code
Perl
3
star
10

ASTC02

ASTC02, Introduction to Practical Astronomy
Jupyter Notebook
3
star
11

hierodict

Middle Egyptian - English Dictionary
JavaScript
3
star
12

velocity

python script for traffic counts and speed measurements
Jupyter Notebook
2
star
13

hanno-rein.de

HTML
2
star
14

oec_outreach

A variant of the Open Exoplanet Catalogue with additional data and images mainly useful for outreach projects.
Python
2
star
15

UIScientificNotationLabel

A UIView subclass to render numbers in scientific notation.
Objective-C
2
star
16

reproducibility-paper

Data and notebooks to generate plots in the REBOUND reproducibility paper Rein & Tamayo (2017)
Jupyter Notebook
2
star
17

reboundbot

Twitter bot which runs N-body simulations for you
Python
1
star
18

Bathymetry

Converts an ARC ASCII file to STL
Jupyter Notebook
1
star
19

exodyntalk

Jupyter Notebook
1
star
20

BikeShareTOAnimation

A script to render every single BikeShareTO trip. See: https://twitter.com/hannorein/status/1358540321903284224
Jupyter Notebook
1
star
21

ojastrobot

Mastodon bot for Open Journal of Astrophysics
Python
1
star
22

python_cluster_tools

A couple of script to execute parameter space sweeps on clusters
1
star
23

python_gnuplot_tools

Small tools that make life with gnuplot easier
Python
1
star
24

symhills

Symplectic leap frog integrator for Hill's equations based on http://arxiv.org/abs/0908.2269
C++
1
star
25

dnschat

Small client to send e-mails via DNS queries (useful behind airport/airplane paywalls)
Python
1
star
26

kepler-benchmarks

A framework for testing Kepler solvers
C
1
star
27

zipgradegenerator

Script to generate zipgrade sheets
Python
1
star
28

pythonlightcurves

Jupyter Notebook
1
star
29

PSCB57

Jupyter Notebook
1
star
30

PhamReinSpiegel2024

Jupyter Notebook
1
star