3D orbital probability clouds from simulated exoplanet posteriors
Project description
orbcloud
orbcloud is a Python package designed to transform simulated exoplanet parameter posteriors (such as MCMC chains) into physical 3D orbital probability density clouds.
By plotting thousands of low-opacity orbital paths, the overlapping threads naturally highlight the high-probability regions of 3D orbital space, creating a beautiful and physically accurate visualization.
[!TIP] In addition to visualization,
orbcloudcan be useful to rule out possible dynamical instability in the system. Visually mapping the orbital probability clouds allows researchers to quickly identify overlapping orbital regions. This helps save significant time and computational resources by avoiding expensive N-body simulations if a visual inspection already reveals that the system is most likely going to be unstable anyway.
Features
- Vectorized Kepler Solver: Vectorized Newton-Raphson solver to compute eccentric and true anomalies over custom phase grids.
- Physical Star Customization: Built-in star properties database (e.g. Vega, Barnard's Star) that automatically adjusts the size and glowing spectral color of the central star.
- Top (2D) & Lateral (3D) Views: Easily render orbits in 2D, 3D, or side-by-side.
- Transparent Alpha-Clouds: Line-by-line low opacity (
alpha=0.02) plots that naturally map the probability clouds. - Robust Parameter Validation: Informative alert messages and correction suggestions to prevent unphysical values (e.g. eccentricity $\ge 1.0$) or solver failures.
Installation
pip install orbcloud
Dependencies: numpy, matplotlib
Quickstart
Step 1: Initialize the System
Configure the central star's name, mass, and spectral type (e.g. O, B, A, F, G, K, M). By default, a Sun-like star is used.
import matplotlib.pyplot as plt
from orbcloud import PlanetConfig, SystemEnsemble
# Initialize a system centered around a Sun-like star
system = SystemEnsemble(star_id='sun')
Step 2: Configure and Add Planets
Define the planet's geometric parameters (orbital period, eccentricity, argument of periastron, etc.) using PlanetConfig, and add it to the ensemble to simulate the posterior distribution.
# 1. Inner planet 'b'
planet_b = PlanetConfig(
name='Planet b',
P_mean=90.0, P_std=8.0,
omega_mean_deg=60.0, omega_std_deg=40.0,
e_mean=0.15, e_std=0.09,
i_deg=0.0, Omega_deg=0.0
)
# 2. Outer planet 'c'
planet_c = PlanetConfig(
name='Planet c',
P_mean=260.0, P_std=14.0,
omega_mean_deg=210.0, omega_std_deg=45.0,
e_mean=0.25, e_std=0.10,
i_deg=0.0, Omega_deg=0.0
)
# Simulate 1000 posterior paths per planet and compute 3D coordinate clouds
system.add_planet(planet_b, num_samples=1000)
system.add_planet(planet_c, num_samples=1000)
Step 3: Visualize the Full Probability Cloud
By default, plot_system() will generate both 2D and 3D subplots side-by-side using the optimized parameter defaults (alpha_2d=0.02 and alpha_3d=0.01).
# Render both 2D (top-down) and 3D (oblique lateral) views
system.plot_system(show_reference_plane=True)
plt.savefig('system_both_views.png', dpi=150, facecolor='white', bbox_inches='tight')
plt.show()
Step 4: Filtering Planet Visibility or Projection
If you want to view a single projection (e.g. 2D top-down view only) or isolate a specific planet, pass the dimension and planets_to_show filters:
# Render 2D top view only for Planet b
system.plot_system(dimension='2d', planets_to_show=['Planet b'])
plt.savefig('planet_b_2d_only.png', dpi=150, facecolor='white', bbox_inches='tight')
plt.show()
Step 5: Defining a Custom Star
You can configure the central star's size, glow, and color dynamically using real-world reference stars (e.g. "Vega", "Barnard's Star", or "Theta1 Orionis C"):
# Initialize a system centered around a custom massive O-type star (Theta1 Orionis C)
system_custom = SystemEnsemble(star_id='theta1')
# Add the inner planet 'b'
system_custom.add_planet(planet_b, num_samples=1000)
# Plot the system to see the custom blue central star!
system_custom.plot_system(show_reference_plane=True)
plt.savefig('custom_star_both_views.png', dpi=150, facecolor='white', bbox_inches='tight')
plt.show()
Development & Testing
Run unit tests via pytest:
python3 -m pytest -v
License
This project is licensed under the MIT License.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file orbcloud-0.1.2.tar.gz.
File metadata
- Download URL: orbcloud-0.1.2.tar.gz
- Upload date:
- Size: 16.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c280b54a63edde4261805422971b7d60043fb7ce8923cf6be37c4844e13692e4
|
|
| MD5 |
b441421b32942bb8a9f4e2a48b538032
|
|
| BLAKE2b-256 |
a549aa6bd7414ccf92d749d64f8eb6014e932ca4c050f9e9e3eaaa01f9940ca0
|
Provenance
The following attestation bundles were made for orbcloud-0.1.2.tar.gz:
Publisher:
publish.yml on oscarfloresgaitan/orbcloud
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
orbcloud-0.1.2.tar.gz -
Subject digest:
c280b54a63edde4261805422971b7d60043fb7ce8923cf6be37c4844e13692e4 - Sigstore transparency entry: 1969410562
- Sigstore integration time:
-
Permalink:
oscarfloresgaitan/orbcloud@d65b795ae4722315dee53ad105716e61782b5c28 -
Branch / Tag:
refs/tags/v0.1.2 - Owner: https://github.com/oscarfloresgaitan
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@d65b795ae4722315dee53ad105716e61782b5c28 -
Trigger Event:
release
-
Statement type:
File details
Details for the file orbcloud-0.1.2-py3-none-any.whl.
File metadata
- Download URL: orbcloud-0.1.2-py3-none-any.whl
- Upload date:
- Size: 14.3 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2a1ba81073a624ec5e55caf9f68ba80b0dc7ba4afbf6f89f3aa1a9d8a9804622
|
|
| MD5 |
6aff6ef28ea654cf8627f6cd427dfde6
|
|
| BLAKE2b-256 |
03ae8e233aff3c036710108f8609e9bac9b708cd02b9026e3642a26fe41b25f8
|
Provenance
The following attestation bundles were made for orbcloud-0.1.2-py3-none-any.whl:
Publisher:
publish.yml on oscarfloresgaitan/orbcloud
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
orbcloud-0.1.2-py3-none-any.whl -
Subject digest:
2a1ba81073a624ec5e55caf9f68ba80b0dc7ba4afbf6f89f3aa1a9d8a9804622 - Sigstore transparency entry: 1969410657
- Sigstore integration time:
-
Permalink:
oscarfloresgaitan/orbcloud@d65b795ae4722315dee53ad105716e61782b5c28 -
Branch / Tag:
refs/tags/v0.1.2 - Owner: https://github.com/oscarfloresgaitan
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@d65b795ae4722315dee53ad105716e61782b5c28 -
Trigger Event:
release
-
Statement type: