https://github.com/severindenisenko/sitnikov-solver
Sitnikov problem solver for elliptical orbits
https://github.com/severindenisenko/sitnikov-solver
Last synced: 2 months ago
JSON representation
Sitnikov problem solver for elliptical orbits
- Host: GitHub
- URL: https://github.com/severindenisenko/sitnikov-solver
- Owner: SeverinDenisenko
- License: mit
- Created: 2025-02-12T19:50:47.000Z (3 months ago)
- Default Branch: main
- Last Pushed: 2025-03-11T19:44:37.000Z (2 months ago)
- Last Synced: 2025-03-11T20:33:24.926Z (2 months ago)
- Language: C++
- Size: 3.94 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# sitnikov-solver
Sitnikov problem solver for elliptical orbits
## Get and build
Install boost (https://www.boost.org)
```
git clone --recurse-submodules https://github.com/SeverinDenisenko/sitnikov-solver.git
cd sitnikov-solver
mkdir build
cd build
cmake .. -DCMAKE_BUILD_TYPE=Release
make -j 8
cd ..
```## Create phase portraits
First look into config.yaml
```
./build/bin/sitnikov_app > portrait.txt
./plot_portrait.py
```Or
```
./build/bin/poincare_app > portrait.txt
./plot_portrait.py
```