Pore scale modelling
Go to file
2021-08-30 10:07:53 +02:00
analysis Merge branch 'master' of github.com:JamesEMcClure/LBPM-WIA 2021-06-29 15:31:37 -04:00
cmake reduce cmake minimum for default 2021-05-17 15:13:36 -04:00
common Merge branch 'master' of github.com:JamesEMcClure/LBPM-WIA 2021-06-29 15:31:37 -04:00
cpu Merge branch 'master' of github.com:JamesEMcClure/LBPM-WIA 2021-06-29 15:31:37 -04:00
cuda Merge branch 'master' of github.com:JamesEMcClure/LBPM-WIA 2021-06-29 15:31:37 -04:00
docs Merge branch 'master' of github.com:JamesEMcClure/LBPM-WIA 2021-07-26 08:22:05 -04:00
doxygen Updating documentation 2020-05-28 13:12:09 -04:00
example added droplet coalescence example 2021-06-30 08:38:21 -04:00
hip Merge branch 'master' of github.com:JamesEMcClure/LBPM-WIA 2021-06-29 15:31:37 -04:00
IO Merge branch 'master' of github.com:JamesEMcClure/LBPM-WIA 2021-05-17 19:10:37 -04:00
models Merge branch 'master' of github.com:JamesEMcClure/LBPM-WIA 2021-06-29 15:31:37 -04:00
pmmc Finishing id mapping between timesteps, modifying TwoPhase to print the new global id. Still testing. 2015-08-25 14:32:36 -04:00
sample_scripts Merge branch 'master' of github.com:JamesEMcClure/LBPM-WIA 2021-05-17 19:10:37 -04:00
StackTrace fix merge conflict 2021-03-24 21:32:08 -04:00
tests create legacy mode for color simulator 2021-06-30 10:39:28 -04:00
threadpool combined updates 2019-03-22 21:33:05 -04:00
workflows Update grid utility script 2021-08-30 10:07:53 +02:00
.clang-format Fixing bug with analysis 2021-01-22 10:05:16 -05:00
.gitignore Updated git ignore to ignore .swp files 2017-12-06 12:32:46 -05:00
.project fixing filters with math dot h and array by deleting the pow function 2017-09-11 16:25:20 -04:00
CMakeLists.txt version 2021-06-02 17:37:15 -04:00
ctest_script.cmake Updating FindMPI 2021-03-01 14:02:29 -05:00
LICENSE concatenating licenses 2018-05-25 07:57:14 -04:00
README.md Update README.md 2020-06-23 13:51:14 +02:00
README.titan Updating FindMPI 2021-03-01 14:02:29 -05:00
ValgrindSuppresionFile More work on valgrind 2015-03-06 11:40:10 -05:00

LBPM

Lattice Boltzmann Methods for Porous Media

========

Notes on installation

  • example configure scripts for cmake are in the sample_scripts directory
  • required dependencies - MPI, HDF5, SILO, C++14
  • optional dependencies - NetCDF, CUDA, TimerUtility

Build dependencies (zlib, hdf5, silo) OR point to an existing installation

Configure, build & install procedure

  • create an empty directory to install (do not build in source!)

    mkdir /path/to/my/install

    cd /path/to/my/install

  • edit configure script from sample_scripts directory and configure (e.g.)

    /path/to/LBPM/sample_scripts/configure_desktop

  • compile and install

    make -j4 && make install

  • run the unit tests to make sure it works

    ctest