Parallel, highly efficient code (CPU and GPU) for DEM and CFD-DEM simulations.
Go to file
Hamidreza Norouzi 22d03642e8 logo added 2023-04-14 09:29:10 -07:00
.github/workflows Create static.yml 2023-03-25 22:04:16 +03:30
DEMSystems bug fix in DEMsystem 2023-04-12 15:07:31 +03:30
benchmarks updated benchmarks after multigridNBS 2022-10-30 19:06:52 +03:30
cmake src folder 2022-09-05 01:56:29 +04:30
doc logo added 2023-04-14 09:29:10 -07:00
solvers solver documentations 2023-03-25 14:10:00 -07:00
src Doc for Geometry added 2023-04-13 11:42:41 -07:00
tutorials tutorials revised for binray IO addition 2023-04-11 23:09:49 -07:00
utilities bug fix for pFlowToVTK 2023-04-13 14:52:31 +03:30
.gitignore updated with documentation 2023-03-26 01:05:19 -07:00
CMakeLists.txt Added the DEMSystems to the CMakeLists.txt file 2023-01-30 14:45:05 +01:00
LICENSE build system is added and is tested for serial execution 2022-09-02 12:30:54 +04:30
README.md logo added 2023-04-14 09:29:10 -07:00
phasicFlowConfig.H.in change of selctors, cmake config for float compilation 2022-09-30 11:43:19 +03:30

README.md

PhasicFlow

PhasicFlow is a parallel C++ code for performing DEM simulations. It can run on shared-memory multi-core computational units such as multi-core CPUs or GPUs (for now it works on CUDA-enabled GPUs). The parallelization method mainly relies on loop-level parallelization on a shared-memory computational unit. You can build and run PhasicFlow in serial mode on regular PCs, in parallel mode for multi-core CPUs, or build it for a GPU device to off-load computations to a GPU. In its current statues you can simulate millions of particles (up to 32M particles tested) on a single desktop computer. You can see the [performance tests of PhasicFlow](https://github.com/PhasicFlow/phasicFlow/wiki/Performance-of-phasicFlow) in the wiki page.

How to build?

You can build PhasicFlow for CPU and GPU executions. Here is a complete step-by-step procedure.

Online code documentation

You can find a full documentation of the code, its features, and other related materials on online documentation of the code

How to use PhasicFlow?

You can navigate into tutorials folder in the phasicFlow folder to see some simulation case setups. If you need more detailed discription, visit our wiki page tutorials.

Supporting packages

  • Kokkos from National Technology & Engineering Solutions of Sandia, LLC (NTESS)
  • CLI11 1.8 from University of Cincinnati.

Extensions in future

parallelization

  • Extending the code for using OpenMPTarget backend to include more GPUs for off-loading the computations.
  • Extending high-level parallelization and implementing space partitioning and load balancing for muilti-GPU computations and running PhasicFlow on distributed memory super-computers