Fluid simulator based on Finite Pointset Method

This was a course project for Computer Modeling & Simulation course taught by Prof. S. Sundar, IIT Madras.


Languages:

Libraries:


In this project, I implemented a fluid solver based on a recent nesh-free numerical method called Finite Pointset Method (FPM). The biggest advantage of FPM over the conventional methods such as FDM, FVM, FEM, is that it does not require a grid and collectively, all the particles represent the mesh. This means that mesh management modules are required, which ensure that the simulation doesn’t diverge. These include cluster removal (if two points get really close to each other), or hole filling (a particle doesn’t have enough neighbours). These modules are called at every iteration of the time loop. Hole filling is the more challenging task as we don’t have any information about where the points are not present. I explored two approaches to hole filling:

The points in the domain are collectively called Point Cloud, and run these mesh maintainance modules at every iteration to clean Point Cloud. FPM is based on Chorin’s Projection Method and assumes incompressible flow. The simulation in this project were conducted for Re=100. Another important aspect of this method is computation of derivatives, which is not obviously as the mesh is not structured. To allevaite this problem, a moving least square method is used to compute derivatives of variables such as velocity and pressure for solving the Navier Stoke’s equation.

rss facebook twitter github gitlab youtube mail spotify lastfm instagram linkedin google google-plus pinterest medium vimeo stackoverflow reddit quora quora