├── .gitignore ├── LICENSE ├── README.md ├── changelog.md ├── doc └── img │ ├── scaling-N10.png │ ├── scaling-N5.png │ ├── scaling-N8.png │ ├── sedimentingSphere-v_vs_t.png │ ├── settling.png │ └── showcaseRectChannel.png ├── examples ├── benchmark │ ├── Makefile │ ├── README.md │ ├── benchmark.cpp │ ├── in.lbdem │ └── in2.lbdem ├── sedimentingSphere │ ├── Makefile │ ├── README.md │ ├── in.lbdem │ ├── in2.lbdem │ └── sedimentingSphere.cpp └── showcaseRectChannel │ ├── Makefile │ ├── README.md │ ├── in.lbdem │ ├── in2.lbdem │ └── showcaseRectChannel.cpp ├── fix_lb_coupling_onetoone.cpp ├── fix_lb_coupling_onetoone.h └── src ├── ibCompositeDynamics3D.h ├── ibCompositeDynamics3D.hh ├── ibDataExchangeWrappers3D.h ├── ibDataExchangeWrappers3D.hh ├── ibDataWritingFunctionals3D.h ├── ibDataWritingFunctionals3D.hh ├── ibDef.h ├── ibDynamicsParticleData.h ├── ibDynamicsParticleData.hh ├── ibProcessors3D.h ├── ibProcessors3D.hh ├── latticeDecomposition.cpp ├── latticeDecomposition.h ├── liggghtsCouplingWrapper.cpp ├── liggghtsCouplingWrapper.h ├── periodicPressureFunctionals3D.h ├── periodicPressureFunctionals3D.hh ├── physunits.h ├── plb_ib.h └── utils.h /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/LBDEMcoupling-public/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/LBDEMcoupling-public/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/LBDEMcoupling-public/HEAD/README.md -------------------------------------------------------------------------------- /changelog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/LBDEMcoupling-public/HEAD/changelog.md -------------------------------------------------------------------------------- /doc/img/scaling-N10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/LBDEMcoupling-public/HEAD/doc/img/scaling-N10.png -------------------------------------------------------------------------------- /doc/img/scaling-N5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/LBDEMcoupling-public/HEAD/doc/img/scaling-N5.png -------------------------------------------------------------------------------- /doc/img/scaling-N8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/LBDEMcoupling-public/HEAD/doc/img/scaling-N8.png -------------------------------------------------------------------------------- /doc/img/sedimentingSphere-v_vs_t.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/LBDEMcoupling-public/HEAD/doc/img/sedimentingSphere-v_vs_t.png -------------------------------------------------------------------------------- /doc/img/settling.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/LBDEMcoupling-public/HEAD/doc/img/settling.png -------------------------------------------------------------------------------- /doc/img/showcaseRectChannel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/LBDEMcoupling-public/HEAD/doc/img/showcaseRectChannel.png -------------------------------------------------------------------------------- /examples/benchmark/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/LBDEMcoupling-public/HEAD/examples/benchmark/Makefile -------------------------------------------------------------------------------- /examples/benchmark/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/LBDEMcoupling-public/HEAD/examples/benchmark/README.md -------------------------------------------------------------------------------- /examples/benchmark/benchmark.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/LBDEMcoupling-public/HEAD/examples/benchmark/benchmark.cpp -------------------------------------------------------------------------------- /examples/benchmark/in.lbdem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/LBDEMcoupling-public/HEAD/examples/benchmark/in.lbdem -------------------------------------------------------------------------------- /examples/benchmark/in2.lbdem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/LBDEMcoupling-public/HEAD/examples/benchmark/in2.lbdem -------------------------------------------------------------------------------- /examples/sedimentingSphere/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/LBDEMcoupling-public/HEAD/examples/sedimentingSphere/Makefile -------------------------------------------------------------------------------- /examples/sedimentingSphere/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/LBDEMcoupling-public/HEAD/examples/sedimentingSphere/README.md -------------------------------------------------------------------------------- /examples/sedimentingSphere/in.lbdem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/LBDEMcoupling-public/HEAD/examples/sedimentingSphere/in.lbdem -------------------------------------------------------------------------------- /examples/sedimentingSphere/in2.lbdem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/LBDEMcoupling-public/HEAD/examples/sedimentingSphere/in2.lbdem -------------------------------------------------------------------------------- /examples/sedimentingSphere/sedimentingSphere.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/LBDEMcoupling-public/HEAD/examples/sedimentingSphere/sedimentingSphere.cpp -------------------------------------------------------------------------------- /examples/showcaseRectChannel/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/LBDEMcoupling-public/HEAD/examples/showcaseRectChannel/Makefile -------------------------------------------------------------------------------- /examples/showcaseRectChannel/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/LBDEMcoupling-public/HEAD/examples/showcaseRectChannel/README.md -------------------------------------------------------------------------------- /examples/showcaseRectChannel/in.lbdem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/LBDEMcoupling-public/HEAD/examples/showcaseRectChannel/in.lbdem -------------------------------------------------------------------------------- /examples/showcaseRectChannel/in2.lbdem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/LBDEMcoupling-public/HEAD/examples/showcaseRectChannel/in2.lbdem -------------------------------------------------------------------------------- /examples/showcaseRectChannel/showcaseRectChannel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/LBDEMcoupling-public/HEAD/examples/showcaseRectChannel/showcaseRectChannel.cpp -------------------------------------------------------------------------------- /fix_lb_coupling_onetoone.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/LBDEMcoupling-public/HEAD/fix_lb_coupling_onetoone.cpp -------------------------------------------------------------------------------- /fix_lb_coupling_onetoone.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/LBDEMcoupling-public/HEAD/fix_lb_coupling_onetoone.h -------------------------------------------------------------------------------- /src/ibCompositeDynamics3D.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/LBDEMcoupling-public/HEAD/src/ibCompositeDynamics3D.h -------------------------------------------------------------------------------- /src/ibCompositeDynamics3D.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/LBDEMcoupling-public/HEAD/src/ibCompositeDynamics3D.hh -------------------------------------------------------------------------------- /src/ibDataExchangeWrappers3D.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/LBDEMcoupling-public/HEAD/src/ibDataExchangeWrappers3D.h -------------------------------------------------------------------------------- /src/ibDataExchangeWrappers3D.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/LBDEMcoupling-public/HEAD/src/ibDataExchangeWrappers3D.hh -------------------------------------------------------------------------------- /src/ibDataWritingFunctionals3D.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/LBDEMcoupling-public/HEAD/src/ibDataWritingFunctionals3D.h -------------------------------------------------------------------------------- /src/ibDataWritingFunctionals3D.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/LBDEMcoupling-public/HEAD/src/ibDataWritingFunctionals3D.hh -------------------------------------------------------------------------------- /src/ibDef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/LBDEMcoupling-public/HEAD/src/ibDef.h -------------------------------------------------------------------------------- /src/ibDynamicsParticleData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/LBDEMcoupling-public/HEAD/src/ibDynamicsParticleData.h -------------------------------------------------------------------------------- /src/ibDynamicsParticleData.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/LBDEMcoupling-public/HEAD/src/ibDynamicsParticleData.hh -------------------------------------------------------------------------------- /src/ibProcessors3D.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/LBDEMcoupling-public/HEAD/src/ibProcessors3D.h -------------------------------------------------------------------------------- /src/ibProcessors3D.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/LBDEMcoupling-public/HEAD/src/ibProcessors3D.hh -------------------------------------------------------------------------------- /src/latticeDecomposition.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/LBDEMcoupling-public/HEAD/src/latticeDecomposition.cpp -------------------------------------------------------------------------------- /src/latticeDecomposition.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/LBDEMcoupling-public/HEAD/src/latticeDecomposition.h -------------------------------------------------------------------------------- /src/liggghtsCouplingWrapper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/LBDEMcoupling-public/HEAD/src/liggghtsCouplingWrapper.cpp -------------------------------------------------------------------------------- /src/liggghtsCouplingWrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/LBDEMcoupling-public/HEAD/src/liggghtsCouplingWrapper.h -------------------------------------------------------------------------------- /src/periodicPressureFunctionals3D.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/LBDEMcoupling-public/HEAD/src/periodicPressureFunctionals3D.h -------------------------------------------------------------------------------- /src/periodicPressureFunctionals3D.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/LBDEMcoupling-public/HEAD/src/periodicPressureFunctionals3D.hh -------------------------------------------------------------------------------- /src/physunits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/LBDEMcoupling-public/HEAD/src/physunits.h -------------------------------------------------------------------------------- /src/plb_ib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/LBDEMcoupling-public/HEAD/src/plb_ib.h -------------------------------------------------------------------------------- /src/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParticulateFlow/LBDEMcoupling-public/HEAD/src/utils.h --------------------------------------------------------------------------------