A temporary fork of ASSIST: A library high accuracy ephemeris in REBOUND
Project description
ASSIST
ASSIST is a software package for ephemeris-quality integrations of test particles. ASSIST is an extension of the REBOUND framework and makes use of its IAS15 integrator to integrate test particle trajectories in the field of the Sun, Moon, planets, and 16 massive asteroids, with the positions of the masses coming from the JPL DE441 ephemeris and its associated asteroid perturber file. The package incorporates the most significant gravitational harmonics and general relativistic corrections. ASSIST also accounts for position- and velocity-dependent non-gravitational effects according to the Marsden (1973) model. All components in the equations of motion have been verified to machine precision in a term-by-term comparison with output from JPL's small body integrator. The first order variational equations are included for all terms to support orbit fitting and covariance mapping. This framework is meant to provide an open-source package written in a modern language to enable high-precision orbital analysis and science by the small body community.
Installation (Python)
It's easiest to install ASSIST into a python virtual environment. If you already have a virtual environment or do not want to use one, you can skip this step. Otherwise, run the following command in an empty directory. They will setup and activate a new virtual environment in a directory.
python3 -m venv venv
source venv/bin/activate
Now we can install numpy, REBOUND, and ASSIST:
pip install numpy
pip install rebound
pip install assist
To use use ASSIST, you also need to download ephemeris data files. One file for planet ephemeris and another suplementary file for asteroid ephemeris. You can do this with Python packages or by downloading files directly. Note that these are large files, almost 1GB in size.
pip install naif-de440
pip install jpl-small-bodies-de441-n16
You can initialize the ephemeris data from the packages like so:
python3
>>> import assist
>>> from naif_de440 import de440
>>> from jpl_small_bodies_de441_n16 import de441_n16
>>> ephem = assist.Ephem(de440, de441_n16)
The variables to the ephemeris files are simply path strings to the files. Alternatively, you can download these files with curl or your browser.
mkdir data
curl https://ssd.jpl.nasa.gov/ftp/eph/planets/bsp/de440.bsp -o data/de440.bsp
curl https://ssd.jpl.nasa.gov/ftp/eph/small_bodies/asteroids_de441/sb441-n16.bsp -o data/sb441-n16.bsp
Now you can point assist to those files directly, like so:
python3
>>> import assist
>>> ephem = assist.Ephem("data/de440.bsp", "data/sb441-n16.bsp")
Once you've initialized the ephemeris data, you can test that assist is working by running the following commands:
>>> print(ephem.jd_ref)
>>> ephem.get_particle("Earth", 0)
You should see the default reference Julian date (2451545.0) and the position of the Earth at that time printed on the screen.
Installation (C)
To install the C version of ASSIST, first clone the REBOUND and then the ASSIST repositories. In an empty directory, run:
git clone https://github.com/hannorein/rebound.git
git clone https://github.com/matthewholman/assist.git
To use use ASSIST, you also need to download ephemeris data files. One file for planet ephemeris and another suplementary file for asteroid ephemeris. The following commands download these files with curl. You can also manually download them using your browser. Note that these are large files, almost 1GB in size.
curl https://ssd.jpl.nasa.gov/ftp/eph/planets/bsp/de440.bsp -o assist/data/de440.bsp
curl https://ssd.jpl.nasa.gov/ftp/eph/small_bodies/asteroids_de441/sb441-n16.bsp -o assist/data/sb441-n16.bsp
For some of the examples, you will also need the planet ephemeris file with an extended coverage. Note that this file is 2.6GB in size.
curl https://ssd.jpl.nasa.gov/ftp/eph/planets/bsp/de441.bsp -o assist/data/de441.bsp
Next, go to one of the example directories and compile the problem file. This will also trigger the installation of the REBOUND and ASSIST shared libraries.
cd assist/examples/asteroid
make
Now, you're ready to run the example with:
./rebound
License
ASSIST is open source, freely distributed under the GNU General Public license, version 3.
Contributors
- Matthew J. Holman, Center for Astrophysics | Harvard & Smithsonian, mholman@cfa.harvard.edu
- Arya Akmal, Montgomery College, Rockville
- Davide Farnocchia, Jet Propulsion Laboratory, California Institute of Technology
- Hanno Rein, University of Toronto, hanno@hanno-rein.de
- Matthew J. Payne, Center for Astrophysics | Harvard & Smithsonian
- Robert Weryk, University of Western Ontario
- Dan Tamayo, Harvey Mudd College, dtamayo@hmc.edu
- David M. Hernandez, Center for Astrophysics | Harvard & Smithsonian
- Alec Koumjian, Asteroid Institute | B612 Foundation, alec@b612foundation.org
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 assist_adam_fork-1.1.9a1.tar.gz
.
File metadata
- Download URL: assist_adam_fork-1.1.9a1.tar.gz
- Upload date:
- Size: 47.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.11.10
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 7bc75cf767aca3c3235062b1f46f736fdbe8e840c5e8115235400c18369a11e9 |
|
MD5 | 77f9cd3e8511c0a0ee521a56f5a84834 |
|
BLAKE2b-256 | b5a022c8a6b13444924daf82267c5d2ee19522b2be2e616fbd18dcf2eb1df6e8 |
File details
Details for the file assist_adam_fork-1.1.9a1-cp311-cp311-macosx_14_0_arm64.whl
.
File metadata
- Download URL: assist_adam_fork-1.1.9a1-cp311-cp311-macosx_14_0_arm64.whl
- Upload date:
- Size: 44.5 kB
- Tags: CPython 3.11, macOS 14.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.11.10
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 46574034c10e52ffa29fab66cc3b396e46ad8642cea433d0441b32ecae38494a |
|
MD5 | 9dcfe1da4323113e34e33693b33cff11 |
|
BLAKE2b-256 | 5425881fecf92e8cde80302fbc2a9c895bbde89dc2ab185bbdda5ed4dd44c979 |