empyrean 0.0.1__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- empyrean-0.0.1/PKG-INFO +54 -0
- empyrean-0.0.1/README.md +37 -0
- empyrean-0.0.1/pyproject.toml +29 -0
- empyrean-0.0.1/setup.cfg +4 -0
- empyrean-0.0.1/src/empyrean/__init__.py +3 -0
- empyrean-0.0.1/src/empyrean.egg-info/PKG-INFO +54 -0
- empyrean-0.0.1/src/empyrean.egg-info/SOURCES.txt +7 -0
- empyrean-0.0.1/src/empyrean.egg-info/dependency_links.txt +1 -0
- empyrean-0.0.1/src/empyrean.egg-info/top_level.txt +1 -0
empyrean-0.0.1/PKG-INFO
ADDED
|
@@ -0,0 +1,54 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: empyrean
|
|
3
|
+
Version: 0.0.1
|
|
4
|
+
Summary: High-performance astrodynamics in Python. Orbit propagation, ephemeris generation, and orbit determination powered by automatic differentiation.
|
|
5
|
+
Author: Empyrean Dynamics
|
|
6
|
+
License-Expression: MIT
|
|
7
|
+
Project-URL: Homepage, https://www.empyrean-dynamics.com
|
|
8
|
+
Keywords: astrodynamics,orbit,propagation,ephemeris
|
|
9
|
+
Classifier: Development Status :: 1 - Planning
|
|
10
|
+
Classifier: Intended Audience :: Science/Research
|
|
11
|
+
Classifier: Topic :: Scientific/Engineering :: Astronomy
|
|
12
|
+
Classifier: Topic :: Scientific/Engineering :: Physics
|
|
13
|
+
Classifier: Programming Language :: Python :: 3
|
|
14
|
+
Classifier: Programming Language :: Rust
|
|
15
|
+
Requires-Python: >=3.10
|
|
16
|
+
Description-Content-Type: text/markdown
|
|
17
|
+
|
|
18
|
+
# Empyrean
|
|
19
|
+
|
|
20
|
+
by [Empyrean Dynamics](https://www.empyrean-dynamics.com)
|
|
21
|
+
|
|
22
|
+
High-performance astrodynamics in Python, powered by automatic differentiation.
|
|
23
|
+
|
|
24
|
+
Orbit propagation, ephemeris generation, and orbit determination.
|
|
25
|
+
|
|
26
|
+
## Architecture
|
|
27
|
+
|
|
28
|
+
Empyrean is built on a stack of Rust libraries with Python bindings via PyO3.
|
|
29
|
+
|
|
30
|
+
- **nolan** — K-jet hyperdual numbers for automatic differentiation. Tracks
|
|
31
|
+
arbitrary-order derivatives through physical parameters (position, velocity,
|
|
32
|
+
time) without finite differences or hand-coded partials.
|
|
33
|
+
|
|
34
|
+
- **villeneuve** — Orbital propagator built on nolan. Two-body and n-body
|
|
35
|
+
dynamics, relativistic force models, coordinate transforms, and covariance
|
|
36
|
+
propagation.
|
|
37
|
+
|
|
38
|
+
- **scott** — Orbit determination. Differential corrections, initial orbit
|
|
39
|
+
determination, and residual fitting. Uses the same AD pipeline for exact
|
|
40
|
+
partials through the measurement model.
|
|
41
|
+
|
|
42
|
+
The full Empyrean Dynamics platform also includes:
|
|
43
|
+
|
|
44
|
+
- **kubrick** — REST API server exposing the propagation and orbit
|
|
45
|
+
determination engines. Available as a hosted service at
|
|
46
|
+
[www.empyrean-dynamics.com](https://www.empyrean-dynamics.com), not included in the
|
|
47
|
+
Python package.
|
|
48
|
+
|
|
49
|
+
- **spielberg** — Interactive web dashboard for orbit visualization, close
|
|
50
|
+
approach analysis, and impact probability. Available at
|
|
51
|
+
[www.empyrean-dynamics.com](https://www.empyrean-dynamics.com), not included in the
|
|
52
|
+
Python package.
|
|
53
|
+
|
|
54
|
+
Much more to come. Stay tuned.
|
empyrean-0.0.1/README.md
ADDED
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
# Empyrean
|
|
2
|
+
|
|
3
|
+
by [Empyrean Dynamics](https://www.empyrean-dynamics.com)
|
|
4
|
+
|
|
5
|
+
High-performance astrodynamics in Python, powered by automatic differentiation.
|
|
6
|
+
|
|
7
|
+
Orbit propagation, ephemeris generation, and orbit determination.
|
|
8
|
+
|
|
9
|
+
## Architecture
|
|
10
|
+
|
|
11
|
+
Empyrean is built on a stack of Rust libraries with Python bindings via PyO3.
|
|
12
|
+
|
|
13
|
+
- **nolan** — K-jet hyperdual numbers for automatic differentiation. Tracks
|
|
14
|
+
arbitrary-order derivatives through physical parameters (position, velocity,
|
|
15
|
+
time) without finite differences or hand-coded partials.
|
|
16
|
+
|
|
17
|
+
- **villeneuve** — Orbital propagator built on nolan. Two-body and n-body
|
|
18
|
+
dynamics, relativistic force models, coordinate transforms, and covariance
|
|
19
|
+
propagation.
|
|
20
|
+
|
|
21
|
+
- **scott** — Orbit determination. Differential corrections, initial orbit
|
|
22
|
+
determination, and residual fitting. Uses the same AD pipeline for exact
|
|
23
|
+
partials through the measurement model.
|
|
24
|
+
|
|
25
|
+
The full Empyrean Dynamics platform also includes:
|
|
26
|
+
|
|
27
|
+
- **kubrick** — REST API server exposing the propagation and orbit
|
|
28
|
+
determination engines. Available as a hosted service at
|
|
29
|
+
[www.empyrean-dynamics.com](https://www.empyrean-dynamics.com), not included in the
|
|
30
|
+
Python package.
|
|
31
|
+
|
|
32
|
+
- **spielberg** — Interactive web dashboard for orbit visualization, close
|
|
33
|
+
approach analysis, and impact probability. Available at
|
|
34
|
+
[www.empyrean-dynamics.com](https://www.empyrean-dynamics.com), not included in the
|
|
35
|
+
Python package.
|
|
36
|
+
|
|
37
|
+
Much more to come. Stay tuned.
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = ["setuptools>=68.0"]
|
|
3
|
+
build-backend = "setuptools.build_meta"
|
|
4
|
+
|
|
5
|
+
[project]
|
|
6
|
+
name = "empyrean"
|
|
7
|
+
version = "0.0.1"
|
|
8
|
+
description = "High-performance astrodynamics in Python. Orbit propagation, ephemeris generation, and orbit determination powered by automatic differentiation."
|
|
9
|
+
readme = "README.md"
|
|
10
|
+
license = "MIT"
|
|
11
|
+
requires-python = ">=3.10"
|
|
12
|
+
authors = [
|
|
13
|
+
{ name = "Empyrean Dynamics" },
|
|
14
|
+
]
|
|
15
|
+
classifiers = [
|
|
16
|
+
"Development Status :: 1 - Planning",
|
|
17
|
+
"Intended Audience :: Science/Research",
|
|
18
|
+
"Topic :: Scientific/Engineering :: Astronomy",
|
|
19
|
+
"Topic :: Scientific/Engineering :: Physics",
|
|
20
|
+
"Programming Language :: Python :: 3",
|
|
21
|
+
"Programming Language :: Rust",
|
|
22
|
+
]
|
|
23
|
+
keywords = ["astrodynamics", "orbit", "propagation", "ephemeris"]
|
|
24
|
+
|
|
25
|
+
[project.urls]
|
|
26
|
+
Homepage = "https://www.empyrean-dynamics.com"
|
|
27
|
+
|
|
28
|
+
[tool.setuptools.packages.find]
|
|
29
|
+
where = ["src"]
|
empyrean-0.0.1/setup.cfg
ADDED
|
@@ -0,0 +1,54 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: empyrean
|
|
3
|
+
Version: 0.0.1
|
|
4
|
+
Summary: High-performance astrodynamics in Python. Orbit propagation, ephemeris generation, and orbit determination powered by automatic differentiation.
|
|
5
|
+
Author: Empyrean Dynamics
|
|
6
|
+
License-Expression: MIT
|
|
7
|
+
Project-URL: Homepage, https://www.empyrean-dynamics.com
|
|
8
|
+
Keywords: astrodynamics,orbit,propagation,ephemeris
|
|
9
|
+
Classifier: Development Status :: 1 - Planning
|
|
10
|
+
Classifier: Intended Audience :: Science/Research
|
|
11
|
+
Classifier: Topic :: Scientific/Engineering :: Astronomy
|
|
12
|
+
Classifier: Topic :: Scientific/Engineering :: Physics
|
|
13
|
+
Classifier: Programming Language :: Python :: 3
|
|
14
|
+
Classifier: Programming Language :: Rust
|
|
15
|
+
Requires-Python: >=3.10
|
|
16
|
+
Description-Content-Type: text/markdown
|
|
17
|
+
|
|
18
|
+
# Empyrean
|
|
19
|
+
|
|
20
|
+
by [Empyrean Dynamics](https://www.empyrean-dynamics.com)
|
|
21
|
+
|
|
22
|
+
High-performance astrodynamics in Python, powered by automatic differentiation.
|
|
23
|
+
|
|
24
|
+
Orbit propagation, ephemeris generation, and orbit determination.
|
|
25
|
+
|
|
26
|
+
## Architecture
|
|
27
|
+
|
|
28
|
+
Empyrean is built on a stack of Rust libraries with Python bindings via PyO3.
|
|
29
|
+
|
|
30
|
+
- **nolan** — K-jet hyperdual numbers for automatic differentiation. Tracks
|
|
31
|
+
arbitrary-order derivatives through physical parameters (position, velocity,
|
|
32
|
+
time) without finite differences or hand-coded partials.
|
|
33
|
+
|
|
34
|
+
- **villeneuve** — Orbital propagator built on nolan. Two-body and n-body
|
|
35
|
+
dynamics, relativistic force models, coordinate transforms, and covariance
|
|
36
|
+
propagation.
|
|
37
|
+
|
|
38
|
+
- **scott** — Orbit determination. Differential corrections, initial orbit
|
|
39
|
+
determination, and residual fitting. Uses the same AD pipeline for exact
|
|
40
|
+
partials through the measurement model.
|
|
41
|
+
|
|
42
|
+
The full Empyrean Dynamics platform also includes:
|
|
43
|
+
|
|
44
|
+
- **kubrick** — REST API server exposing the propagation and orbit
|
|
45
|
+
determination engines. Available as a hosted service at
|
|
46
|
+
[www.empyrean-dynamics.com](https://www.empyrean-dynamics.com), not included in the
|
|
47
|
+
Python package.
|
|
48
|
+
|
|
49
|
+
- **spielberg** — Interactive web dashboard for orbit visualization, close
|
|
50
|
+
approach analysis, and impact probability. Available at
|
|
51
|
+
[www.empyrean-dynamics.com](https://www.empyrean-dynamics.com), not included in the
|
|
52
|
+
Python package.
|
|
53
|
+
|
|
54
|
+
Much more to come. Stay tuned.
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
empyrean
|