jxplanetx 0.6.0rc8__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.
- jxplanetx-0.6.0rc8/AUTHORS.md +18 -0
- jxplanetx-0.6.0rc8/LICENSE +28 -0
- jxplanetx-0.6.0rc8/PKG-INFO +696 -0
- jxplanetx-0.6.0rc8/README.md +657 -0
- jxplanetx-0.6.0rc8/THIRD_PARTY_NOTICES.md +39 -0
- jxplanetx-0.6.0rc8/benchmarks/jx_smalln_cpu_rkf78.c +287 -0
- jxplanetx-0.6.0rc8/pyproject.toml +84 -0
- jxplanetx-0.6.0rc8/setup.cfg +4 -0
- jxplanetx-0.6.0rc8/src/jxplanetx/__init__.py +3 -0
- jxplanetx-0.6.0rc8/src/jxplanetx/_smalln_cpu_module.c +370 -0
- jxplanetx-0.6.0rc8/src/jxplanetx/_wisdom_holman_cpu_module.c +381 -0
- jxplanetx-0.6.0rc8/src/jxplanetx/_wisdom_holman_cpu_v2_module.c +467 -0
- jxplanetx-0.6.0rc8/src/jxplanetx/_wisdom_holman_cpu_v3_module.c +281 -0
- jxplanetx-0.6.0rc8/src/jxplanetx/_wisdom_holman_cpu_v4_module.c +303 -0
- jxplanetx-0.6.0rc8/src/jxplanetx/_wisdom_holman_loop.c +1595 -0
- jxplanetx-0.6.0rc8/src/jxplanetx/_wisdom_holman_loop_v2.c +1702 -0
- jxplanetx-0.6.0rc8/src/jxplanetx/_wisdom_holman_loop_v3.c +475 -0
- jxplanetx-0.6.0rc8/src/jxplanetx/_wisdom_holman_loop_v4.c +394 -0
- jxplanetx-0.6.0rc8/src/jxplanetx/claims.py +276 -0
- jxplanetx-0.6.0rc8/src/jxplanetx/cli.py +499 -0
- jxplanetx-0.6.0rc8/src/jxplanetx/cosmology_baryons.py +526 -0
- jxplanetx-0.6.0rc8/src/jxplanetx/cosmology_pm.py +458 -0
- jxplanetx-0.6.0rc8/src/jxplanetx/de441_anchor.py +796 -0
- jxplanetx-0.6.0rc8/src/jxplanetx/de441_horizons.py +591 -0
- jxplanetx-0.6.0rc8/src/jxplanetx/de441_population.py +1126 -0
- jxplanetx-0.6.0rc8/src/jxplanetx/decimal_bs.py +430 -0
- jxplanetx-0.6.0rc8/src/jxplanetx/decimal_math.py +87 -0
- jxplanetx-0.6.0rc8/src/jxplanetx/dynamics.py +68 -0
- jxplanetx-0.6.0rc8/src/jxplanetx/encounter_tail.py +1275 -0
- jxplanetx-0.6.0rc8/src/jxplanetx/engine/__init__.py +401 -0
- jxplanetx-0.6.0rc8/src/jxplanetx/engine/api.py +403 -0
- jxplanetx-0.6.0rc8/src/jxplanetx/engine/backends.py +190 -0
- jxplanetx-0.6.0rc8/src/jxplanetx/engine/catalog.py +397 -0
- jxplanetx-0.6.0rc8/src/jxplanetx/engine/contracts.py +398 -0
- jxplanetx-0.6.0rc8/src/jxplanetx/engine/encounter.py +3476 -0
- jxplanetx-0.6.0rc8/src/jxplanetx/engine/encounter_contracts.py +1231 -0
- jxplanetx-0.6.0rc8/src/jxplanetx/engine/evaluator.py +711 -0
- jxplanetx-0.6.0rc8/src/jxplanetx/engine/forces.py +499 -0
- jxplanetx-0.6.0rc8/src/jxplanetx/engine/hybrid.py +2084 -0
- jxplanetx-0.6.0rc8/src/jxplanetx/engine/hybrid_contracts.py +2967 -0
- jxplanetx-0.6.0rc8/src/jxplanetx/engine/rkf78.py +338 -0
- jxplanetx-0.6.0rc8/src/jxplanetx/engine/scenario.py +611 -0
- jxplanetx-0.6.0rc8/src/jxplanetx/engine/scenario_manifest.py +1114 -0
- jxplanetx-0.6.0rc8/src/jxplanetx/engine/symplectic.py +1405 -0
- jxplanetx-0.6.0rc8/src/jxplanetx/engine/symplectic_contracts.py +193 -0
- jxplanetx-0.6.0rc8/src/jxplanetx/engine/trajectory.py +1633 -0
- jxplanetx-0.6.0rc8/src/jxplanetx/engine/trajectory_contracts.py +272 -0
- jxplanetx-0.6.0rc8/src/jxplanetx/engine/wisdom_holman.py +6062 -0
- jxplanetx-0.6.0rc8/src/jxplanetx/engine/wisdom_holman_contracts.py +565 -0
- jxplanetx-0.6.0rc8/src/jxplanetx/ensemble_validation.py +2151 -0
- jxplanetx-0.6.0rc8/src/jxplanetx/fast_wisdom_holman.py +976 -0
- jxplanetx-0.6.0rc8/src/jxplanetx/force_registry_v5.py +637 -0
- jxplanetx-0.6.0rc8/src/jxplanetx/fused_cuda_adaptive_rkf78.py +1478 -0
- jxplanetx-0.6.0rc8/src/jxplanetx/fused_cuda_rkf78.py +506 -0
- jxplanetx-0.6.0rc8/src/jxplanetx/fused_cuda_trajectory.py +318 -0
- jxplanetx-0.6.0rc8/src/jxplanetx/gates.py +110 -0
- jxplanetx-0.6.0rc8/src/jxplanetx/general_dynamics.py +280 -0
- jxplanetx-0.6.0rc8/src/jxplanetx/ias15_gate.py +406 -0
- jxplanetx-0.6.0rc8/src/jxplanetx/independent_dop853.py +1580 -0
- jxplanetx-0.6.0rc8/src/jxplanetx/population_scale.py +776 -0
- jxplanetx-0.6.0rc8/src/jxplanetx/production_benchmark.py +249 -0
- jxplanetx-0.6.0rc8/src/jxplanetx/provenance.py +138 -0
- jxplanetx-0.6.0rc8/src/jxplanetx/smalln.py +634 -0
- jxplanetx-0.6.0rc8/src/jxplanetx/solar_1pn.py +345 -0
- jxplanetx-0.6.0rc8/src/jxplanetx/solar_system/__init__.py +11 -0
- jxplanetx-0.6.0rc8/src/jxplanetx/solar_system/_cspice_worker.py +819 -0
- jxplanetx-0.6.0rc8/src/jxplanetx/solar_system/artifacts.py +903 -0
- jxplanetx-0.6.0rc8/src/jxplanetx/solar_system/contracts.py +1725 -0
- jxplanetx-0.6.0rc8/src/jxplanetx/solar_system/cspice_execution.py +1801 -0
- jxplanetx-0.6.0rc8/src/jxplanetx/solar_system/cspice_execution_contracts.py +2546 -0
- jxplanetx-0.6.0rc8/src/jxplanetx/solar_system/cspice_time.py +535 -0
- jxplanetx-0.6.0rc8/src/jxplanetx/solar_system/earth_j2.py +247 -0
- jxplanetx-0.6.0rc8/src/jxplanetx/solar_system/earth_j2_trajectory.py +886 -0
- jxplanetx-0.6.0rc8/src/jxplanetx/solar_system/earth_pole.py +387 -0
- jxplanetx-0.6.0rc8/src/jxplanetx/solar_system/earth_zonal.py +340 -0
- jxplanetx-0.6.0rc8/src/jxplanetx/solar_system/eih_1pn.py +316 -0
- jxplanetx-0.6.0rc8/src/jxplanetx/solar_system/engine_preparation.py +836 -0
- jxplanetx-0.6.0rc8/src/jxplanetx/solar_system/engine_preparation_contracts.py +1537 -0
- jxplanetx-0.6.0rc8/src/jxplanetx/solar_system/frames.py +181 -0
- jxplanetx-0.6.0rc8/src/jxplanetx/solar_system/llr_geodetic_transport.py +1662 -0
- jxplanetx-0.6.0rc8/src/jxplanetx/solar_system/llr_observation.py +1539 -0
- jxplanetx-0.6.0rc8/src/jxplanetx/solar_system/lunar_coupled.py +900 -0
- jxplanetx-0.6.0rc8/src/jxplanetx/solar_system/lunar_coupled_deformable.py +910 -0
- jxplanetx-0.6.0rc8/src/jxplanetx/solar_system/lunar_coupled_solar.py +704 -0
- jxplanetx-0.6.0rc8/src/jxplanetx/solar_system/lunar_figure.py +351 -0
- jxplanetx-0.6.0rc8/src/jxplanetx/solar_system/lunar_figure_degree3.py +305 -0
- jxplanetx-0.6.0rc8/src/jxplanetx/solar_system/lunar_fluid_core.py +298 -0
- jxplanetx-0.6.0rc8/src/jxplanetx/solar_system/lunar_geodetic_precession.py +195 -0
- jxplanetx-0.6.0rc8/src/jxplanetx/solar_system/lunar_mantle_deformation.py +521 -0
- jxplanetx-0.6.0rc8/src/jxplanetx/solar_system/lunar_spin_distortion.py +371 -0
- jxplanetx-0.6.0rc8/src/jxplanetx/solar_system/lunar_tide.py +344 -0
- jxplanetx-0.6.0rc8/src/jxplanetx/solar_system/lunar_tide_delay.py +305 -0
- jxplanetx-0.6.0rc8/src/jxplanetx/solar_system/lunar_translational_physics.py +377 -0
- jxplanetx-0.6.0rc8/src/jxplanetx/solar_system/ocean_loading.py +338 -0
- jxplanetx-0.6.0rc8/src/jxplanetx/solar_system/serialization.py +330 -0
- jxplanetx-0.6.0rc8/src/jxplanetx/solar_system/solid_earth_tide.py +573 -0
- jxplanetx-0.6.0rc8/src/jxplanetx/solar_system/solid_pole_tide.py +127 -0
- jxplanetx-0.6.0rc8/src/jxplanetx/solar_system/states.py +307 -0
- jxplanetx-0.6.0rc8/src/jxplanetx/solar_system/time.py +232 -0
- jxplanetx-0.6.0rc8/src/jxplanetx/solar_system/units.py +563 -0
- jxplanetx-0.6.0rc8/src/jxplanetx/survey_selection.py +1500 -0
- jxplanetx-0.6.0rc8/src/jxplanetx/survey_selection_v2.py +536 -0
- jxplanetx-0.6.0rc8/src/jxplanetx/survey_selection_v3.py +233 -0
- jxplanetx-0.6.0rc8/src/jxplanetx/survey_selection_v4.py +196 -0
- jxplanetx-0.6.0rc8/src/jxplanetx/v5_implicit_midpoint.py +511 -0
- jxplanetx-0.6.0rc8/src/jxplanetx/v5_reference_dynamics.py +566 -0
- jxplanetx-0.6.0rc8/src/jxplanetx/v5_solar_1pn_qualification.py +4596 -0
- jxplanetx-0.6.0rc8/src/jxplanetx/yoshida6.py +62 -0
- jxplanetx-0.6.0rc8/src/jxplanetx.egg-info/PKG-INFO +696 -0
- jxplanetx-0.6.0rc8/src/jxplanetx.egg-info/SOURCES.txt +112 -0
- jxplanetx-0.6.0rc8/src/jxplanetx.egg-info/dependency_links.txt +1 -0
- jxplanetx-0.6.0rc8/src/jxplanetx.egg-info/entry_points.txt +2 -0
- jxplanetx-0.6.0rc8/src/jxplanetx.egg-info/requires.txt +29 -0
- jxplanetx-0.6.0rc8/src/jxplanetx.egg-info/top_level.txt +1 -0
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
# Authorship and ownership
|
|
2
|
+
|
|
3
|
+
The JX Celestial Dynamics Framework was created and is directed by:
|
|
4
|
+
|
|
5
|
+
- Lino Avila (`@linomx90`)
|
|
6
|
+
|
|
7
|
+
Copyright in the original human-authored selection, design, arrangement,
|
|
8
|
+
review, modification, and project materials is asserted by Lino Avila as
|
|
9
|
+
described in the repository `LICENSE`.
|
|
10
|
+
|
|
11
|
+
Software assistants, including ChatGPT and Codex, have been used as tools for
|
|
12
|
+
research, drafting, implementation, testing, and review. They are not listed
|
|
13
|
+
as authors, copyright holders, owners, or licensors.
|
|
14
|
+
|
|
15
|
+
No contributor obtains ownership, licensing authority, or permission to
|
|
16
|
+
relicense JX merely by submitting an issue, suggestion, patch, or pull request.
|
|
17
|
+
Any accepted external contribution requires an explicit written contribution
|
|
18
|
+
and licensing agreement before incorporation.
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
JX PROPRIETARY LICENSE
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2026 Lino Avila. All rights reserved.
|
|
4
|
+
|
|
5
|
+
The JX Celestial Dynamics Framework, including its original source code,
|
|
6
|
+
documentation, tests, benchmarks, designs, and associated materials
|
|
7
|
+
(collectively, the "Software"), is proprietary.
|
|
8
|
+
|
|
9
|
+
No license or permission is granted to use, copy, modify, merge, publish,
|
|
10
|
+
distribute, sublicense, sell, commercially exploit, or create derivative works
|
|
11
|
+
from the Software, in whole or in part, without prior written authorization
|
|
12
|
+
from Lino Avila.
|
|
13
|
+
|
|
14
|
+
Availability of the Software in a public repository or on a source-hosting
|
|
15
|
+
service does not grant rights beyond those strictly required by the applicable
|
|
16
|
+
hosting service terms.
|
|
17
|
+
|
|
18
|
+
Third-party software, data, publications, and other materials retain their own
|
|
19
|
+
copyrights and licenses. Nothing in this notice restricts rights granted by
|
|
20
|
+
their respective owners or changes the licenses that accompanied earlier JX
|
|
21
|
+
releases.
|
|
22
|
+
|
|
23
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
24
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
25
|
+
FITNESS FOR A PARTICULAR PURPOSE, AND NONINFRINGEMENT. TO THE MAXIMUM EXTENT
|
|
26
|
+
PERMITTED BY LAW, THE COPYRIGHT HOLDER SHALL NOT BE LIABLE FOR ANY CLAIM,
|
|
27
|
+
DAMAGES, OR OTHER LIABILITY ARISING FROM, OUT OF, OR IN CONNECTION WITH THE
|
|
28
|
+
SOFTWARE OR ITS USE.
|