https://github.com/kellpossible/kivyorbiter
a little orbit simulation game written in python using kivy
https://github.com/kellpossible/kivyorbiter
Last synced: about 1 year ago
JSON representation
a little orbit simulation game written in python using kivy
- Host: GitHub
- URL: https://github.com/kellpossible/kivyorbiter
- Owner: kellpossible
- License: mit
- Created: 2014-08-13T05:35:10.000Z (almost 12 years ago)
- Default Branch: master
- Last Pushed: 2018-12-11T05:02:57.000Z (over 7 years ago)
- Last Synced: 2025-01-29T10:15:41.977Z (over 1 year ago)
- Language: Python
- Size: 236 KB
- Stars: 1
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
KivyOrbiter
===========
a little orbit simulation game written in python using kivy
Key Features
- It currently uses an RK4 (Runge Kutta Fourth Order) integrator for the orbital motion.
- It works on android using the kivy app.
- Orbit Path calculation is in a seperate thread, improving framerate performance... I hope
Example Output
-----------
### Kivy Application ###


To use the kivy application, place finger on the screen and move in the direction desired for engine vector
### Installation ###
You will need `kivy` installed in order to run this application. Instructions for all platforms can be found at https://kivy.org/#download
### Running ###
After following the installation instructions, you can run the application using the following command:
```
python main.py
```
###orbitstest.py testing output###

Euler Integration

Kepler Integration

Verlet Integration

TCVerlet Integration

RK4 Integration