├── .copier-answers.yml ├── .git_archival.txt ├── .gitattributes ├── .github ├── CONTRIBUTING.md ├── dependabot.yml ├── matchers │ └── pylint.json └── workflows │ ├── cd.yml │ └── ci.yml ├── .gitignore ├── .pre-commit-config.yaml ├── .python-version ├── .readthedocs.yaml ├── AUTHORS.rst ├── CODE_OF_CONDUCT.md ├── CONVENTIONS.md ├── LICENSE.txt ├── README.md ├── SECURITY.md ├── conftest.py ├── docs ├── conf.py ├── contributing.rst ├── docs.rst ├── getting_started.rst ├── glossary.rst ├── index.rst ├── install.rst ├── testing.rst ├── tutorials.rst ├── user_guide.rst └── whatsnew │ ├── 1.0.rst │ └── index.rst ├── licences ├── BoundClass.txt └── LICENSE.txt ├── noxfile.py ├── pyproject.toml ├── src └── galax │ ├── __init__.py │ ├── _custom_types.py │ ├── _interop │ ├── __init__.py │ ├── galax_interop_astropy │ │ ├── __init__.py │ │ ├── coordinates.py │ │ ├── dynamics.py │ │ └── potential.py │ ├── galax_interop_gala │ │ ├── __init__.py │ │ ├── coordinates.py │ │ └── potential.py │ ├── galax_interop_galpy │ │ ├── __init__.py │ │ └── potential.py │ ├── matplotlib │ │ ├── __init__.py │ │ ├── orbit.py │ │ └── potential.py │ └── optional_deps.py │ ├── _version.pyi │ ├── coordinates │ ├── __init__.py │ ├── _src │ │ ├── __init__.py │ │ ├── base.py │ │ ├── frames │ │ │ ├── __init__.py │ │ │ ├── orphan_chenab.py │ │ │ └── simulation.py │ │ ├── interp.py │ │ ├── ops │ │ │ ├── __init__.py │ │ │ └── rotating.py │ │ ├── pscs │ │ │ ├── __init__.py │ │ │ ├── base.py │ │ │ ├── base_composite.py │ │ │ ├── base_single.py │ │ │ ├── composite.py │ │ │ ├── register_primitives.py │ │ │ ├── register_vectorapi.py │ │ │ └── single.py │ │ ├── psps │ │ │ ├── __init__.py │ │ │ ├── core.py │ │ │ ├── register_primitives.py │ │ │ └── register_vectorapi.py │ │ └── utils.py │ ├── frames.py │ └── ops.py │ ├── dynamics │ ├── __init__.py │ ├── _src │ │ ├── __init__.py │ │ ├── api.py │ │ ├── cluster │ │ │ ├── __init__.py │ │ │ ├── api.py │ │ │ ├── dmdt.py │ │ │ ├── events.py │ │ │ ├── radius.py │ │ │ ├── register_funcs.py │ │ │ ├── relax_time.py │ │ │ ├── sample.py │ │ │ └── solver.py │ │ ├── custom_types.py │ │ ├── examples │ │ │ ├── __init__.py │ │ │ ├── mw_lmc.py │ │ │ └── uniform_acceleration.py │ │ ├── experimental │ │ │ ├── __init__.py │ │ │ ├── df.py │ │ │ ├── integrate.py │ │ │ └── stream.py │ │ ├── fields.py │ │ ├── legacy │ │ │ ├── __init__.py │ │ │ ├── funcs.py │ │ │ ├── integrator.py │ │ │ ├── interp_psp.py │ │ │ └── mockstream │ │ │ │ ├── __init__.py │ │ │ │ ├── _moving.py │ │ │ │ ├── df │ │ │ │ ├── __init__.py │ │ │ │ ├── base.py │ │ │ │ ├── chen24.py │ │ │ │ ├── fardal15.py │ │ │ │ └── progenitor.py │ │ │ │ └── mockstream_generator.py │ │ ├── mockstream │ │ │ ├── __init__.py │ │ │ ├── arm.py │ │ │ └── core.py │ │ ├── orbit │ │ │ ├── __init__.py │ │ │ ├── api.py │ │ │ ├── base.py │ │ │ ├── compute.py │ │ │ ├── field_base.py │ │ │ ├── field_hamiltonian.py │ │ │ ├── field_nbody.py │ │ │ ├── interp.py │ │ │ ├── orbit.py │ │ │ ├── plot_helper.py │ │ │ ├── register_dfx.py │ │ │ └── solver.py │ │ ├── parsetime.py │ │ ├── register_api.py │ │ ├── solver.py │ │ └── utils.py │ ├── cluster.py │ ├── examples.py │ ├── fields.py │ ├── integrate.py │ ├── mockstream.py │ ├── orbit.py │ └── plot.py │ ├── potential │ ├── __init__.py │ ├── _src │ │ ├── __init__.py │ │ ├── api.py │ │ ├── base.py │ │ ├── base_multi.py │ │ ├── base_single.py │ │ ├── builtin │ │ │ ├── __init__.py │ │ │ ├── burkert.py │ │ │ ├── const.py │ │ │ ├── example.py │ │ │ ├── hernquist.py │ │ │ ├── isochrone.py │ │ │ ├── jaffe.py │ │ │ ├── kepler.py │ │ │ ├── kuzmin.py │ │ │ ├── logarithmic.py │ │ │ ├── longmurali.py │ │ │ ├── milkyway.py │ │ │ ├── miyamotonagai.py │ │ │ ├── mn3.py │ │ │ ├── monari2016.py │ │ │ ├── multipole.py │ │ │ ├── nfw │ │ │ │ ├── __init__.py │ │ │ │ ├── base.py │ │ │ │ ├── generalized.py │ │ │ │ ├── leesuto.py │ │ │ │ ├── triaxial.py │ │ │ │ ├── truncated.py │ │ │ │ └── vogelsburger08.py │ │ │ ├── null.py │ │ │ ├── plummer.py │ │ │ ├── powerlawcutoff.py │ │ │ ├── satoh.py │ │ │ └── stoneostriker15.py │ │ ├── composite.py │ │ ├── io.py │ │ ├── params │ │ │ ├── __init__.py │ │ │ ├── attr.py │ │ │ ├── base.py │ │ │ ├── constant.py │ │ │ ├── core.py │ │ │ ├── field.py │ │ │ └── utils.py │ │ ├── plot.py │ │ ├── register_funcs.py │ │ ├── utils.py │ │ └── xfm │ │ │ ├── __init__.py │ │ │ ├── base.py │ │ │ ├── flattened.py │ │ │ ├── translate.py │ │ │ ├── triaxial.py │ │ │ └── xop.py │ ├── io.py │ ├── params.py │ └── plot.py │ ├── py.typed │ ├── setup_package.py │ └── utils │ ├── __init__.py │ ├── _boundinstance.py │ ├── _jax.py │ ├── _shape.py │ ├── dataclasses.py │ └── loop_strategies.py ├── tests ├── benchmark │ ├── __init__.py │ └── test_experimental.py ├── functional │ ├── reference │ │ ├── test_first_deriv.txt │ │ └── test_second_deriv.txt │ └── test_mockstreamgenerator.py ├── integration │ ├── __init__.py │ └── matplotlib │ │ ├── .gitignore │ │ ├── __init__.py │ │ ├── baseline │ │ └── test_kepler_potential_contours.png │ │ ├── hashes.json │ │ ├── test_orbit.py │ │ └── test_potential.py ├── smoke │ ├── __init__.py │ ├── coordinates │ │ ├── __init__.py │ │ └── test_package.py │ ├── dynamics │ │ ├── __init__.py │ │ ├── integrate │ │ │ ├── __init__.py │ │ │ └── test_package.py │ │ ├── mockstream │ │ │ ├── __init__.py │ │ │ └── test_package.py │ │ └── test_package.py │ ├── potential │ │ ├── __init__.py │ │ └── test_package.py │ ├── test_package.py │ └── utils │ │ ├── __init__.py │ │ └── test_package.py └── unit │ ├── __init__.py │ ├── coordinates │ ├── __init__.py │ ├── psc │ │ ├── __init__.py │ │ ├── test_base.py │ │ ├── test_base_single.py │ │ └── test_single.py │ ├── psp │ │ ├── __init__.py │ │ └── test_psp.py │ └── test_base.py │ ├── dynamics │ ├── __init__.py │ ├── mockstream │ │ ├── __init__.py │ │ └── test_mockstreamgenerator.py │ └── test_orbit.py │ ├── potential │ ├── __init__.py │ ├── builtin │ │ ├── __init__.py │ │ ├── test_abstractmultipole.py │ │ ├── test_bovymwpotential2014.py │ │ ├── test_burkert.py │ │ ├── test_common.py │ │ ├── test_composite.py │ │ ├── test_cutoffnfw.py │ │ ├── test_harmonicoscillator.py │ │ ├── test_henonheiles.py │ │ ├── test_hernquist.py │ │ ├── test_innermultipole.py │ │ ├── test_isochrone.py │ │ ├── test_jaffe.py │ │ ├── test_kepler.py │ │ ├── test_kuzmin.py │ │ ├── test_leesutotriaxialnfw.py │ │ ├── test_lm10.py │ │ ├── test_lmj09logarithmic.py │ │ ├── test_logarithmic.py │ │ ├── test_longmuralibar.py │ │ ├── test_milkywaypotential.py │ │ ├── test_milkywaypotential2022.py │ │ ├── test_miyamotonagai.py │ │ ├── test_mn3.py │ │ ├── test_monaribar.py │ │ ├── test_multipole.py │ │ ├── test_nfw.py │ │ ├── test_null.py │ │ ├── test_outermultipole.py │ │ ├── test_plummer.py │ │ ├── test_powerlawcutoff.py │ │ ├── test_satoh.py │ │ ├── test_stone.py │ │ ├── test_triaxialhernquist.py │ │ ├── test_triaxialnfw.py │ │ └── test_vogelsberger08nfw.py │ ├── io │ │ ├── __init__.py │ │ └── test_gala.py │ ├── param │ │ ├── __init__.py │ │ ├── test_core.py │ │ └── test_field.py │ ├── test_base.py │ ├── test_composite.py │ ├── test_core.py │ ├── test_frame.py │ └── test_utils.py │ └── utils │ ├── __init__.py │ ├── test_jax.py │ └── test_shape.py └── uv.lock /.copier-answers.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics/galax/HEAD/.copier-answers.yml -------------------------------------------------------------------------------- /.git_archival.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics/galax/HEAD/.git_archival.txt -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | .git_archival.txt export-subst 2 | -------------------------------------------------------------------------------- /.github/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics/galax/HEAD/.github/CONTRIBUTING.md -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics/galax/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/matchers/pylint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics/galax/HEAD/.github/matchers/pylint.json -------------------------------------------------------------------------------- /.github/workflows/cd.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics/galax/HEAD/.github/workflows/cd.yml -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics/galax/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics/galax/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics/galax/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /.python-version: -------------------------------------------------------------------------------- 1 | 3.12 2 | -------------------------------------------------------------------------------- /.readthedocs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics/galax/HEAD/.readthedocs.yaml -------------------------------------------------------------------------------- /AUTHORS.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics/galax/HEAD/AUTHORS.rst -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics/galax/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONVENTIONS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics/galax/HEAD/CONVENTIONS.md -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics/galax/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics/galax/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics/galax/HEAD/SECURITY.md -------------------------------------------------------------------------------- /conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics/galax/HEAD/conftest.py -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics/galax/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/contributing.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics/galax/HEAD/docs/contributing.rst -------------------------------------------------------------------------------- /docs/docs.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics/galax/HEAD/docs/docs.rst -------------------------------------------------------------------------------- /docs/getting_started.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics/galax/HEAD/docs/getting_started.rst -------------------------------------------------------------------------------- /docs/glossary.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics/galax/HEAD/docs/glossary.rst -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics/galax/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/install.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics/galax/HEAD/docs/install.rst -------------------------------------------------------------------------------- /docs/testing.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics/galax/HEAD/docs/testing.rst -------------------------------------------------------------------------------- /docs/tutorials.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics/galax/HEAD/docs/tutorials.rst -------------------------------------------------------------------------------- /docs/user_guide.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics/galax/HEAD/docs/user_guide.rst -------------------------------------------------------------------------------- /docs/whatsnew/1.0.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics/galax/HEAD/docs/whatsnew/1.0.rst -------------------------------------------------------------------------------- /docs/whatsnew/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics/galax/HEAD/docs/whatsnew/index.rst -------------------------------------------------------------------------------- /licences/BoundClass.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics/galax/HEAD/licences/BoundClass.txt -------------------------------------------------------------------------------- /licences/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics/galax/HEAD/licences/LICENSE.txt -------------------------------------------------------------------------------- /noxfile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics/galax/HEAD/noxfile.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics/galax/HEAD/pyproject.toml -------------------------------------------------------------------------------- /src/galax/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics/galax/HEAD/src/galax/__init__.py -------------------------------------------------------------------------------- /src/galax/_custom_types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics/galax/HEAD/src/galax/_custom_types.py -------------------------------------------------------------------------------- /src/galax/_interop/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics/galax/HEAD/src/galax/_interop/__init__.py -------------------------------------------------------------------------------- /src/galax/_interop/galax_interop_astropy/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics/galax/HEAD/src/galax/_interop/galax_interop_astropy/__init__.py -------------------------------------------------------------------------------- /src/galax/_interop/galax_interop_astropy/coordinates.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics/galax/HEAD/src/galax/_interop/galax_interop_astropy/coordinates.py -------------------------------------------------------------------------------- /src/galax/_interop/galax_interop_astropy/dynamics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics/galax/HEAD/src/galax/_interop/galax_interop_astropy/dynamics.py -------------------------------------------------------------------------------- /src/galax/_interop/galax_interop_astropy/potential.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics/galax/HEAD/src/galax/_interop/galax_interop_astropy/potential.py -------------------------------------------------------------------------------- /src/galax/_interop/galax_interop_gala/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics/galax/HEAD/src/galax/_interop/galax_interop_gala/__init__.py -------------------------------------------------------------------------------- /src/galax/_interop/galax_interop_gala/coordinates.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics/galax/HEAD/src/galax/_interop/galax_interop_gala/coordinates.py -------------------------------------------------------------------------------- /src/galax/_interop/galax_interop_gala/potential.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics/galax/HEAD/src/galax/_interop/galax_interop_gala/potential.py -------------------------------------------------------------------------------- /src/galax/_interop/galax_interop_galpy/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics/galax/HEAD/src/galax/_interop/galax_interop_galpy/__init__.py -------------------------------------------------------------------------------- /src/galax/_interop/galax_interop_galpy/potential.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics/galax/HEAD/src/galax/_interop/galax_interop_galpy/potential.py -------------------------------------------------------------------------------- /src/galax/_interop/matplotlib/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics/galax/HEAD/src/galax/_interop/matplotlib/__init__.py -------------------------------------------------------------------------------- /src/galax/_interop/matplotlib/orbit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics/galax/HEAD/src/galax/_interop/matplotlib/orbit.py -------------------------------------------------------------------------------- /src/galax/_interop/matplotlib/potential.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics/galax/HEAD/src/galax/_interop/matplotlib/potential.py -------------------------------------------------------------------------------- /src/galax/_interop/optional_deps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics/galax/HEAD/src/galax/_interop/optional_deps.py -------------------------------------------------------------------------------- /src/galax/_version.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics/galax/HEAD/src/galax/_version.pyi -------------------------------------------------------------------------------- /src/galax/coordinates/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics/galax/HEAD/src/galax/coordinates/__init__.py -------------------------------------------------------------------------------- /src/galax/coordinates/_src/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics/galax/HEAD/src/galax/coordinates/_src/__init__.py -------------------------------------------------------------------------------- /src/galax/coordinates/_src/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics/galax/HEAD/src/galax/coordinates/_src/base.py -------------------------------------------------------------------------------- /src/galax/coordinates/_src/frames/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics/galax/HEAD/src/galax/coordinates/_src/frames/__init__.py -------------------------------------------------------------------------------- /src/galax/coordinates/_src/frames/orphan_chenab.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics/galax/HEAD/src/galax/coordinates/_src/frames/orphan_chenab.py -------------------------------------------------------------------------------- /src/galax/coordinates/_src/frames/simulation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics/galax/HEAD/src/galax/coordinates/_src/frames/simulation.py -------------------------------------------------------------------------------- /src/galax/coordinates/_src/interp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics/galax/HEAD/src/galax/coordinates/_src/interp.py -------------------------------------------------------------------------------- /src/galax/coordinates/_src/ops/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics/galax/HEAD/src/galax/coordinates/_src/ops/__init__.py -------------------------------------------------------------------------------- /src/galax/coordinates/_src/ops/rotating.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics/galax/HEAD/src/galax/coordinates/_src/ops/rotating.py -------------------------------------------------------------------------------- /src/galax/coordinates/_src/pscs/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics/galax/HEAD/src/galax/coordinates/_src/pscs/__init__.py -------------------------------------------------------------------------------- /src/galax/coordinates/_src/pscs/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics/galax/HEAD/src/galax/coordinates/_src/pscs/base.py -------------------------------------------------------------------------------- /src/galax/coordinates/_src/pscs/base_composite.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics/galax/HEAD/src/galax/coordinates/_src/pscs/base_composite.py -------------------------------------------------------------------------------- /src/galax/coordinates/_src/pscs/base_single.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics/galax/HEAD/src/galax/coordinates/_src/pscs/base_single.py -------------------------------------------------------------------------------- /src/galax/coordinates/_src/pscs/composite.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics/galax/HEAD/src/galax/coordinates/_src/pscs/composite.py -------------------------------------------------------------------------------- /src/galax/coordinates/_src/pscs/register_primitives.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics/galax/HEAD/src/galax/coordinates/_src/pscs/register_primitives.py -------------------------------------------------------------------------------- /src/galax/coordinates/_src/pscs/register_vectorapi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics/galax/HEAD/src/galax/coordinates/_src/pscs/register_vectorapi.py -------------------------------------------------------------------------------- /src/galax/coordinates/_src/pscs/single.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics/galax/HEAD/src/galax/coordinates/_src/pscs/single.py -------------------------------------------------------------------------------- /src/galax/coordinates/_src/psps/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics/galax/HEAD/src/galax/coordinates/_src/psps/__init__.py -------------------------------------------------------------------------------- /src/galax/coordinates/_src/psps/core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics/galax/HEAD/src/galax/coordinates/_src/psps/core.py -------------------------------------------------------------------------------- /src/galax/coordinates/_src/psps/register_primitives.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics/galax/HEAD/src/galax/coordinates/_src/psps/register_primitives.py -------------------------------------------------------------------------------- /src/galax/coordinates/_src/psps/register_vectorapi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics/galax/HEAD/src/galax/coordinates/_src/psps/register_vectorapi.py -------------------------------------------------------------------------------- /src/galax/coordinates/_src/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics/galax/HEAD/src/galax/coordinates/_src/utils.py -------------------------------------------------------------------------------- /src/galax/coordinates/frames.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics/galax/HEAD/src/galax/coordinates/frames.py -------------------------------------------------------------------------------- /src/galax/coordinates/ops.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics/galax/HEAD/src/galax/coordinates/ops.py -------------------------------------------------------------------------------- /src/galax/dynamics/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics/galax/HEAD/src/galax/dynamics/__init__.py -------------------------------------------------------------------------------- /src/galax/dynamics/_src/__init__.py: -------------------------------------------------------------------------------- 1 | """``galax`` dynamics.""" 2 | # ruff:noqa: F401 3 | 4 | __all__: list[str] = [] 5 | -------------------------------------------------------------------------------- /src/galax/dynamics/_src/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics/galax/HEAD/src/galax/dynamics/_src/api.py -------------------------------------------------------------------------------- /src/galax/dynamics/_src/cluster/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics/galax/HEAD/src/galax/dynamics/_src/cluster/__init__.py -------------------------------------------------------------------------------- /src/galax/dynamics/_src/cluster/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics/galax/HEAD/src/galax/dynamics/_src/cluster/api.py -------------------------------------------------------------------------------- /src/galax/dynamics/_src/cluster/dmdt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics/galax/HEAD/src/galax/dynamics/_src/cluster/dmdt.py -------------------------------------------------------------------------------- /src/galax/dynamics/_src/cluster/events.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics/galax/HEAD/src/galax/dynamics/_src/cluster/events.py -------------------------------------------------------------------------------- /src/galax/dynamics/_src/cluster/radius.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics/galax/HEAD/src/galax/dynamics/_src/cluster/radius.py -------------------------------------------------------------------------------- /src/galax/dynamics/_src/cluster/register_funcs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics/galax/HEAD/src/galax/dynamics/_src/cluster/register_funcs.py -------------------------------------------------------------------------------- /src/galax/dynamics/_src/cluster/relax_time.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics/galax/HEAD/src/galax/dynamics/_src/cluster/relax_time.py -------------------------------------------------------------------------------- /src/galax/dynamics/_src/cluster/sample.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics/galax/HEAD/src/galax/dynamics/_src/cluster/sample.py -------------------------------------------------------------------------------- /src/galax/dynamics/_src/cluster/solver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics/galax/HEAD/src/galax/dynamics/_src/cluster/solver.py -------------------------------------------------------------------------------- /src/galax/dynamics/_src/custom_types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics/galax/HEAD/src/galax/dynamics/_src/custom_types.py -------------------------------------------------------------------------------- /src/galax/dynamics/_src/examples/__init__.py: -------------------------------------------------------------------------------- 1 | """System-specific dynamics.""" 2 | 3 | __all__: list[str] = [] 4 | -------------------------------------------------------------------------------- /src/galax/dynamics/_src/examples/mw_lmc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics/galax/HEAD/src/galax/dynamics/_src/examples/mw_lmc.py -------------------------------------------------------------------------------- /src/galax/dynamics/_src/examples/uniform_acceleration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics/galax/HEAD/src/galax/dynamics/_src/examples/uniform_acceleration.py -------------------------------------------------------------------------------- /src/galax/dynamics/_src/experimental/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics/galax/HEAD/src/galax/dynamics/_src/experimental/__init__.py -------------------------------------------------------------------------------- /src/galax/dynamics/_src/experimental/df.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics/galax/HEAD/src/galax/dynamics/_src/experimental/df.py -------------------------------------------------------------------------------- /src/galax/dynamics/_src/experimental/integrate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics/galax/HEAD/src/galax/dynamics/_src/experimental/integrate.py -------------------------------------------------------------------------------- /src/galax/dynamics/_src/experimental/stream.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics/galax/HEAD/src/galax/dynamics/_src/experimental/stream.py -------------------------------------------------------------------------------- /src/galax/dynamics/_src/fields.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics/galax/HEAD/src/galax/dynamics/_src/fields.py -------------------------------------------------------------------------------- /src/galax/dynamics/_src/legacy/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics/galax/HEAD/src/galax/dynamics/_src/legacy/__init__.py -------------------------------------------------------------------------------- /src/galax/dynamics/_src/legacy/funcs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics/galax/HEAD/src/galax/dynamics/_src/legacy/funcs.py -------------------------------------------------------------------------------- /src/galax/dynamics/_src/legacy/integrator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics/galax/HEAD/src/galax/dynamics/_src/legacy/integrator.py -------------------------------------------------------------------------------- /src/galax/dynamics/_src/legacy/interp_psp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics/galax/HEAD/src/galax/dynamics/_src/legacy/interp_psp.py -------------------------------------------------------------------------------- /src/galax/dynamics/_src/legacy/mockstream/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics/galax/HEAD/src/galax/dynamics/_src/legacy/mockstream/__init__.py -------------------------------------------------------------------------------- /src/galax/dynamics/_src/legacy/mockstream/_moving.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics/galax/HEAD/src/galax/dynamics/_src/legacy/mockstream/_moving.py -------------------------------------------------------------------------------- /src/galax/dynamics/_src/legacy/mockstream/df/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics/galax/HEAD/src/galax/dynamics/_src/legacy/mockstream/df/__init__.py -------------------------------------------------------------------------------- /src/galax/dynamics/_src/legacy/mockstream/df/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics/galax/HEAD/src/galax/dynamics/_src/legacy/mockstream/df/base.py -------------------------------------------------------------------------------- /src/galax/dynamics/_src/legacy/mockstream/df/chen24.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics/galax/HEAD/src/galax/dynamics/_src/legacy/mockstream/df/chen24.py -------------------------------------------------------------------------------- /src/galax/dynamics/_src/legacy/mockstream/df/fardal15.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics/galax/HEAD/src/galax/dynamics/_src/legacy/mockstream/df/fardal15.py -------------------------------------------------------------------------------- /src/galax/dynamics/_src/legacy/mockstream/df/progenitor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics/galax/HEAD/src/galax/dynamics/_src/legacy/mockstream/df/progenitor.py -------------------------------------------------------------------------------- /src/galax/dynamics/_src/legacy/mockstream/mockstream_generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics/galax/HEAD/src/galax/dynamics/_src/legacy/mockstream/mockstream_generator.py -------------------------------------------------------------------------------- /src/galax/dynamics/_src/mockstream/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics/galax/HEAD/src/galax/dynamics/_src/mockstream/__init__.py -------------------------------------------------------------------------------- /src/galax/dynamics/_src/mockstream/arm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics/galax/HEAD/src/galax/dynamics/_src/mockstream/arm.py -------------------------------------------------------------------------------- /src/galax/dynamics/_src/mockstream/core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics/galax/HEAD/src/galax/dynamics/_src/mockstream/core.py -------------------------------------------------------------------------------- /src/galax/dynamics/_src/orbit/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics/galax/HEAD/src/galax/dynamics/_src/orbit/__init__.py -------------------------------------------------------------------------------- /src/galax/dynamics/_src/orbit/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics/galax/HEAD/src/galax/dynamics/_src/orbit/api.py -------------------------------------------------------------------------------- /src/galax/dynamics/_src/orbit/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics/galax/HEAD/src/galax/dynamics/_src/orbit/base.py -------------------------------------------------------------------------------- /src/galax/dynamics/_src/orbit/compute.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics/galax/HEAD/src/galax/dynamics/_src/orbit/compute.py -------------------------------------------------------------------------------- /src/galax/dynamics/_src/orbit/field_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics/galax/HEAD/src/galax/dynamics/_src/orbit/field_base.py -------------------------------------------------------------------------------- /src/galax/dynamics/_src/orbit/field_hamiltonian.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics/galax/HEAD/src/galax/dynamics/_src/orbit/field_hamiltonian.py -------------------------------------------------------------------------------- /src/galax/dynamics/_src/orbit/field_nbody.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics/galax/HEAD/src/galax/dynamics/_src/orbit/field_nbody.py -------------------------------------------------------------------------------- /src/galax/dynamics/_src/orbit/interp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics/galax/HEAD/src/galax/dynamics/_src/orbit/interp.py -------------------------------------------------------------------------------- /src/galax/dynamics/_src/orbit/orbit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics/galax/HEAD/src/galax/dynamics/_src/orbit/orbit.py -------------------------------------------------------------------------------- /src/galax/dynamics/_src/orbit/plot_helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics/galax/HEAD/src/galax/dynamics/_src/orbit/plot_helper.py -------------------------------------------------------------------------------- /src/galax/dynamics/_src/orbit/register_dfx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics/galax/HEAD/src/galax/dynamics/_src/orbit/register_dfx.py -------------------------------------------------------------------------------- /src/galax/dynamics/_src/orbit/solver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics/galax/HEAD/src/galax/dynamics/_src/orbit/solver.py -------------------------------------------------------------------------------- /src/galax/dynamics/_src/parsetime.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics/galax/HEAD/src/galax/dynamics/_src/parsetime.py -------------------------------------------------------------------------------- /src/galax/dynamics/_src/register_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics/galax/HEAD/src/galax/dynamics/_src/register_api.py -------------------------------------------------------------------------------- /src/galax/dynamics/_src/solver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics/galax/HEAD/src/galax/dynamics/_src/solver.py -------------------------------------------------------------------------------- /src/galax/dynamics/_src/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics/galax/HEAD/src/galax/dynamics/_src/utils.py -------------------------------------------------------------------------------- /src/galax/dynamics/cluster.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics/galax/HEAD/src/galax/dynamics/cluster.py -------------------------------------------------------------------------------- /src/galax/dynamics/examples.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics/galax/HEAD/src/galax/dynamics/examples.py -------------------------------------------------------------------------------- /src/galax/dynamics/fields.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics/galax/HEAD/src/galax/dynamics/fields.py -------------------------------------------------------------------------------- /src/galax/dynamics/integrate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics/galax/HEAD/src/galax/dynamics/integrate.py -------------------------------------------------------------------------------- /src/galax/dynamics/mockstream.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics/galax/HEAD/src/galax/dynamics/mockstream.py -------------------------------------------------------------------------------- /src/galax/dynamics/orbit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics/galax/HEAD/src/galax/dynamics/orbit.py -------------------------------------------------------------------------------- /src/galax/dynamics/plot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics/galax/HEAD/src/galax/dynamics/plot.py -------------------------------------------------------------------------------- /src/galax/potential/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics/galax/HEAD/src/galax/potential/__init__.py -------------------------------------------------------------------------------- /src/galax/potential/_src/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics/galax/HEAD/src/galax/potential/_src/__init__.py -------------------------------------------------------------------------------- /src/galax/potential/_src/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics/galax/HEAD/src/galax/potential/_src/api.py -------------------------------------------------------------------------------- /src/galax/potential/_src/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics/galax/HEAD/src/galax/potential/_src/base.py -------------------------------------------------------------------------------- /src/galax/potential/_src/base_multi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics/galax/HEAD/src/galax/potential/_src/base_multi.py -------------------------------------------------------------------------------- /src/galax/potential/_src/base_single.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics/galax/HEAD/src/galax/potential/_src/base_single.py -------------------------------------------------------------------------------- /src/galax/potential/_src/builtin/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics/galax/HEAD/src/galax/potential/_src/builtin/__init__.py -------------------------------------------------------------------------------- /src/galax/potential/_src/builtin/burkert.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics/galax/HEAD/src/galax/potential/_src/builtin/burkert.py -------------------------------------------------------------------------------- /src/galax/potential/_src/builtin/const.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics/galax/HEAD/src/galax/potential/_src/builtin/const.py -------------------------------------------------------------------------------- /src/galax/potential/_src/builtin/example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics/galax/HEAD/src/galax/potential/_src/builtin/example.py -------------------------------------------------------------------------------- /src/galax/potential/_src/builtin/hernquist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics/galax/HEAD/src/galax/potential/_src/builtin/hernquist.py -------------------------------------------------------------------------------- /src/galax/potential/_src/builtin/isochrone.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics/galax/HEAD/src/galax/potential/_src/builtin/isochrone.py -------------------------------------------------------------------------------- /src/galax/potential/_src/builtin/jaffe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics/galax/HEAD/src/galax/potential/_src/builtin/jaffe.py -------------------------------------------------------------------------------- /src/galax/potential/_src/builtin/kepler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics/galax/HEAD/src/galax/potential/_src/builtin/kepler.py -------------------------------------------------------------------------------- /src/galax/potential/_src/builtin/kuzmin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics/galax/HEAD/src/galax/potential/_src/builtin/kuzmin.py -------------------------------------------------------------------------------- /src/galax/potential/_src/builtin/logarithmic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics/galax/HEAD/src/galax/potential/_src/builtin/logarithmic.py -------------------------------------------------------------------------------- /src/galax/potential/_src/builtin/longmurali.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics/galax/HEAD/src/galax/potential/_src/builtin/longmurali.py -------------------------------------------------------------------------------- /src/galax/potential/_src/builtin/milkyway.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics/galax/HEAD/src/galax/potential/_src/builtin/milkyway.py -------------------------------------------------------------------------------- /src/galax/potential/_src/builtin/miyamotonagai.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics/galax/HEAD/src/galax/potential/_src/builtin/miyamotonagai.py -------------------------------------------------------------------------------- /src/galax/potential/_src/builtin/mn3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics/galax/HEAD/src/galax/potential/_src/builtin/mn3.py -------------------------------------------------------------------------------- /src/galax/potential/_src/builtin/monari2016.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics/galax/HEAD/src/galax/potential/_src/builtin/monari2016.py -------------------------------------------------------------------------------- /src/galax/potential/_src/builtin/multipole.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics/galax/HEAD/src/galax/potential/_src/builtin/multipole.py -------------------------------------------------------------------------------- /src/galax/potential/_src/builtin/nfw/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics/galax/HEAD/src/galax/potential/_src/builtin/nfw/__init__.py -------------------------------------------------------------------------------- /src/galax/potential/_src/builtin/nfw/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics/galax/HEAD/src/galax/potential/_src/builtin/nfw/base.py -------------------------------------------------------------------------------- /src/galax/potential/_src/builtin/nfw/generalized.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics/galax/HEAD/src/galax/potential/_src/builtin/nfw/generalized.py -------------------------------------------------------------------------------- /src/galax/potential/_src/builtin/nfw/leesuto.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics/galax/HEAD/src/galax/potential/_src/builtin/nfw/leesuto.py -------------------------------------------------------------------------------- /src/galax/potential/_src/builtin/nfw/triaxial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics/galax/HEAD/src/galax/potential/_src/builtin/nfw/triaxial.py -------------------------------------------------------------------------------- /src/galax/potential/_src/builtin/nfw/truncated.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics/galax/HEAD/src/galax/potential/_src/builtin/nfw/truncated.py -------------------------------------------------------------------------------- /src/galax/potential/_src/builtin/nfw/vogelsburger08.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics/galax/HEAD/src/galax/potential/_src/builtin/nfw/vogelsburger08.py -------------------------------------------------------------------------------- /src/galax/potential/_src/builtin/null.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics/galax/HEAD/src/galax/potential/_src/builtin/null.py -------------------------------------------------------------------------------- /src/galax/potential/_src/builtin/plummer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics/galax/HEAD/src/galax/potential/_src/builtin/plummer.py -------------------------------------------------------------------------------- /src/galax/potential/_src/builtin/powerlawcutoff.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics/galax/HEAD/src/galax/potential/_src/builtin/powerlawcutoff.py -------------------------------------------------------------------------------- /src/galax/potential/_src/builtin/satoh.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics/galax/HEAD/src/galax/potential/_src/builtin/satoh.py -------------------------------------------------------------------------------- /src/galax/potential/_src/builtin/stoneostriker15.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics/galax/HEAD/src/galax/potential/_src/builtin/stoneostriker15.py -------------------------------------------------------------------------------- /src/galax/potential/_src/composite.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics/galax/HEAD/src/galax/potential/_src/composite.py -------------------------------------------------------------------------------- /src/galax/potential/_src/io.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics/galax/HEAD/src/galax/potential/_src/io.py -------------------------------------------------------------------------------- /src/galax/potential/_src/params/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics/galax/HEAD/src/galax/potential/_src/params/__init__.py -------------------------------------------------------------------------------- /src/galax/potential/_src/params/attr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics/galax/HEAD/src/galax/potential/_src/params/attr.py -------------------------------------------------------------------------------- /src/galax/potential/_src/params/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics/galax/HEAD/src/galax/potential/_src/params/base.py -------------------------------------------------------------------------------- /src/galax/potential/_src/params/constant.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics/galax/HEAD/src/galax/potential/_src/params/constant.py -------------------------------------------------------------------------------- /src/galax/potential/_src/params/core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics/galax/HEAD/src/galax/potential/_src/params/core.py -------------------------------------------------------------------------------- /src/galax/potential/_src/params/field.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics/galax/HEAD/src/galax/potential/_src/params/field.py -------------------------------------------------------------------------------- /src/galax/potential/_src/params/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics/galax/HEAD/src/galax/potential/_src/params/utils.py -------------------------------------------------------------------------------- /src/galax/potential/_src/plot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics/galax/HEAD/src/galax/potential/_src/plot.py -------------------------------------------------------------------------------- /src/galax/potential/_src/register_funcs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics/galax/HEAD/src/galax/potential/_src/register_funcs.py -------------------------------------------------------------------------------- /src/galax/potential/_src/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics/galax/HEAD/src/galax/potential/_src/utils.py -------------------------------------------------------------------------------- /src/galax/potential/_src/xfm/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics/galax/HEAD/src/galax/potential/_src/xfm/__init__.py -------------------------------------------------------------------------------- /src/galax/potential/_src/xfm/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics/galax/HEAD/src/galax/potential/_src/xfm/base.py -------------------------------------------------------------------------------- /src/galax/potential/_src/xfm/flattened.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics/galax/HEAD/src/galax/potential/_src/xfm/flattened.py -------------------------------------------------------------------------------- /src/galax/potential/_src/xfm/translate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics/galax/HEAD/src/galax/potential/_src/xfm/translate.py -------------------------------------------------------------------------------- /src/galax/potential/_src/xfm/triaxial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics/galax/HEAD/src/galax/potential/_src/xfm/triaxial.py -------------------------------------------------------------------------------- /src/galax/potential/_src/xfm/xop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics/galax/HEAD/src/galax/potential/_src/xfm/xop.py -------------------------------------------------------------------------------- /src/galax/potential/io.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics/galax/HEAD/src/galax/potential/io.py -------------------------------------------------------------------------------- /src/galax/potential/params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics/galax/HEAD/src/galax/potential/params.py -------------------------------------------------------------------------------- /src/galax/potential/plot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics/galax/HEAD/src/galax/potential/plot.py -------------------------------------------------------------------------------- /src/galax/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/galax/setup_package.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics/galax/HEAD/src/galax/setup_package.py -------------------------------------------------------------------------------- /src/galax/utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics/galax/HEAD/src/galax/utils/__init__.py -------------------------------------------------------------------------------- /src/galax/utils/_boundinstance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics/galax/HEAD/src/galax/utils/_boundinstance.py -------------------------------------------------------------------------------- /src/galax/utils/_jax.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics/galax/HEAD/src/galax/utils/_jax.py -------------------------------------------------------------------------------- /src/galax/utils/_shape.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics/galax/HEAD/src/galax/utils/_shape.py -------------------------------------------------------------------------------- /src/galax/utils/dataclasses.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics/galax/HEAD/src/galax/utils/dataclasses.py -------------------------------------------------------------------------------- /src/galax/utils/loop_strategies.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics/galax/HEAD/src/galax/utils/loop_strategies.py -------------------------------------------------------------------------------- /tests/benchmark/__init__.py: -------------------------------------------------------------------------------- 1 | """Benchmark Tests.""" 2 | -------------------------------------------------------------------------------- /tests/benchmark/test_experimental.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics/galax/HEAD/tests/benchmark/test_experimental.py -------------------------------------------------------------------------------- /tests/functional/reference/test_first_deriv.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics/galax/HEAD/tests/functional/reference/test_first_deriv.txt -------------------------------------------------------------------------------- /tests/functional/reference/test_second_deriv.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics/galax/HEAD/tests/functional/reference/test_second_deriv.txt -------------------------------------------------------------------------------- /tests/functional/test_mockstreamgenerator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics/galax/HEAD/tests/functional/test_mockstreamgenerator.py -------------------------------------------------------------------------------- /tests/integration/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/integration/matplotlib/.gitignore: -------------------------------------------------------------------------------- 1 | baseline/ 2 | -------------------------------------------------------------------------------- /tests/integration/matplotlib/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics/galax/HEAD/tests/integration/matplotlib/__init__.py -------------------------------------------------------------------------------- /tests/integration/matplotlib/baseline/test_kepler_potential_contours.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics/galax/HEAD/tests/integration/matplotlib/baseline/test_kepler_potential_contours.png -------------------------------------------------------------------------------- /tests/integration/matplotlib/hashes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics/galax/HEAD/tests/integration/matplotlib/hashes.json -------------------------------------------------------------------------------- /tests/integration/matplotlib/test_orbit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics/galax/HEAD/tests/integration/matplotlib/test_orbit.py -------------------------------------------------------------------------------- /tests/integration/matplotlib/test_potential.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics/galax/HEAD/tests/integration/matplotlib/test_potential.py -------------------------------------------------------------------------------- /tests/smoke/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/smoke/coordinates/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/smoke/coordinates/test_package.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics/galax/HEAD/tests/smoke/coordinates/test_package.py -------------------------------------------------------------------------------- /tests/smoke/dynamics/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/smoke/dynamics/integrate/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/smoke/dynamics/integrate/test_package.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics/galax/HEAD/tests/smoke/dynamics/integrate/test_package.py -------------------------------------------------------------------------------- /tests/smoke/dynamics/mockstream/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/smoke/dynamics/mockstream/test_package.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics/galax/HEAD/tests/smoke/dynamics/mockstream/test_package.py -------------------------------------------------------------------------------- /tests/smoke/dynamics/test_package.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics/galax/HEAD/tests/smoke/dynamics/test_package.py -------------------------------------------------------------------------------- /tests/smoke/potential/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/smoke/potential/test_package.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics/galax/HEAD/tests/smoke/potential/test_package.py -------------------------------------------------------------------------------- /tests/smoke/test_package.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics/galax/HEAD/tests/smoke/test_package.py -------------------------------------------------------------------------------- /tests/smoke/utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/smoke/utils/test_package.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics/galax/HEAD/tests/smoke/utils/test_package.py -------------------------------------------------------------------------------- /tests/unit/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/unit/coordinates/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/unit/coordinates/psc/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/unit/coordinates/psc/test_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics/galax/HEAD/tests/unit/coordinates/psc/test_base.py -------------------------------------------------------------------------------- /tests/unit/coordinates/psc/test_base_single.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics/galax/HEAD/tests/unit/coordinates/psc/test_base_single.py -------------------------------------------------------------------------------- /tests/unit/coordinates/psc/test_single.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics/galax/HEAD/tests/unit/coordinates/psc/test_single.py -------------------------------------------------------------------------------- /tests/unit/coordinates/psp/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/unit/coordinates/psp/test_psp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics/galax/HEAD/tests/unit/coordinates/psp/test_psp.py -------------------------------------------------------------------------------- /tests/unit/coordinates/test_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics/galax/HEAD/tests/unit/coordinates/test_base.py -------------------------------------------------------------------------------- /tests/unit/dynamics/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/unit/dynamics/mockstream/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/unit/dynamics/mockstream/test_mockstreamgenerator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics/galax/HEAD/tests/unit/dynamics/mockstream/test_mockstreamgenerator.py -------------------------------------------------------------------------------- /tests/unit/dynamics/test_orbit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics/galax/HEAD/tests/unit/dynamics/test_orbit.py -------------------------------------------------------------------------------- /tests/unit/potential/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/unit/potential/builtin/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/unit/potential/builtin/test_abstractmultipole.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics/galax/HEAD/tests/unit/potential/builtin/test_abstractmultipole.py -------------------------------------------------------------------------------- /tests/unit/potential/builtin/test_bovymwpotential2014.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics/galax/HEAD/tests/unit/potential/builtin/test_bovymwpotential2014.py -------------------------------------------------------------------------------- /tests/unit/potential/builtin/test_burkert.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics/galax/HEAD/tests/unit/potential/builtin/test_burkert.py -------------------------------------------------------------------------------- /tests/unit/potential/builtin/test_common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics/galax/HEAD/tests/unit/potential/builtin/test_common.py -------------------------------------------------------------------------------- /tests/unit/potential/builtin/test_composite.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics/galax/HEAD/tests/unit/potential/builtin/test_composite.py -------------------------------------------------------------------------------- /tests/unit/potential/builtin/test_cutoffnfw.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics/galax/HEAD/tests/unit/potential/builtin/test_cutoffnfw.py -------------------------------------------------------------------------------- /tests/unit/potential/builtin/test_harmonicoscillator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics/galax/HEAD/tests/unit/potential/builtin/test_harmonicoscillator.py -------------------------------------------------------------------------------- /tests/unit/potential/builtin/test_henonheiles.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics/galax/HEAD/tests/unit/potential/builtin/test_henonheiles.py -------------------------------------------------------------------------------- /tests/unit/potential/builtin/test_hernquist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics/galax/HEAD/tests/unit/potential/builtin/test_hernquist.py -------------------------------------------------------------------------------- /tests/unit/potential/builtin/test_innermultipole.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics/galax/HEAD/tests/unit/potential/builtin/test_innermultipole.py -------------------------------------------------------------------------------- /tests/unit/potential/builtin/test_isochrone.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics/galax/HEAD/tests/unit/potential/builtin/test_isochrone.py -------------------------------------------------------------------------------- /tests/unit/potential/builtin/test_jaffe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics/galax/HEAD/tests/unit/potential/builtin/test_jaffe.py -------------------------------------------------------------------------------- /tests/unit/potential/builtin/test_kepler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics/galax/HEAD/tests/unit/potential/builtin/test_kepler.py -------------------------------------------------------------------------------- /tests/unit/potential/builtin/test_kuzmin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics/galax/HEAD/tests/unit/potential/builtin/test_kuzmin.py -------------------------------------------------------------------------------- /tests/unit/potential/builtin/test_leesutotriaxialnfw.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics/galax/HEAD/tests/unit/potential/builtin/test_leesutotriaxialnfw.py -------------------------------------------------------------------------------- /tests/unit/potential/builtin/test_lm10.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics/galax/HEAD/tests/unit/potential/builtin/test_lm10.py -------------------------------------------------------------------------------- /tests/unit/potential/builtin/test_lmj09logarithmic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics/galax/HEAD/tests/unit/potential/builtin/test_lmj09logarithmic.py -------------------------------------------------------------------------------- /tests/unit/potential/builtin/test_logarithmic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics/galax/HEAD/tests/unit/potential/builtin/test_logarithmic.py -------------------------------------------------------------------------------- /tests/unit/potential/builtin/test_longmuralibar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics/galax/HEAD/tests/unit/potential/builtin/test_longmuralibar.py -------------------------------------------------------------------------------- /tests/unit/potential/builtin/test_milkywaypotential.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics/galax/HEAD/tests/unit/potential/builtin/test_milkywaypotential.py -------------------------------------------------------------------------------- /tests/unit/potential/builtin/test_milkywaypotential2022.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics/galax/HEAD/tests/unit/potential/builtin/test_milkywaypotential2022.py -------------------------------------------------------------------------------- /tests/unit/potential/builtin/test_miyamotonagai.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics/galax/HEAD/tests/unit/potential/builtin/test_miyamotonagai.py -------------------------------------------------------------------------------- /tests/unit/potential/builtin/test_mn3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics/galax/HEAD/tests/unit/potential/builtin/test_mn3.py -------------------------------------------------------------------------------- /tests/unit/potential/builtin/test_monaribar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics/galax/HEAD/tests/unit/potential/builtin/test_monaribar.py -------------------------------------------------------------------------------- /tests/unit/potential/builtin/test_multipole.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics/galax/HEAD/tests/unit/potential/builtin/test_multipole.py -------------------------------------------------------------------------------- /tests/unit/potential/builtin/test_nfw.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics/galax/HEAD/tests/unit/potential/builtin/test_nfw.py -------------------------------------------------------------------------------- /tests/unit/potential/builtin/test_null.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics/galax/HEAD/tests/unit/potential/builtin/test_null.py -------------------------------------------------------------------------------- /tests/unit/potential/builtin/test_outermultipole.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics/galax/HEAD/tests/unit/potential/builtin/test_outermultipole.py -------------------------------------------------------------------------------- /tests/unit/potential/builtin/test_plummer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics/galax/HEAD/tests/unit/potential/builtin/test_plummer.py -------------------------------------------------------------------------------- /tests/unit/potential/builtin/test_powerlawcutoff.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics/galax/HEAD/tests/unit/potential/builtin/test_powerlawcutoff.py -------------------------------------------------------------------------------- /tests/unit/potential/builtin/test_satoh.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics/galax/HEAD/tests/unit/potential/builtin/test_satoh.py -------------------------------------------------------------------------------- /tests/unit/potential/builtin/test_stone.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics/galax/HEAD/tests/unit/potential/builtin/test_stone.py -------------------------------------------------------------------------------- /tests/unit/potential/builtin/test_triaxialhernquist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics/galax/HEAD/tests/unit/potential/builtin/test_triaxialhernquist.py -------------------------------------------------------------------------------- /tests/unit/potential/builtin/test_triaxialnfw.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics/galax/HEAD/tests/unit/potential/builtin/test_triaxialnfw.py -------------------------------------------------------------------------------- /tests/unit/potential/builtin/test_vogelsberger08nfw.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics/galax/HEAD/tests/unit/potential/builtin/test_vogelsberger08nfw.py -------------------------------------------------------------------------------- /tests/unit/potential/io/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/unit/potential/io/test_gala.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics/galax/HEAD/tests/unit/potential/io/test_gala.py -------------------------------------------------------------------------------- /tests/unit/potential/param/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/unit/potential/param/test_core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics/galax/HEAD/tests/unit/potential/param/test_core.py -------------------------------------------------------------------------------- /tests/unit/potential/param/test_field.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics/galax/HEAD/tests/unit/potential/param/test_field.py -------------------------------------------------------------------------------- /tests/unit/potential/test_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics/galax/HEAD/tests/unit/potential/test_base.py -------------------------------------------------------------------------------- /tests/unit/potential/test_composite.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics/galax/HEAD/tests/unit/potential/test_composite.py -------------------------------------------------------------------------------- /tests/unit/potential/test_core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics/galax/HEAD/tests/unit/potential/test_core.py -------------------------------------------------------------------------------- /tests/unit/potential/test_frame.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics/galax/HEAD/tests/unit/potential/test_frame.py -------------------------------------------------------------------------------- /tests/unit/potential/test_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics/galax/HEAD/tests/unit/potential/test_utils.py -------------------------------------------------------------------------------- /tests/unit/utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/unit/utils/test_jax.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics/galax/HEAD/tests/unit/utils/test_jax.py -------------------------------------------------------------------------------- /tests/unit/utils/test_shape.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics/galax/HEAD/tests/unit/utils/test_shape.py -------------------------------------------------------------------------------- /uv.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics/galax/HEAD/uv.lock --------------------------------------------------------------------------------