├── .gitignore ├── README.md ├── assets └── bg_grandcanyon_small.bmp ├── bitmap_image.hpp ├── common.h ├── fluid.cpp ├── fluid.h ├── fluidgpu.cu ├── interface.cpp ├── makefile ├── mpi_project.cpp ├── mpi_simulator.cpp ├── mpi_simulator.h ├── profile.txt ├── project.cpp ├── qsub_script.sh ├── rendering2.cu ├── rendering2.h ├── rendering_diffuse.cu ├── rkv.cpp ├── rkv.h ├── simulator.cpp ├── simulator.h ├── spherical_bmp.cpp ├── spherical_bmp.h ├── videomaker.cpp └── videomaker.h /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donghaoren/CUDASPHFluid/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donghaoren/CUDASPHFluid/HEAD/README.md -------------------------------------------------------------------------------- /assets/bg_grandcanyon_small.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donghaoren/CUDASPHFluid/HEAD/assets/bg_grandcanyon_small.bmp -------------------------------------------------------------------------------- /bitmap_image.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donghaoren/CUDASPHFluid/HEAD/bitmap_image.hpp -------------------------------------------------------------------------------- /common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donghaoren/CUDASPHFluid/HEAD/common.h -------------------------------------------------------------------------------- /fluid.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donghaoren/CUDASPHFluid/HEAD/fluid.cpp -------------------------------------------------------------------------------- /fluid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donghaoren/CUDASPHFluid/HEAD/fluid.h -------------------------------------------------------------------------------- /fluidgpu.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donghaoren/CUDASPHFluid/HEAD/fluidgpu.cu -------------------------------------------------------------------------------- /interface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donghaoren/CUDASPHFluid/HEAD/interface.cpp -------------------------------------------------------------------------------- /makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donghaoren/CUDASPHFluid/HEAD/makefile -------------------------------------------------------------------------------- /mpi_project.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donghaoren/CUDASPHFluid/HEAD/mpi_project.cpp -------------------------------------------------------------------------------- /mpi_simulator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donghaoren/CUDASPHFluid/HEAD/mpi_simulator.cpp -------------------------------------------------------------------------------- /mpi_simulator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donghaoren/CUDASPHFluid/HEAD/mpi_simulator.h -------------------------------------------------------------------------------- /profile.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donghaoren/CUDASPHFluid/HEAD/profile.txt -------------------------------------------------------------------------------- /project.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donghaoren/CUDASPHFluid/HEAD/project.cpp -------------------------------------------------------------------------------- /qsub_script.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donghaoren/CUDASPHFluid/HEAD/qsub_script.sh -------------------------------------------------------------------------------- /rendering2.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donghaoren/CUDASPHFluid/HEAD/rendering2.cu -------------------------------------------------------------------------------- /rendering2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donghaoren/CUDASPHFluid/HEAD/rendering2.h -------------------------------------------------------------------------------- /rendering_diffuse.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donghaoren/CUDASPHFluid/HEAD/rendering_diffuse.cu -------------------------------------------------------------------------------- /rkv.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donghaoren/CUDASPHFluid/HEAD/rkv.cpp -------------------------------------------------------------------------------- /rkv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donghaoren/CUDASPHFluid/HEAD/rkv.h -------------------------------------------------------------------------------- /simulator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donghaoren/CUDASPHFluid/HEAD/simulator.cpp -------------------------------------------------------------------------------- /simulator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donghaoren/CUDASPHFluid/HEAD/simulator.h -------------------------------------------------------------------------------- /spherical_bmp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donghaoren/CUDASPHFluid/HEAD/spherical_bmp.cpp -------------------------------------------------------------------------------- /spherical_bmp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donghaoren/CUDASPHFluid/HEAD/spherical_bmp.h -------------------------------------------------------------------------------- /videomaker.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donghaoren/CUDASPHFluid/HEAD/videomaker.cpp -------------------------------------------------------------------------------- /videomaker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donghaoren/CUDASPHFluid/HEAD/videomaker.h --------------------------------------------------------------------------------