Updating cmake and cpp readme

This commit is contained in:
Daniel Weber 2025-04-04 00:03:25 -04:00
parent 06c180cd71
commit 96442c13f7
6 changed files with 46 additions and 20 deletions

View File

@ -1 +1,27 @@
# C++ Particle Sim # C++ Particle Sim
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?
## 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
```
Current system runs 10,000 particles at 50fps. 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.
<p align="center">
<img src="https://git.pipsquire.com/djweber12/Particle_Simulator/raw/branch/main/Cpp_Stuff/assets/c_render.gif"/>
</p>

Binary file not shown.

After

Width:  |  Height:  |  Size: 11 MiB

View File

@ -9,7 +9,7 @@ find_package(CUDAToolkit REQUIRED)
file(GLOB project_cuda_src "**/*.cu") file(GLOB project_cuda_src "**/*.cu")
file(GLOB project_cpp_src "**/*.cpp") file(GLOB project_cpp_src "**/*.cpp")
# set(project_src ${project_cpp_src} ${project_cuda_src}) # set(project_src ${project_cpp_src} ${project_cuda_src})
include_directories(${CMAKE_PROJECT_NAME} "${PROJECT_SOURCE_DIR}/../include") include_directories(${CMAKE_PROJECT_NAME} "${PROJECT_SOURCE_DIR}/include")
include_directories(${CMAKE_PROJECT_NAME} ${SDL2_INCLUDE_DIRS}) include_directories(${CMAKE_PROJECT_NAME} ${SDL2_INCLUDE_DIRS})
#include_directories(${CMAKE_PROJECT_NAME} ${CUDA_INCLUDE_DIRS}) #include_directories(${CMAKE_PROJECT_NAME} ${CUDA_INCLUDE_DIRS})
message(STATUS "${SDL2_LIBRARIES}") message(STATUS "${SDL2_LIBRARIES}")

View File

@ -12,7 +12,7 @@
#include "custom_kernels.cuh" #include "custom_kernels.cuh"
#include "util.hpp" #include "util.hpp"
#define DELTA_TIME 0.5 #define DELTA_TIME 0.005
void universe::process_collisions_with_rays(void) void universe::process_collisions_with_rays(void)

View File

@ -13,6 +13,6 @@ python python_particle_simulator.py
This script will generate 100 particles to be used in the simulation and renders at about 20fps. This script will generate 100 particles to be used in the simulation and renders at about 20fps.
<p align="center"> <p align="center">
<img src="https://git.pipsquire.com/djweber12/Particle_Simulator/raw/branch/main/Python_Stuff/assets/python_render.gif" alt="Sublime's custom image"/> <img src="https://git.pipsquire.com/djweber12/Particle_Simulator/raw/branch/main/Python_Stuff/assets/python_render.gif"/>
</p> </p>