├── .gitattributes ├── .gitignore ├── LICENSE ├── MF-LBM-CUDA.sln ├── MF-LBM-CUDA.vcxproj ├── MF-LBM-CUDA.vcxproj.filters ├── Makefile ├── README.md ├── dep └── dep_files ├── includes ├── Fluid_multiphase.h ├── Fluid_multiphase_extern.h ├── Fluid_singlephase.h ├── Fluid_singlephase_extern.h ├── Geometry_preprocessing.h ├── Global_Variables_GPU.cuh ├── IO_multiphase.h ├── Idx_cpu.h ├── Idx_gpu.cuh ├── Init_multiphase.h ├── Init_multiphase_GPU.h ├── Misc.h ├── Module.h ├── Module_extern.h ├── Monitor.h ├── Phase_gradient.h ├── externLib.h ├── externLib_CUDA.cuh ├── main_iteration_GPU.h ├── preprocessor.h ├── solver_precision.h ├── utils.h └── utils_GPU.cuh ├── input ├── Geometry_File_Path.txt ├── comments.txt ├── geometry │ ├── Benth_Sam_bound_z_MF_420_200_200.dat │ ├── bentheimer_240_240_240.dat │ ├── bentheimer_in10_240_240_240_out10.dat │ └── tube_sphere.dat ├── job_status.txt └── simulation_control.txt ├── snapshot └── PD_0.687.jpg └── src ├── Geometry_preprocessing.cpp ├── IO_multiphase.cpp ├── Init_multiphase.cpp ├── Init_multiphase_GPU.cu ├── Misc.cpp ├── Monitor.cpp ├── Phase_gradient.cpp ├── main.cpp ├── main_iteration_GPU.cu └── utils.cpp /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Sedahmed/MF-LBM-CUDA/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Sedahmed/MF-LBM-CUDA/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Sedahmed/MF-LBM-CUDA/HEAD/LICENSE -------------------------------------------------------------------------------- /MF-LBM-CUDA.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Sedahmed/MF-LBM-CUDA/HEAD/MF-LBM-CUDA.sln -------------------------------------------------------------------------------- /MF-LBM-CUDA.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Sedahmed/MF-LBM-CUDA/HEAD/MF-LBM-CUDA.vcxproj -------------------------------------------------------------------------------- /MF-LBM-CUDA.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Sedahmed/MF-LBM-CUDA/HEAD/MF-LBM-CUDA.vcxproj.filters -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Sedahmed/MF-LBM-CUDA/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Sedahmed/MF-LBM-CUDA/HEAD/README.md -------------------------------------------------------------------------------- /dep/dep_files: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /includes/Fluid_multiphase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Sedahmed/MF-LBM-CUDA/HEAD/includes/Fluid_multiphase.h -------------------------------------------------------------------------------- /includes/Fluid_multiphase_extern.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Sedahmed/MF-LBM-CUDA/HEAD/includes/Fluid_multiphase_extern.h -------------------------------------------------------------------------------- /includes/Fluid_singlephase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Sedahmed/MF-LBM-CUDA/HEAD/includes/Fluid_singlephase.h -------------------------------------------------------------------------------- /includes/Fluid_singlephase_extern.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Sedahmed/MF-LBM-CUDA/HEAD/includes/Fluid_singlephase_extern.h -------------------------------------------------------------------------------- /includes/Geometry_preprocessing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Sedahmed/MF-LBM-CUDA/HEAD/includes/Geometry_preprocessing.h -------------------------------------------------------------------------------- /includes/Global_Variables_GPU.cuh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Sedahmed/MF-LBM-CUDA/HEAD/includes/Global_Variables_GPU.cuh -------------------------------------------------------------------------------- /includes/IO_multiphase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Sedahmed/MF-LBM-CUDA/HEAD/includes/IO_multiphase.h -------------------------------------------------------------------------------- /includes/Idx_cpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Sedahmed/MF-LBM-CUDA/HEAD/includes/Idx_cpu.h -------------------------------------------------------------------------------- /includes/Idx_gpu.cuh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Sedahmed/MF-LBM-CUDA/HEAD/includes/Idx_gpu.cuh -------------------------------------------------------------------------------- /includes/Init_multiphase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Sedahmed/MF-LBM-CUDA/HEAD/includes/Init_multiphase.h -------------------------------------------------------------------------------- /includes/Init_multiphase_GPU.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Sedahmed/MF-LBM-CUDA/HEAD/includes/Init_multiphase_GPU.h -------------------------------------------------------------------------------- /includes/Misc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Sedahmed/MF-LBM-CUDA/HEAD/includes/Misc.h -------------------------------------------------------------------------------- /includes/Module.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Sedahmed/MF-LBM-CUDA/HEAD/includes/Module.h -------------------------------------------------------------------------------- /includes/Module_extern.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Sedahmed/MF-LBM-CUDA/HEAD/includes/Module_extern.h -------------------------------------------------------------------------------- /includes/Monitor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Sedahmed/MF-LBM-CUDA/HEAD/includes/Monitor.h -------------------------------------------------------------------------------- /includes/Phase_gradient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Sedahmed/MF-LBM-CUDA/HEAD/includes/Phase_gradient.h -------------------------------------------------------------------------------- /includes/externLib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Sedahmed/MF-LBM-CUDA/HEAD/includes/externLib.h -------------------------------------------------------------------------------- /includes/externLib_CUDA.cuh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Sedahmed/MF-LBM-CUDA/HEAD/includes/externLib_CUDA.cuh -------------------------------------------------------------------------------- /includes/main_iteration_GPU.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Sedahmed/MF-LBM-CUDA/HEAD/includes/main_iteration_GPU.h -------------------------------------------------------------------------------- /includes/preprocessor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Sedahmed/MF-LBM-CUDA/HEAD/includes/preprocessor.h -------------------------------------------------------------------------------- /includes/solver_precision.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Sedahmed/MF-LBM-CUDA/HEAD/includes/solver_precision.h -------------------------------------------------------------------------------- /includes/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Sedahmed/MF-LBM-CUDA/HEAD/includes/utils.h -------------------------------------------------------------------------------- /includes/utils_GPU.cuh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Sedahmed/MF-LBM-CUDA/HEAD/includes/utils_GPU.cuh -------------------------------------------------------------------------------- /input/Geometry_File_Path.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Sedahmed/MF-LBM-CUDA/HEAD/input/Geometry_File_Path.txt -------------------------------------------------------------------------------- /input/comments.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Sedahmed/MF-LBM-CUDA/HEAD/input/comments.txt -------------------------------------------------------------------------------- /input/geometry/Benth_Sam_bound_z_MF_420_200_200.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Sedahmed/MF-LBM-CUDA/HEAD/input/geometry/Benth_Sam_bound_z_MF_420_200_200.dat -------------------------------------------------------------------------------- /input/geometry/bentheimer_240_240_240.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Sedahmed/MF-LBM-CUDA/HEAD/input/geometry/bentheimer_240_240_240.dat -------------------------------------------------------------------------------- /input/geometry/bentheimer_in10_240_240_240_out10.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Sedahmed/MF-LBM-CUDA/HEAD/input/geometry/bentheimer_in10_240_240_240_out10.dat -------------------------------------------------------------------------------- /input/geometry/tube_sphere.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Sedahmed/MF-LBM-CUDA/HEAD/input/geometry/tube_sphere.dat -------------------------------------------------------------------------------- /input/job_status.txt: -------------------------------------------------------------------------------- 1 | new_simulation -------------------------------------------------------------------------------- /input/simulation_control.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Sedahmed/MF-LBM-CUDA/HEAD/input/simulation_control.txt -------------------------------------------------------------------------------- /snapshot/PD_0.687.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Sedahmed/MF-LBM-CUDA/HEAD/snapshot/PD_0.687.jpg -------------------------------------------------------------------------------- /src/Geometry_preprocessing.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Sedahmed/MF-LBM-CUDA/HEAD/src/Geometry_preprocessing.cpp -------------------------------------------------------------------------------- /src/IO_multiphase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Sedahmed/MF-LBM-CUDA/HEAD/src/IO_multiphase.cpp -------------------------------------------------------------------------------- /src/Init_multiphase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Sedahmed/MF-LBM-CUDA/HEAD/src/Init_multiphase.cpp -------------------------------------------------------------------------------- /src/Init_multiphase_GPU.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Sedahmed/MF-LBM-CUDA/HEAD/src/Init_multiphase_GPU.cu -------------------------------------------------------------------------------- /src/Misc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Sedahmed/MF-LBM-CUDA/HEAD/src/Misc.cpp -------------------------------------------------------------------------------- /src/Monitor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Sedahmed/MF-LBM-CUDA/HEAD/src/Monitor.cpp -------------------------------------------------------------------------------- /src/Phase_gradient.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Sedahmed/MF-LBM-CUDA/HEAD/src/Phase_gradient.cpp -------------------------------------------------------------------------------- /src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Sedahmed/MF-LBM-CUDA/HEAD/src/main.cpp -------------------------------------------------------------------------------- /src/main_iteration_GPU.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Sedahmed/MF-LBM-CUDA/HEAD/src/main_iteration_GPU.cu -------------------------------------------------------------------------------- /src/utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmoud-Sedahmed/MF-LBM-CUDA/HEAD/src/utils.cpp --------------------------------------------------------------------------------