├── .copier-answers.yml ├── .git_archival.txt ├── .gitattributes ├── .github ├── CONTRIBUTING.md ├── dependabot.yml ├── matchers │ └── pylint.json ├── release.yml └── workflows │ ├── cd.yml │ └── ci.yml ├── .gitignore ├── .pre-commit-config.yaml ├── .python-version ├── .readthedocs.yaml ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── SECURITY.md ├── conftest.py ├── docs ├── Makefile ├── _static │ ├── custom_toc.css │ ├── favicon.png │ └── toggle_toc.js ├── api │ ├── dims.md │ ├── experimental.md │ ├── index.md │ ├── quantity.md │ ├── units.md │ └── unitsystems.md ├── conf.py ├── contributing.md ├── conventions.md ├── dev.md ├── glossary.md ├── guides │ ├── dimensions.md │ ├── quantity.md │ ├── type-checking.md │ └── units_and_systems.md ├── index.md └── interop │ ├── astropy.md │ ├── gala.md │ └── matplotlib.md ├── noxfile.py ├── paper ├── paper.bib ├── paper.md └── paper.pdf ├── pyproject.toml ├── src └── unxt │ ├── __init__.py │ ├── _interop │ ├── __init__.py │ ├── optional_deps.py │ ├── unxt_interop_astropy │ │ ├── __init__.py │ │ ├── custom_types.py │ │ ├── dimensions.py │ │ ├── quantity.py │ │ └── units.py │ ├── unxt_interop_gala │ │ ├── __init__.py │ │ └── unitsystems.py │ └── unxt_interop_mpl │ │ └── __init__.py │ ├── _src │ ├── __init__.py │ ├── dimensions │ │ ├── __init__.py │ │ ├── api.py │ │ └── core.py │ ├── experimental.py │ ├── quantity │ │ ├── __init__.py │ │ ├── angle.py │ │ ├── api.py │ │ ├── base.py │ │ ├── base_angle.py │ │ ├── base_parametric.py │ │ ├── flag.py │ │ ├── mixins.py │ │ ├── quantity.py │ │ ├── register_api.py │ │ ├── register_conversions.py │ │ ├── register_dispatches.py │ │ ├── register_primitives.py │ │ ├── unchecked.py │ │ └── value.py │ ├── units │ │ ├── __init__.py │ │ ├── api.py │ │ └── register_dispatches.py │ ├── unitsystems │ │ ├── __init__.py │ │ ├── base.py │ │ ├── builtin.py │ │ ├── builtin_dimensions.py │ │ ├── compare.py │ │ ├── core.py │ │ ├── flags.py │ │ ├── realizations.py │ │ └── utils.py │ └── utils.py │ ├── _version.pyi │ ├── dims.py │ ├── py.typed │ ├── quantity.py │ ├── setup_package.py │ ├── units.py │ └── unitsystems.py ├── tests ├── __init__.py ├── benchmark │ ├── __init__.py │ ├── test_dims.py │ ├── test_quaxed.py │ ├── test_units.py │ └── test_unitsystems.py ├── integration │ ├── __init__.py │ ├── equinox │ │ ├── __init__.py │ │ └── test_module.py │ ├── matplotlib │ │ ├── __init__.py │ │ ├── baseline │ │ │ └── test_labels_axes.png │ │ └── test_interop_mpl.py │ ├── quax │ │ ├── __init__.py │ │ └── test_lora.py │ ├── quaxed │ │ ├── __init__.py │ │ ├── test_lax.py │ │ └── test_numpy.py │ └── test_plum.py └── unit │ ├── __init__.py │ ├── test_deprecated.py │ ├── test_package.py │ ├── test_quantity.py │ └── test_unitsystems.py └── uv.lock /.copier-answers.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics/unxt/HEAD/.copier-answers.yml -------------------------------------------------------------------------------- /.git_archival.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics/unxt/HEAD/.git_archival.txt -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | .git_archival.txt export-subst 2 | -------------------------------------------------------------------------------- /.github/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics/unxt/HEAD/.github/CONTRIBUTING.md -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics/unxt/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/matchers/pylint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics/unxt/HEAD/.github/matchers/pylint.json -------------------------------------------------------------------------------- /.github/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics/unxt/HEAD/.github/release.yml -------------------------------------------------------------------------------- /.github/workflows/cd.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics/unxt/HEAD/.github/workflows/cd.yml -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics/unxt/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics/unxt/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics/unxt/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /.python-version: -------------------------------------------------------------------------------- 1 | 3.12 2 | -------------------------------------------------------------------------------- /.readthedocs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics/unxt/HEAD/.readthedocs.yaml -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics/unxt/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics/unxt/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics/unxt/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics/unxt/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics/unxt/HEAD/SECURITY.md -------------------------------------------------------------------------------- /conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics/unxt/HEAD/conftest.py -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics/unxt/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/_static/custom_toc.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics/unxt/HEAD/docs/_static/custom_toc.css -------------------------------------------------------------------------------- /docs/_static/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics/unxt/HEAD/docs/_static/favicon.png -------------------------------------------------------------------------------- /docs/_static/toggle_toc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics/unxt/HEAD/docs/_static/toggle_toc.js -------------------------------------------------------------------------------- /docs/api/dims.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics/unxt/HEAD/docs/api/dims.md -------------------------------------------------------------------------------- /docs/api/experimental.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics/unxt/HEAD/docs/api/experimental.md -------------------------------------------------------------------------------- /docs/api/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics/unxt/HEAD/docs/api/index.md -------------------------------------------------------------------------------- /docs/api/quantity.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics/unxt/HEAD/docs/api/quantity.md -------------------------------------------------------------------------------- /docs/api/units.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics/unxt/HEAD/docs/api/units.md -------------------------------------------------------------------------------- /docs/api/unitsystems.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics/unxt/HEAD/docs/api/unitsystems.md -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics/unxt/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/contributing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics/unxt/HEAD/docs/contributing.md -------------------------------------------------------------------------------- /docs/conventions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics/unxt/HEAD/docs/conventions.md -------------------------------------------------------------------------------- /docs/dev.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics/unxt/HEAD/docs/dev.md -------------------------------------------------------------------------------- /docs/glossary.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics/unxt/HEAD/docs/glossary.md -------------------------------------------------------------------------------- /docs/guides/dimensions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics/unxt/HEAD/docs/guides/dimensions.md -------------------------------------------------------------------------------- /docs/guides/quantity.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics/unxt/HEAD/docs/guides/quantity.md -------------------------------------------------------------------------------- /docs/guides/type-checking.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics/unxt/HEAD/docs/guides/type-checking.md -------------------------------------------------------------------------------- /docs/guides/units_and_systems.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics/unxt/HEAD/docs/guides/units_and_systems.md -------------------------------------------------------------------------------- /docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics/unxt/HEAD/docs/index.md -------------------------------------------------------------------------------- /docs/interop/astropy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics/unxt/HEAD/docs/interop/astropy.md -------------------------------------------------------------------------------- /docs/interop/gala.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics/unxt/HEAD/docs/interop/gala.md -------------------------------------------------------------------------------- /docs/interop/matplotlib.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics/unxt/HEAD/docs/interop/matplotlib.md -------------------------------------------------------------------------------- /noxfile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics/unxt/HEAD/noxfile.py -------------------------------------------------------------------------------- /paper/paper.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics/unxt/HEAD/paper/paper.bib -------------------------------------------------------------------------------- /paper/paper.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics/unxt/HEAD/paper/paper.md -------------------------------------------------------------------------------- /paper/paper.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics/unxt/HEAD/paper/paper.pdf -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics/unxt/HEAD/pyproject.toml -------------------------------------------------------------------------------- /src/unxt/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics/unxt/HEAD/src/unxt/__init__.py -------------------------------------------------------------------------------- /src/unxt/_interop/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics/unxt/HEAD/src/unxt/_interop/__init__.py -------------------------------------------------------------------------------- /src/unxt/_interop/optional_deps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics/unxt/HEAD/src/unxt/_interop/optional_deps.py -------------------------------------------------------------------------------- /src/unxt/_interop/unxt_interop_astropy/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics/unxt/HEAD/src/unxt/_interop/unxt_interop_astropy/__init__.py -------------------------------------------------------------------------------- /src/unxt/_interop/unxt_interop_astropy/custom_types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics/unxt/HEAD/src/unxt/_interop/unxt_interop_astropy/custom_types.py -------------------------------------------------------------------------------- /src/unxt/_interop/unxt_interop_astropy/dimensions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics/unxt/HEAD/src/unxt/_interop/unxt_interop_astropy/dimensions.py -------------------------------------------------------------------------------- /src/unxt/_interop/unxt_interop_astropy/quantity.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics/unxt/HEAD/src/unxt/_interop/unxt_interop_astropy/quantity.py -------------------------------------------------------------------------------- /src/unxt/_interop/unxt_interop_astropy/units.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics/unxt/HEAD/src/unxt/_interop/unxt_interop_astropy/units.py -------------------------------------------------------------------------------- /src/unxt/_interop/unxt_interop_gala/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics/unxt/HEAD/src/unxt/_interop/unxt_interop_gala/__init__.py -------------------------------------------------------------------------------- /src/unxt/_interop/unxt_interop_gala/unitsystems.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics/unxt/HEAD/src/unxt/_interop/unxt_interop_gala/unitsystems.py -------------------------------------------------------------------------------- /src/unxt/_interop/unxt_interop_mpl/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics/unxt/HEAD/src/unxt/_interop/unxt_interop_mpl/__init__.py -------------------------------------------------------------------------------- /src/unxt/_src/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics/unxt/HEAD/src/unxt/_src/__init__.py -------------------------------------------------------------------------------- /src/unxt/_src/dimensions/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics/unxt/HEAD/src/unxt/_src/dimensions/__init__.py -------------------------------------------------------------------------------- /src/unxt/_src/dimensions/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics/unxt/HEAD/src/unxt/_src/dimensions/api.py -------------------------------------------------------------------------------- /src/unxt/_src/dimensions/core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics/unxt/HEAD/src/unxt/_src/dimensions/core.py -------------------------------------------------------------------------------- /src/unxt/_src/experimental.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics/unxt/HEAD/src/unxt/_src/experimental.py -------------------------------------------------------------------------------- /src/unxt/_src/quantity/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics/unxt/HEAD/src/unxt/_src/quantity/__init__.py -------------------------------------------------------------------------------- /src/unxt/_src/quantity/angle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics/unxt/HEAD/src/unxt/_src/quantity/angle.py -------------------------------------------------------------------------------- /src/unxt/_src/quantity/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics/unxt/HEAD/src/unxt/_src/quantity/api.py -------------------------------------------------------------------------------- /src/unxt/_src/quantity/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics/unxt/HEAD/src/unxt/_src/quantity/base.py -------------------------------------------------------------------------------- /src/unxt/_src/quantity/base_angle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics/unxt/HEAD/src/unxt/_src/quantity/base_angle.py -------------------------------------------------------------------------------- /src/unxt/_src/quantity/base_parametric.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics/unxt/HEAD/src/unxt/_src/quantity/base_parametric.py -------------------------------------------------------------------------------- /src/unxt/_src/quantity/flag.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics/unxt/HEAD/src/unxt/_src/quantity/flag.py -------------------------------------------------------------------------------- /src/unxt/_src/quantity/mixins.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics/unxt/HEAD/src/unxt/_src/quantity/mixins.py -------------------------------------------------------------------------------- /src/unxt/_src/quantity/quantity.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics/unxt/HEAD/src/unxt/_src/quantity/quantity.py -------------------------------------------------------------------------------- /src/unxt/_src/quantity/register_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics/unxt/HEAD/src/unxt/_src/quantity/register_api.py -------------------------------------------------------------------------------- /src/unxt/_src/quantity/register_conversions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics/unxt/HEAD/src/unxt/_src/quantity/register_conversions.py -------------------------------------------------------------------------------- /src/unxt/_src/quantity/register_dispatches.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics/unxt/HEAD/src/unxt/_src/quantity/register_dispatches.py -------------------------------------------------------------------------------- /src/unxt/_src/quantity/register_primitives.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics/unxt/HEAD/src/unxt/_src/quantity/register_primitives.py -------------------------------------------------------------------------------- /src/unxt/_src/quantity/unchecked.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics/unxt/HEAD/src/unxt/_src/quantity/unchecked.py -------------------------------------------------------------------------------- /src/unxt/_src/quantity/value.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics/unxt/HEAD/src/unxt/_src/quantity/value.py -------------------------------------------------------------------------------- /src/unxt/_src/units/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics/unxt/HEAD/src/unxt/_src/units/__init__.py -------------------------------------------------------------------------------- /src/unxt/_src/units/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics/unxt/HEAD/src/unxt/_src/units/api.py -------------------------------------------------------------------------------- /src/unxt/_src/units/register_dispatches.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics/unxt/HEAD/src/unxt/_src/units/register_dispatches.py -------------------------------------------------------------------------------- /src/unxt/_src/unitsystems/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics/unxt/HEAD/src/unxt/_src/unitsystems/__init__.py -------------------------------------------------------------------------------- /src/unxt/_src/unitsystems/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics/unxt/HEAD/src/unxt/_src/unitsystems/base.py -------------------------------------------------------------------------------- /src/unxt/_src/unitsystems/builtin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics/unxt/HEAD/src/unxt/_src/unitsystems/builtin.py -------------------------------------------------------------------------------- /src/unxt/_src/unitsystems/builtin_dimensions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics/unxt/HEAD/src/unxt/_src/unitsystems/builtin_dimensions.py -------------------------------------------------------------------------------- /src/unxt/_src/unitsystems/compare.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics/unxt/HEAD/src/unxt/_src/unitsystems/compare.py -------------------------------------------------------------------------------- /src/unxt/_src/unitsystems/core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics/unxt/HEAD/src/unxt/_src/unitsystems/core.py -------------------------------------------------------------------------------- /src/unxt/_src/unitsystems/flags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics/unxt/HEAD/src/unxt/_src/unitsystems/flags.py -------------------------------------------------------------------------------- /src/unxt/_src/unitsystems/realizations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics/unxt/HEAD/src/unxt/_src/unitsystems/realizations.py -------------------------------------------------------------------------------- /src/unxt/_src/unitsystems/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics/unxt/HEAD/src/unxt/_src/unitsystems/utils.py -------------------------------------------------------------------------------- /src/unxt/_src/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics/unxt/HEAD/src/unxt/_src/utils.py -------------------------------------------------------------------------------- /src/unxt/_version.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics/unxt/HEAD/src/unxt/_version.pyi -------------------------------------------------------------------------------- /src/unxt/dims.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics/unxt/HEAD/src/unxt/dims.py -------------------------------------------------------------------------------- /src/unxt/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/unxt/quantity.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics/unxt/HEAD/src/unxt/quantity.py -------------------------------------------------------------------------------- /src/unxt/setup_package.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics/unxt/HEAD/src/unxt/setup_package.py -------------------------------------------------------------------------------- /src/unxt/units.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics/unxt/HEAD/src/unxt/units.py -------------------------------------------------------------------------------- /src/unxt/unitsystems.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics/unxt/HEAD/src/unxt/unitsystems.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | """Tests.""" 2 | -------------------------------------------------------------------------------- /tests/benchmark/__init__.py: -------------------------------------------------------------------------------- 1 | """Benchmark Tests.""" 2 | -------------------------------------------------------------------------------- /tests/benchmark/test_dims.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics/unxt/HEAD/tests/benchmark/test_dims.py -------------------------------------------------------------------------------- /tests/benchmark/test_quaxed.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics/unxt/HEAD/tests/benchmark/test_quaxed.py -------------------------------------------------------------------------------- /tests/benchmark/test_units.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics/unxt/HEAD/tests/benchmark/test_units.py -------------------------------------------------------------------------------- /tests/benchmark/test_unitsystems.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics/unxt/HEAD/tests/benchmark/test_unitsystems.py -------------------------------------------------------------------------------- /tests/integration/__init__.py: -------------------------------------------------------------------------------- 1 | """Tests.""" 2 | -------------------------------------------------------------------------------- /tests/integration/equinox/__init__.py: -------------------------------------------------------------------------------- 1 | """Tests.""" 2 | -------------------------------------------------------------------------------- /tests/integration/equinox/test_module.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics/unxt/HEAD/tests/integration/equinox/test_module.py -------------------------------------------------------------------------------- /tests/integration/matplotlib/__init__.py: -------------------------------------------------------------------------------- 1 | """Tests.""" 2 | -------------------------------------------------------------------------------- /tests/integration/matplotlib/baseline/test_labels_axes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics/unxt/HEAD/tests/integration/matplotlib/baseline/test_labels_axes.png -------------------------------------------------------------------------------- /tests/integration/matplotlib/test_interop_mpl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics/unxt/HEAD/tests/integration/matplotlib/test_interop_mpl.py -------------------------------------------------------------------------------- /tests/integration/quax/__init__.py: -------------------------------------------------------------------------------- 1 | """Tests.""" 2 | -------------------------------------------------------------------------------- /tests/integration/quax/test_lora.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics/unxt/HEAD/tests/integration/quax/test_lora.py -------------------------------------------------------------------------------- /tests/integration/quaxed/__init__.py: -------------------------------------------------------------------------------- 1 | """Tests.""" 2 | -------------------------------------------------------------------------------- /tests/integration/quaxed/test_lax.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics/unxt/HEAD/tests/integration/quaxed/test_lax.py -------------------------------------------------------------------------------- /tests/integration/quaxed/test_numpy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics/unxt/HEAD/tests/integration/quaxed/test_numpy.py -------------------------------------------------------------------------------- /tests/integration/test_plum.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics/unxt/HEAD/tests/integration/test_plum.py -------------------------------------------------------------------------------- /tests/unit/__init__.py: -------------------------------------------------------------------------------- 1 | """Tests.""" 2 | -------------------------------------------------------------------------------- /tests/unit/test_deprecated.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics/unxt/HEAD/tests/unit/test_deprecated.py -------------------------------------------------------------------------------- /tests/unit/test_package.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics/unxt/HEAD/tests/unit/test_package.py -------------------------------------------------------------------------------- /tests/unit/test_quantity.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics/unxt/HEAD/tests/unit/test_quantity.py -------------------------------------------------------------------------------- /tests/unit/test_unitsystems.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics/unxt/HEAD/tests/unit/test_unitsystems.py -------------------------------------------------------------------------------- /uv.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics/unxt/HEAD/uv.lock --------------------------------------------------------------------------------