Particle Simulation

Particle Simulation


Repo

This program is a particle simulation achieved by employing Newton's law of universal gravitation.  The simulation is implemented in C++, using SFML to create the visualization.

The simulation uses a numerical integration method to update particle positions and velocities over time.  To ensure accuracy and stability, a variable time step is employed. This time step is calculated based on the interval between subsequent render loop iterations. By adapting to the frame rate, the simulation remains robust against fluctuating render times and avoids potential numerical issues that can arise from fixed time steps, particularly when dealing with fast-moving particles.  By adjusting parameters like particle mass, initial velocity, and the collision model, a wide range of physical phenomena can be simulated.  

Each render loop iteration is updated as follows: 

No Collisions

Particles pass through each other.

Elastic Collisions

Particles experience perfect elastic collisions.  They bounce off each other due to the conservation of momentum and kinetic energy. 

Inelastic Collisions

Particles combine together to form a larger particle with a mass equal to the sum of the two particles that collided.  The final velocity is calculated based on the conservation of momentum and kinetic energy.  The final color of the particle is an average of the RGB values of the two colliding particles. 

Low Viscosity

Particles lose velocity slowly and travel much further across the space.

High Viscosity

Particles have a high acceleration that directly opposes their velocity, causing them to slow down rapidly.