-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #39 from michael-petersen/centring
Update centering and Fourier codes; improve installation instructions; add some basic import tests for CI.
- Loading branch information
Showing
15 changed files
with
253 additions
and
135 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,29 @@ | ||
# exptool: galactic dynamics in python using basis function expansions | ||
## msp, 2014-present | ||
|
||
### Version 0.3 | ||
exptool is primarily collection of analysis methods used to analyze _n_-body simulations, primarily those running with _EXP_, though any _n_-body | ||
code could use the methodology (Generation 1). | ||
### Version 0.4 | ||
exptool is primarily collection of analysis methods used to analyze _n_-body simulations, primarily those running with `EXP`, though any _n_-body | ||
code could use the methodology (Generation 0.1). | ||
|
||
As of 2018, exptool has expanded to be an all-purpose dynamical framework for studying disc galaxies (Generation 2). | ||
As of 2018, exptool has expanded to be an all-purpose dynamical framework for studying disc galaxies (Generation 0.2). | ||
|
||
As of 2020, exptool includes support for analysing stellar halos (Generation 0.3). | ||
|
||
As of 2024, `exptool` supports analysis of cosmological simulation outputs for bar measurements and a range of basic dynamical models (Generation 0.4). | ||
|
||
### Installation | ||
|
||
`exptool` is not a registered package, so the best installation is | ||
|
||
``` | ||
git clone [email protected]:michael-petersen/exptool.git | ||
cd exptool | ||
pip install . --user | ||
python tests/importtest.py | ||
``` | ||
|
||
and then you will be ready to use it! For any updates, you'll need to `git pull` and rebuild using `pip install . --user`. | ||
|
||
As of 2020, exptool includes support for analysing stellar halos (Generation 3). | ||
|
||
The tests/ directory contains simulation outputs to play with, as well as some usage examples for methods. | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,2 @@ | ||
|
||
|
||
# this is EXPtool | ||
|
||
#http://python-guide-pt-br.readthedocs.io/en/latest/writing/structure/ | ||
|
||
|
||
__version__ = "0.4.0" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,14 @@ | ||
|
||
|
||
# this is EXPtool | ||
|
||
__all__ = ['commensurability','directdetection','ellipsetools','forcetrace','globalquantities','pattern','trapping'] | ||
__all__ = ['centering', | ||
'commensurability', | ||
'directdetection', | ||
'ellipsetools', | ||
'globalquantities', | ||
'pattern', | ||
'resonancemodel', | ||
'rotationcurves', | ||
'trapping'] | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.