Coverage for src/airball/__init__.py: 100%
7 statements
« prev ^ index » next coverage.py v7.3.2, created at 2023-12-08 10:31 +0900
« prev ^ index » next coverage.py v7.3.2, created at 2023-12-08 10:31 +0900
1'''
2# Flybys in `REBOUND`
3- A package for implementing flybys in [hannorein/rebound](https://github.com/hannorein/rebound)
4'''
5from .core import (add_star_to_sim, flyby, flybys, successive_flybys, concurrent_flybys)
6from .environments import (StellarEnvironment, LocalNeighborhood, OpenCluster, GlobularCluster, GalacticBulge, GalacticCore)
7from .analytic import (relative_energy_change, energy_change_adiabatic_estimate, eccentricity_change_adiabatic_estimate)
8from .imf import (IMF)
9from .stars import (Star, Stars)
10from .tools import (UnitSet)
12__version__ = 'v0.5.0'