Metadata-Version: 2.4
Name: rusty_orbital_dynamics
Version: 0.1.0
License-File: LICENSE
Summary: High-performance orbital dynamics in Rust + Python
Keywords: orbital,dynamics,python
Author: Jacob Sorensen <sorensenjacob44@gmail.com>
Author-email: Jacob Sorensen <sorensenjacob44@gmail.com>
License: GPL-3.0-or-later
Description-Content-Type: text/markdown; charset=UTF-8; variant=GFM
Project-URL: Source Code, https://github.com/JacobASorensen/rusty-orbital-dynamics

# rusty-orbital-dynamics
my goal is to make an accurate orbital dynamics simulator in rust, callable in python
![License: GPL v3](https://img.shields.io/badge/License-GPLv3-blue.svg)

### Building the library

```
maturin develop  # for local development
maturin build    # to build a wheel
```

## Milestones

### Implement First Lagrange Point Test Case
Write test case simulating James Web Space Telescope for 21 days to verify correct-ness of code
#### in Rust:
- Implement N-body ODE system solver
- Implement RKF4(5) integrator 
#### In Python: 
- Implement class to pull data from JPL Horizons (this can be scavenged from my Orbital Mechanics repo)
- Make Rust integrator callable in python
