Pore scale modelling
Go to file
2023-10-23 05:03:11 -04:00
.github/workflows test only with HDF5 2023-10-23 05:03:11 -04:00
analysis re-run clang format 2023-10-23 04:18:20 -04:00
cmake merge LBPM with spock 2021-12-12 11:36:47 -05:00
common re-run clang format 2023-10-23 04:18:20 -04:00
cpu re-run clang format 2023-10-23 04:18:20 -04:00
cuda clean up 2023-10-23 04:19:15 -04:00
docs update cell docs 2023-01-18 07:22:33 -05:00
doxygen updating documentation 2021-10-03 19:56:26 -04:00
example update docs for cell model 2023-01-16 13:29:58 -05:00
hip updates from ScaLBL 2023-10-22 09:53:45 -04:00
IO updates from ScaLBL 2023-10-22 09:53:45 -04:00
models Merge branch 'master' of github.com:JamesEMcClure/LBPM-WIA 2023-10-23 04:13:07 -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 re-run clang format 2023-10-23 04:18:20 -04:00
StackTrace updates from ScaLBL 2023-10-22 09:53:45 -04:00
tests import ScaLBL updates 2023-10-22 11:05:05 -04:00
threadpool updates from ScaLBL 2023-10-22 09:53:45 -04:00
workflows Update grid utility script 2021-08-30 10:07:53 +02:00
.clang-format Clang format (#55) 2021-11-08 22:58:37 +01:00
.clang-format-2 Add clang script and .clang example (#52) 2021-11-05 15:17:15 +01: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
clang-format-all Add clang script and .clang example (#52) 2021-11-05 15:17:15 +01:00
CMakeLists.txt Fixing memory leaks 2022-07-13 11:20:53 -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 Fixing memory leaks 2022-07-13 11:20:53 -04: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