Particle_Simulator/Cpp_Stuff/README.md

28 lines
865 B
Markdown
Raw Permalink Normal View History

# C++ Particle Sim
2025-04-04 00:03:25 -04:00
This is still very much a work not really in progress!
## TODO
- [x] Particle collisions with the walls
- [ ] Particle gravities
- [ ] Particle collision with other particles
- [ ] Maybe add a 3rd dimension?
2025-04-04 00:03:25 -04:00
## Building and Running
You're on your own with figuring out how to install cuda...but in theory once that's installed it should be pretty straight forward:
```
cmake -S ./ -B build/
cmake --build build/
cd build/
./src/particle_sim_exe
```
2025-04-04 18:59:53 -04:00
Current application runs 10,000 particles at 50fps on an RTX3060. The gif below only appears to be moving slow because the time steps between renders is much lower then in the python example. The frame is actually higher here then it was in python.
2025-04-04 00:03:25 -04:00
<p align="center">
<img src="https://git.pipsquire.com/djweber12/Particle_Simulator/raw/branch/main/Cpp_Stuff/assets/c_render.gif"/>
</p>