Particle_Simulator/Python_Stuff
2025-04-04 00:03:25 -04:00
..
assets Fixing links again, and switching video to gif cause thats what gitea 2025-04-03 21:34:08 -04:00
sdl_sprites Initial commit 2024-11-23 21:59:28 -05:00
python_particle_simulator.py Initial commit 2024-11-23 21:59:28 -05:00
README.md Updating cmake and cpp readme 2025-04-04 00:03:25 -04:00
renderer.py Initial commit 2024-11-23 21:59:28 -05:00
requirements.txt Initial commit 2024-11-23 21:59:28 -05:00
sdl.py Initial commit 2024-11-23 21:59:28 -05:00
universe.py Initial commit 2024-11-23 21:59:28 -05:00
world_objects.py Initial commit 2024-11-23 21:59:28 -05:00

Python Particle Sim

Description

The general idea is that I wanted to be able to represent a particle simulation, that accounted for elastic collisions(momentum is conserved), as well as particle gravities. Every particle being represented has a gravitational affect on every other particle. I chose to do it this way because using vector and matrix math we should be able to properly compute everything instead of having to make optimizing approximations.

Position, Accelerations, and Velocities can all be represented as mathematical vectors so that vector math can be used to speed up processing. From a single threaded approach this is overkill and there's lots of calculations that could be optimized out. But this method scales well to parallel computing

To run the python program simply install the requirements and run the python_particle_simulator.py script.

pip install -r requirements.txt
python python_particle_simulator.py

This script will generate 100 particles to be used in the simulation and renders at about 20fps.