├── .github ├── release-drafter.yml └── workflows │ └── WindowsCUDA.yml ├── .gitignore ├── .gitmodules ├── CMakeLists.txt ├── LICENSE ├── README.md ├── actions ├── install_cuda_ubuntu.sh └── install_cuda_windows.ps1 ├── cmake └── checkCUDA │ ├── check_cuda.cu │ └── compile │ └── .gitkeep ├── configuration ├── root_directory.h.in └── visualstudio.vcxproj.user.in ├── export └── bgeo │ └── .gitkeep ├── extlib ├── include │ ├── partio │ │ ├── Partio.h │ │ ├── PartioAttribute.h │ │ ├── PartioIterator.h │ │ ├── PartioVec3.h │ │ ├── core │ │ │ ├── KdTree.h │ │ │ ├── Mutex.h │ │ │ ├── Particle.cpp │ │ │ ├── ParticleCaching.cpp │ │ │ ├── ParticleCaching.h │ │ │ ├── ParticleHeaders.cpp │ │ │ ├── ParticleHeaders.h │ │ │ ├── ParticleSimple.cpp │ │ │ ├── ParticleSimple.h │ │ │ ├── ParticleSimpleInterleave.cpp │ │ │ └── ParticleSimpleInterleave.h │ │ └── io │ │ │ ├── BGEO.cpp │ │ │ ├── BIN.cpp │ │ │ ├── GEO.cpp │ │ │ ├── MC.cpp │ │ │ ├── PDA.cpp │ │ │ ├── PDB.cpp │ │ │ ├── PDC.cpp │ │ │ ├── PRT.cpp │ │ │ ├── PTC.cpp │ │ │ ├── PTS.cpp │ │ │ ├── ParticleIO.cpp │ │ │ ├── PartioEndian.h │ │ │ ├── RIB.cpp │ │ │ ├── ZIP.cpp │ │ │ ├── ZIP.h │ │ │ ├── half2float.h │ │ │ ├── pdb.h │ │ │ └── readers.h │ └── spdlog │ │ ├── async.h │ │ ├── async_logger-inl.h │ │ ├── async_logger.h │ │ ├── cfg │ │ ├── argv.h │ │ ├── env.h │ │ ├── helpers-inl.h │ │ └── helpers.h │ │ ├── common-inl.h │ │ ├── common.h │ │ ├── details │ │ ├── backtracer-inl.h │ │ ├── backtracer.h │ │ ├── circular_q.h │ │ ├── console_globals.h │ │ ├── file_helper-inl.h │ │ ├── file_helper.h │ │ ├── fmt_helper.h │ │ ├── log_msg-inl.h │ │ ├── log_msg.h │ │ ├── log_msg_buffer-inl.h │ │ ├── log_msg_buffer.h │ │ ├── mpmc_blocking_q.h │ │ ├── null_mutex.h │ │ ├── os-inl.h │ │ ├── os.h │ │ ├── periodic_worker-inl.h │ │ ├── periodic_worker.h │ │ ├── registry-inl.h │ │ ├── registry.h │ │ ├── synchronous_factory.h │ │ ├── tcp_client-windows.h │ │ ├── tcp_client.h │ │ ├── thread_pool-inl.h │ │ ├── thread_pool.h │ │ └── windows_include.h │ │ ├── fmt │ │ ├── bin_to_hex.h │ │ ├── bundled │ │ │ ├── LICENSE.rst │ │ │ ├── chrono.h │ │ │ ├── color.h │ │ │ ├── compile.h │ │ │ ├── core.h │ │ │ ├── format-inl.h │ │ │ ├── format.h │ │ │ ├── locale.h │ │ │ ├── os.h │ │ │ ├── ostream.h │ │ │ ├── posix.h │ │ │ ├── printf.h │ │ │ └── ranges.h │ │ ├── chrono.h │ │ ├── fmt.h │ │ └── ostr.h │ │ ├── formatter.h │ │ ├── fwd.h │ │ ├── logger-inl.h │ │ ├── logger.h │ │ ├── pattern_formatter-inl.h │ │ ├── pattern_formatter.h │ │ ├── sinks │ │ ├── android_sink.h │ │ ├── ansicolor_sink-inl.h │ │ ├── ansicolor_sink.h │ │ ├── base_sink-inl.h │ │ ├── base_sink.h │ │ ├── basic_file_sink-inl.h │ │ ├── basic_file_sink.h │ │ ├── daily_file_sink.h │ │ ├── dist_sink.h │ │ ├── dup_filter_sink.h │ │ ├── msvc_sink.h │ │ ├── null_sink.h │ │ ├── ostream_sink.h │ │ ├── ringbuffer_sink.h │ │ ├── rotating_file_sink-inl.h │ │ ├── rotating_file_sink.h │ │ ├── sink-inl.h │ │ ├── sink.h │ │ ├── stdout_color_sinks-inl.h │ │ ├── stdout_color_sinks.h │ │ ├── stdout_sinks-inl.h │ │ ├── stdout_sinks.h │ │ ├── syslog_sink.h │ │ ├── systemd_sink.h │ │ ├── tcp_sink.h │ │ ├── win_eventlog_sink.h │ │ ├── wincolor_sink-inl.h │ │ └── wincolor_sink.h │ │ ├── spdlog-inl.h │ │ ├── spdlog.h │ │ ├── stopwatch.h │ │ ├── tweakme.h │ │ └── version.h └── lib │ ├── partio.lib │ └── partiod.lib ├── houdini_template └── demo.hipnc ├── pics └── teaser.png ├── resources └── bgeo │ └── bunny │ └── bunny.bgeo ├── scripts ├── actions │ ├── install_cuda_ubuntu.sh │ └── install_cuda_windows.ps1 ├── build_vs2015_win64.bat ├── build_vs2017_win64.bat ├── build_vs2019_win64.bat ├── build_vs2022_win64.bat └── ffmpeg │ ├── assemble_exr.bat │ └── assemble_exr.py ├── seepage_flows ├── CMakeLists.txt ├── include │ ├── cuda │ │ └── cuda_helper.h │ ├── kiri_define.h │ ├── kiri_log.h │ ├── kiri_pch.h │ ├── kiri_timer.h │ └── kiri_utils.h └── src │ ├── kiri_log.cpp │ └── seepageflow │ └── main.cpp └── seepage_flows_cuda ├── CMakeLists.txt ├── include ├── kiri_pbs_cuda │ ├── cuda_common.cuh │ ├── cuda_helper │ │ ├── helper_cuda.h │ │ ├── helper_math.h │ │ └── helper_string.h │ ├── cuda_searcher_struct.cuh │ ├── data │ │ ├── cuda_array.cuh │ │ ├── cuda_boundary_params.h │ │ ├── cuda_seepageflow_params.h │ │ └── cuda_sph_params.h │ ├── emitter │ │ ├── cuda_boundary_emitter.cuh │ │ ├── cuda_emitter.cuh │ │ └── cuda_volume_emitter.cuh │ ├── kernel │ │ └── cuda_sph_kernel.cuh │ ├── kiri_pbs_pch.cuh │ ├── math │ │ ├── cuda_math_color_space.cuh │ │ ├── cuda_math_colormap.cuh │ │ ├── cuda_math_quaternion.cuh │ │ ├── cuda_math_tensor.cuh │ │ ├── cuda_math_utils.cuh │ │ └── cuda_pbs_math.h │ ├── particle │ │ ├── cuda_boundary_particles.cuh │ │ ├── cuda_particles.cuh │ │ └── cuda_sf_particles.cuh │ ├── searcher │ │ ├── cuda_neighbor_searcher.cuh │ │ └── cuda_neighbor_searcher_gpu.cuh │ ├── solver │ │ ├── cuda_base_solver.cuh │ │ ├── cuda_solver_common_gpu.cuh │ │ ├── dem │ │ │ └── cuda_dem_solver_common_gpu.cuh │ │ ├── seepageflow │ │ │ ├── cuda_sf_utils.cuh │ │ │ ├── cuda_sph_sf_solver.cuh │ │ │ ├── cuda_sph_sf_solver_gpu.cuh │ │ │ ├── cuda_wcsph_sf_solver.cuh │ │ │ └── cuda_wcsph_sf_solver_gpu.cuh │ │ └── sph │ │ │ └── cuda_sph_solver_common_gpu.cuh │ ├── system │ │ ├── cuda_base_system.cuh │ │ ├── cuda_base_system_gpu.cuh │ │ ├── cuda_sf_system.cuh │ │ └── cuda_sph_system_gpu.cuh │ └── thrust_helper │ │ └── helper_thrust.cuh └── sf_cuda_define.h └── src └── kiri_pbs_cuda ├── data ├── cuda_boundary_params.cpp ├── cuda_seepageflow_params.cpp └── cuda_sph_params.cpp ├── emitter ├── cuda_boundary_emitter.cpp ├── cuda_emitter.cpp └── cuda_volume_emitter.cpp ├── particle └── cuda_sf_particles.cu ├── searcher └── cuda_neighbor_searcher.cu ├── solver └── seepage_flow │ ├── cuda_sph_sf_solver.cpp │ ├── cuda_sph_sf_solver.cu │ ├── cuda_wcsph_sf_solver.cpp │ └── cuda_wcsph_sf_solver.cu └── system ├── cuda_base_system.cu └── cuda_sf_system.cu /.github/release-drafter.yml: -------------------------------------------------------------------------------- 1 | template: | 2 | ## What’s Changed 3 | 4 | $CHANGES 5 | -------------------------------------------------------------------------------- /.github/workflows/WindowsCUDA.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaymondMcGuire/sph_seepage_flows/HEAD/.github/workflows/WindowsCUDA.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaymondMcGuire/sph_seepage_flows/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaymondMcGuire/sph_seepage_flows/HEAD/.gitmodules -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaymondMcGuire/sph_seepage_flows/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaymondMcGuire/sph_seepage_flows/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaymondMcGuire/sph_seepage_flows/HEAD/README.md -------------------------------------------------------------------------------- /actions/install_cuda_ubuntu.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaymondMcGuire/sph_seepage_flows/HEAD/actions/install_cuda_ubuntu.sh -------------------------------------------------------------------------------- /actions/install_cuda_windows.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaymondMcGuire/sph_seepage_flows/HEAD/actions/install_cuda_windows.ps1 -------------------------------------------------------------------------------- /cmake/checkCUDA/check_cuda.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaymondMcGuire/sph_seepage_flows/HEAD/cmake/checkCUDA/check_cuda.cu -------------------------------------------------------------------------------- /cmake/checkCUDA/compile/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /configuration/root_directory.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaymondMcGuire/sph_seepage_flows/HEAD/configuration/root_directory.h.in -------------------------------------------------------------------------------- /configuration/visualstudio.vcxproj.user.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaymondMcGuire/sph_seepage_flows/HEAD/configuration/visualstudio.vcxproj.user.in -------------------------------------------------------------------------------- /export/bgeo/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /extlib/include/partio/Partio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaymondMcGuire/sph_seepage_flows/HEAD/extlib/include/partio/Partio.h -------------------------------------------------------------------------------- /extlib/include/partio/PartioAttribute.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaymondMcGuire/sph_seepage_flows/HEAD/extlib/include/partio/PartioAttribute.h -------------------------------------------------------------------------------- /extlib/include/partio/PartioIterator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaymondMcGuire/sph_seepage_flows/HEAD/extlib/include/partio/PartioIterator.h -------------------------------------------------------------------------------- /extlib/include/partio/PartioVec3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaymondMcGuire/sph_seepage_flows/HEAD/extlib/include/partio/PartioVec3.h -------------------------------------------------------------------------------- /extlib/include/partio/core/KdTree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaymondMcGuire/sph_seepage_flows/HEAD/extlib/include/partio/core/KdTree.h -------------------------------------------------------------------------------- /extlib/include/partio/core/Mutex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaymondMcGuire/sph_seepage_flows/HEAD/extlib/include/partio/core/Mutex.h -------------------------------------------------------------------------------- /extlib/include/partio/core/Particle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaymondMcGuire/sph_seepage_flows/HEAD/extlib/include/partio/core/Particle.cpp -------------------------------------------------------------------------------- /extlib/include/partio/core/ParticleCaching.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaymondMcGuire/sph_seepage_flows/HEAD/extlib/include/partio/core/ParticleCaching.cpp -------------------------------------------------------------------------------- /extlib/include/partio/core/ParticleCaching.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaymondMcGuire/sph_seepage_flows/HEAD/extlib/include/partio/core/ParticleCaching.h -------------------------------------------------------------------------------- /extlib/include/partio/core/ParticleHeaders.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaymondMcGuire/sph_seepage_flows/HEAD/extlib/include/partio/core/ParticleHeaders.cpp -------------------------------------------------------------------------------- /extlib/include/partio/core/ParticleHeaders.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaymondMcGuire/sph_seepage_flows/HEAD/extlib/include/partio/core/ParticleHeaders.h -------------------------------------------------------------------------------- /extlib/include/partio/core/ParticleSimple.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaymondMcGuire/sph_seepage_flows/HEAD/extlib/include/partio/core/ParticleSimple.cpp -------------------------------------------------------------------------------- /extlib/include/partio/core/ParticleSimple.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaymondMcGuire/sph_seepage_flows/HEAD/extlib/include/partio/core/ParticleSimple.h -------------------------------------------------------------------------------- /extlib/include/partio/core/ParticleSimpleInterleave.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaymondMcGuire/sph_seepage_flows/HEAD/extlib/include/partio/core/ParticleSimpleInterleave.cpp -------------------------------------------------------------------------------- /extlib/include/partio/core/ParticleSimpleInterleave.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaymondMcGuire/sph_seepage_flows/HEAD/extlib/include/partio/core/ParticleSimpleInterleave.h -------------------------------------------------------------------------------- /extlib/include/partio/io/BGEO.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaymondMcGuire/sph_seepage_flows/HEAD/extlib/include/partio/io/BGEO.cpp -------------------------------------------------------------------------------- /extlib/include/partio/io/BIN.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaymondMcGuire/sph_seepage_flows/HEAD/extlib/include/partio/io/BIN.cpp -------------------------------------------------------------------------------- /extlib/include/partio/io/GEO.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaymondMcGuire/sph_seepage_flows/HEAD/extlib/include/partio/io/GEO.cpp -------------------------------------------------------------------------------- /extlib/include/partio/io/MC.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaymondMcGuire/sph_seepage_flows/HEAD/extlib/include/partio/io/MC.cpp -------------------------------------------------------------------------------- /extlib/include/partio/io/PDA.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaymondMcGuire/sph_seepage_flows/HEAD/extlib/include/partio/io/PDA.cpp -------------------------------------------------------------------------------- /extlib/include/partio/io/PDB.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaymondMcGuire/sph_seepage_flows/HEAD/extlib/include/partio/io/PDB.cpp -------------------------------------------------------------------------------- /extlib/include/partio/io/PDC.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaymondMcGuire/sph_seepage_flows/HEAD/extlib/include/partio/io/PDC.cpp -------------------------------------------------------------------------------- /extlib/include/partio/io/PRT.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaymondMcGuire/sph_seepage_flows/HEAD/extlib/include/partio/io/PRT.cpp -------------------------------------------------------------------------------- /extlib/include/partio/io/PTC.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaymondMcGuire/sph_seepage_flows/HEAD/extlib/include/partio/io/PTC.cpp -------------------------------------------------------------------------------- /extlib/include/partio/io/PTS.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaymondMcGuire/sph_seepage_flows/HEAD/extlib/include/partio/io/PTS.cpp -------------------------------------------------------------------------------- /extlib/include/partio/io/ParticleIO.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaymondMcGuire/sph_seepage_flows/HEAD/extlib/include/partio/io/ParticleIO.cpp -------------------------------------------------------------------------------- /extlib/include/partio/io/PartioEndian.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaymondMcGuire/sph_seepage_flows/HEAD/extlib/include/partio/io/PartioEndian.h -------------------------------------------------------------------------------- /extlib/include/partio/io/RIB.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaymondMcGuire/sph_seepage_flows/HEAD/extlib/include/partio/io/RIB.cpp -------------------------------------------------------------------------------- /extlib/include/partio/io/ZIP.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaymondMcGuire/sph_seepage_flows/HEAD/extlib/include/partio/io/ZIP.cpp -------------------------------------------------------------------------------- /extlib/include/partio/io/ZIP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaymondMcGuire/sph_seepage_flows/HEAD/extlib/include/partio/io/ZIP.h -------------------------------------------------------------------------------- /extlib/include/partio/io/half2float.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaymondMcGuire/sph_seepage_flows/HEAD/extlib/include/partio/io/half2float.h -------------------------------------------------------------------------------- /extlib/include/partio/io/pdb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaymondMcGuire/sph_seepage_flows/HEAD/extlib/include/partio/io/pdb.h -------------------------------------------------------------------------------- /extlib/include/partio/io/readers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaymondMcGuire/sph_seepage_flows/HEAD/extlib/include/partio/io/readers.h -------------------------------------------------------------------------------- /extlib/include/spdlog/async.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaymondMcGuire/sph_seepage_flows/HEAD/extlib/include/spdlog/async.h -------------------------------------------------------------------------------- /extlib/include/spdlog/async_logger-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaymondMcGuire/sph_seepage_flows/HEAD/extlib/include/spdlog/async_logger-inl.h -------------------------------------------------------------------------------- /extlib/include/spdlog/async_logger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaymondMcGuire/sph_seepage_flows/HEAD/extlib/include/spdlog/async_logger.h -------------------------------------------------------------------------------- /extlib/include/spdlog/cfg/argv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaymondMcGuire/sph_seepage_flows/HEAD/extlib/include/spdlog/cfg/argv.h -------------------------------------------------------------------------------- /extlib/include/spdlog/cfg/env.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaymondMcGuire/sph_seepage_flows/HEAD/extlib/include/spdlog/cfg/env.h -------------------------------------------------------------------------------- /extlib/include/spdlog/cfg/helpers-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaymondMcGuire/sph_seepage_flows/HEAD/extlib/include/spdlog/cfg/helpers-inl.h -------------------------------------------------------------------------------- /extlib/include/spdlog/cfg/helpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaymondMcGuire/sph_seepage_flows/HEAD/extlib/include/spdlog/cfg/helpers.h -------------------------------------------------------------------------------- /extlib/include/spdlog/common-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaymondMcGuire/sph_seepage_flows/HEAD/extlib/include/spdlog/common-inl.h -------------------------------------------------------------------------------- /extlib/include/spdlog/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaymondMcGuire/sph_seepage_flows/HEAD/extlib/include/spdlog/common.h -------------------------------------------------------------------------------- /extlib/include/spdlog/details/backtracer-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaymondMcGuire/sph_seepage_flows/HEAD/extlib/include/spdlog/details/backtracer-inl.h -------------------------------------------------------------------------------- /extlib/include/spdlog/details/backtracer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaymondMcGuire/sph_seepage_flows/HEAD/extlib/include/spdlog/details/backtracer.h -------------------------------------------------------------------------------- /extlib/include/spdlog/details/circular_q.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaymondMcGuire/sph_seepage_flows/HEAD/extlib/include/spdlog/details/circular_q.h -------------------------------------------------------------------------------- /extlib/include/spdlog/details/console_globals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaymondMcGuire/sph_seepage_flows/HEAD/extlib/include/spdlog/details/console_globals.h -------------------------------------------------------------------------------- /extlib/include/spdlog/details/file_helper-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaymondMcGuire/sph_seepage_flows/HEAD/extlib/include/spdlog/details/file_helper-inl.h -------------------------------------------------------------------------------- /extlib/include/spdlog/details/file_helper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaymondMcGuire/sph_seepage_flows/HEAD/extlib/include/spdlog/details/file_helper.h -------------------------------------------------------------------------------- /extlib/include/spdlog/details/fmt_helper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaymondMcGuire/sph_seepage_flows/HEAD/extlib/include/spdlog/details/fmt_helper.h -------------------------------------------------------------------------------- /extlib/include/spdlog/details/log_msg-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaymondMcGuire/sph_seepage_flows/HEAD/extlib/include/spdlog/details/log_msg-inl.h -------------------------------------------------------------------------------- /extlib/include/spdlog/details/log_msg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaymondMcGuire/sph_seepage_flows/HEAD/extlib/include/spdlog/details/log_msg.h -------------------------------------------------------------------------------- /extlib/include/spdlog/details/log_msg_buffer-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaymondMcGuire/sph_seepage_flows/HEAD/extlib/include/spdlog/details/log_msg_buffer-inl.h -------------------------------------------------------------------------------- /extlib/include/spdlog/details/log_msg_buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaymondMcGuire/sph_seepage_flows/HEAD/extlib/include/spdlog/details/log_msg_buffer.h -------------------------------------------------------------------------------- /extlib/include/spdlog/details/mpmc_blocking_q.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaymondMcGuire/sph_seepage_flows/HEAD/extlib/include/spdlog/details/mpmc_blocking_q.h -------------------------------------------------------------------------------- /extlib/include/spdlog/details/null_mutex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaymondMcGuire/sph_seepage_flows/HEAD/extlib/include/spdlog/details/null_mutex.h -------------------------------------------------------------------------------- /extlib/include/spdlog/details/os-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaymondMcGuire/sph_seepage_flows/HEAD/extlib/include/spdlog/details/os-inl.h -------------------------------------------------------------------------------- /extlib/include/spdlog/details/os.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaymondMcGuire/sph_seepage_flows/HEAD/extlib/include/spdlog/details/os.h -------------------------------------------------------------------------------- /extlib/include/spdlog/details/periodic_worker-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaymondMcGuire/sph_seepage_flows/HEAD/extlib/include/spdlog/details/periodic_worker-inl.h -------------------------------------------------------------------------------- /extlib/include/spdlog/details/periodic_worker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaymondMcGuire/sph_seepage_flows/HEAD/extlib/include/spdlog/details/periodic_worker.h -------------------------------------------------------------------------------- /extlib/include/spdlog/details/registry-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaymondMcGuire/sph_seepage_flows/HEAD/extlib/include/spdlog/details/registry-inl.h -------------------------------------------------------------------------------- /extlib/include/spdlog/details/registry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaymondMcGuire/sph_seepage_flows/HEAD/extlib/include/spdlog/details/registry.h -------------------------------------------------------------------------------- /extlib/include/spdlog/details/synchronous_factory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaymondMcGuire/sph_seepage_flows/HEAD/extlib/include/spdlog/details/synchronous_factory.h -------------------------------------------------------------------------------- /extlib/include/spdlog/details/tcp_client-windows.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaymondMcGuire/sph_seepage_flows/HEAD/extlib/include/spdlog/details/tcp_client-windows.h -------------------------------------------------------------------------------- /extlib/include/spdlog/details/tcp_client.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaymondMcGuire/sph_seepage_flows/HEAD/extlib/include/spdlog/details/tcp_client.h -------------------------------------------------------------------------------- /extlib/include/spdlog/details/thread_pool-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaymondMcGuire/sph_seepage_flows/HEAD/extlib/include/spdlog/details/thread_pool-inl.h -------------------------------------------------------------------------------- /extlib/include/spdlog/details/thread_pool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaymondMcGuire/sph_seepage_flows/HEAD/extlib/include/spdlog/details/thread_pool.h -------------------------------------------------------------------------------- /extlib/include/spdlog/details/windows_include.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaymondMcGuire/sph_seepage_flows/HEAD/extlib/include/spdlog/details/windows_include.h -------------------------------------------------------------------------------- /extlib/include/spdlog/fmt/bin_to_hex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaymondMcGuire/sph_seepage_flows/HEAD/extlib/include/spdlog/fmt/bin_to_hex.h -------------------------------------------------------------------------------- /extlib/include/spdlog/fmt/bundled/LICENSE.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaymondMcGuire/sph_seepage_flows/HEAD/extlib/include/spdlog/fmt/bundled/LICENSE.rst -------------------------------------------------------------------------------- /extlib/include/spdlog/fmt/bundled/chrono.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaymondMcGuire/sph_seepage_flows/HEAD/extlib/include/spdlog/fmt/bundled/chrono.h -------------------------------------------------------------------------------- /extlib/include/spdlog/fmt/bundled/color.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaymondMcGuire/sph_seepage_flows/HEAD/extlib/include/spdlog/fmt/bundled/color.h -------------------------------------------------------------------------------- /extlib/include/spdlog/fmt/bundled/compile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaymondMcGuire/sph_seepage_flows/HEAD/extlib/include/spdlog/fmt/bundled/compile.h -------------------------------------------------------------------------------- /extlib/include/spdlog/fmt/bundled/core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaymondMcGuire/sph_seepage_flows/HEAD/extlib/include/spdlog/fmt/bundled/core.h -------------------------------------------------------------------------------- /extlib/include/spdlog/fmt/bundled/format-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaymondMcGuire/sph_seepage_flows/HEAD/extlib/include/spdlog/fmt/bundled/format-inl.h -------------------------------------------------------------------------------- /extlib/include/spdlog/fmt/bundled/format.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaymondMcGuire/sph_seepage_flows/HEAD/extlib/include/spdlog/fmt/bundled/format.h -------------------------------------------------------------------------------- /extlib/include/spdlog/fmt/bundled/locale.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaymondMcGuire/sph_seepage_flows/HEAD/extlib/include/spdlog/fmt/bundled/locale.h -------------------------------------------------------------------------------- /extlib/include/spdlog/fmt/bundled/os.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaymondMcGuire/sph_seepage_flows/HEAD/extlib/include/spdlog/fmt/bundled/os.h -------------------------------------------------------------------------------- /extlib/include/spdlog/fmt/bundled/ostream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaymondMcGuire/sph_seepage_flows/HEAD/extlib/include/spdlog/fmt/bundled/ostream.h -------------------------------------------------------------------------------- /extlib/include/spdlog/fmt/bundled/posix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaymondMcGuire/sph_seepage_flows/HEAD/extlib/include/spdlog/fmt/bundled/posix.h -------------------------------------------------------------------------------- /extlib/include/spdlog/fmt/bundled/printf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaymondMcGuire/sph_seepage_flows/HEAD/extlib/include/spdlog/fmt/bundled/printf.h -------------------------------------------------------------------------------- /extlib/include/spdlog/fmt/bundled/ranges.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaymondMcGuire/sph_seepage_flows/HEAD/extlib/include/spdlog/fmt/bundled/ranges.h -------------------------------------------------------------------------------- /extlib/include/spdlog/fmt/chrono.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaymondMcGuire/sph_seepage_flows/HEAD/extlib/include/spdlog/fmt/chrono.h -------------------------------------------------------------------------------- /extlib/include/spdlog/fmt/fmt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaymondMcGuire/sph_seepage_flows/HEAD/extlib/include/spdlog/fmt/fmt.h -------------------------------------------------------------------------------- /extlib/include/spdlog/fmt/ostr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaymondMcGuire/sph_seepage_flows/HEAD/extlib/include/spdlog/fmt/ostr.h -------------------------------------------------------------------------------- /extlib/include/spdlog/formatter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaymondMcGuire/sph_seepage_flows/HEAD/extlib/include/spdlog/formatter.h -------------------------------------------------------------------------------- /extlib/include/spdlog/fwd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaymondMcGuire/sph_seepage_flows/HEAD/extlib/include/spdlog/fwd.h -------------------------------------------------------------------------------- /extlib/include/spdlog/logger-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaymondMcGuire/sph_seepage_flows/HEAD/extlib/include/spdlog/logger-inl.h -------------------------------------------------------------------------------- /extlib/include/spdlog/logger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaymondMcGuire/sph_seepage_flows/HEAD/extlib/include/spdlog/logger.h -------------------------------------------------------------------------------- /extlib/include/spdlog/pattern_formatter-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaymondMcGuire/sph_seepage_flows/HEAD/extlib/include/spdlog/pattern_formatter-inl.h -------------------------------------------------------------------------------- /extlib/include/spdlog/pattern_formatter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaymondMcGuire/sph_seepage_flows/HEAD/extlib/include/spdlog/pattern_formatter.h -------------------------------------------------------------------------------- /extlib/include/spdlog/sinks/android_sink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaymondMcGuire/sph_seepage_flows/HEAD/extlib/include/spdlog/sinks/android_sink.h -------------------------------------------------------------------------------- /extlib/include/spdlog/sinks/ansicolor_sink-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaymondMcGuire/sph_seepage_flows/HEAD/extlib/include/spdlog/sinks/ansicolor_sink-inl.h -------------------------------------------------------------------------------- /extlib/include/spdlog/sinks/ansicolor_sink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaymondMcGuire/sph_seepage_flows/HEAD/extlib/include/spdlog/sinks/ansicolor_sink.h -------------------------------------------------------------------------------- /extlib/include/spdlog/sinks/base_sink-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaymondMcGuire/sph_seepage_flows/HEAD/extlib/include/spdlog/sinks/base_sink-inl.h -------------------------------------------------------------------------------- /extlib/include/spdlog/sinks/base_sink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaymondMcGuire/sph_seepage_flows/HEAD/extlib/include/spdlog/sinks/base_sink.h -------------------------------------------------------------------------------- /extlib/include/spdlog/sinks/basic_file_sink-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaymondMcGuire/sph_seepage_flows/HEAD/extlib/include/spdlog/sinks/basic_file_sink-inl.h -------------------------------------------------------------------------------- /extlib/include/spdlog/sinks/basic_file_sink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaymondMcGuire/sph_seepage_flows/HEAD/extlib/include/spdlog/sinks/basic_file_sink.h -------------------------------------------------------------------------------- /extlib/include/spdlog/sinks/daily_file_sink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaymondMcGuire/sph_seepage_flows/HEAD/extlib/include/spdlog/sinks/daily_file_sink.h -------------------------------------------------------------------------------- /extlib/include/spdlog/sinks/dist_sink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaymondMcGuire/sph_seepage_flows/HEAD/extlib/include/spdlog/sinks/dist_sink.h -------------------------------------------------------------------------------- /extlib/include/spdlog/sinks/dup_filter_sink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaymondMcGuire/sph_seepage_flows/HEAD/extlib/include/spdlog/sinks/dup_filter_sink.h -------------------------------------------------------------------------------- /extlib/include/spdlog/sinks/msvc_sink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaymondMcGuire/sph_seepage_flows/HEAD/extlib/include/spdlog/sinks/msvc_sink.h -------------------------------------------------------------------------------- /extlib/include/spdlog/sinks/null_sink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaymondMcGuire/sph_seepage_flows/HEAD/extlib/include/spdlog/sinks/null_sink.h -------------------------------------------------------------------------------- /extlib/include/spdlog/sinks/ostream_sink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaymondMcGuire/sph_seepage_flows/HEAD/extlib/include/spdlog/sinks/ostream_sink.h -------------------------------------------------------------------------------- /extlib/include/spdlog/sinks/ringbuffer_sink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaymondMcGuire/sph_seepage_flows/HEAD/extlib/include/spdlog/sinks/ringbuffer_sink.h -------------------------------------------------------------------------------- /extlib/include/spdlog/sinks/rotating_file_sink-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaymondMcGuire/sph_seepage_flows/HEAD/extlib/include/spdlog/sinks/rotating_file_sink-inl.h -------------------------------------------------------------------------------- /extlib/include/spdlog/sinks/rotating_file_sink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaymondMcGuire/sph_seepage_flows/HEAD/extlib/include/spdlog/sinks/rotating_file_sink.h -------------------------------------------------------------------------------- /extlib/include/spdlog/sinks/sink-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaymondMcGuire/sph_seepage_flows/HEAD/extlib/include/spdlog/sinks/sink-inl.h -------------------------------------------------------------------------------- /extlib/include/spdlog/sinks/sink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaymondMcGuire/sph_seepage_flows/HEAD/extlib/include/spdlog/sinks/sink.h -------------------------------------------------------------------------------- /extlib/include/spdlog/sinks/stdout_color_sinks-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaymondMcGuire/sph_seepage_flows/HEAD/extlib/include/spdlog/sinks/stdout_color_sinks-inl.h -------------------------------------------------------------------------------- /extlib/include/spdlog/sinks/stdout_color_sinks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaymondMcGuire/sph_seepage_flows/HEAD/extlib/include/spdlog/sinks/stdout_color_sinks.h -------------------------------------------------------------------------------- /extlib/include/spdlog/sinks/stdout_sinks-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaymondMcGuire/sph_seepage_flows/HEAD/extlib/include/spdlog/sinks/stdout_sinks-inl.h -------------------------------------------------------------------------------- /extlib/include/spdlog/sinks/stdout_sinks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaymondMcGuire/sph_seepage_flows/HEAD/extlib/include/spdlog/sinks/stdout_sinks.h -------------------------------------------------------------------------------- /extlib/include/spdlog/sinks/syslog_sink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaymondMcGuire/sph_seepage_flows/HEAD/extlib/include/spdlog/sinks/syslog_sink.h -------------------------------------------------------------------------------- /extlib/include/spdlog/sinks/systemd_sink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaymondMcGuire/sph_seepage_flows/HEAD/extlib/include/spdlog/sinks/systemd_sink.h -------------------------------------------------------------------------------- /extlib/include/spdlog/sinks/tcp_sink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaymondMcGuire/sph_seepage_flows/HEAD/extlib/include/spdlog/sinks/tcp_sink.h -------------------------------------------------------------------------------- /extlib/include/spdlog/sinks/win_eventlog_sink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaymondMcGuire/sph_seepage_flows/HEAD/extlib/include/spdlog/sinks/win_eventlog_sink.h -------------------------------------------------------------------------------- /extlib/include/spdlog/sinks/wincolor_sink-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaymondMcGuire/sph_seepage_flows/HEAD/extlib/include/spdlog/sinks/wincolor_sink-inl.h -------------------------------------------------------------------------------- /extlib/include/spdlog/sinks/wincolor_sink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaymondMcGuire/sph_seepage_flows/HEAD/extlib/include/spdlog/sinks/wincolor_sink.h -------------------------------------------------------------------------------- /extlib/include/spdlog/spdlog-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaymondMcGuire/sph_seepage_flows/HEAD/extlib/include/spdlog/spdlog-inl.h -------------------------------------------------------------------------------- /extlib/include/spdlog/spdlog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaymondMcGuire/sph_seepage_flows/HEAD/extlib/include/spdlog/spdlog.h -------------------------------------------------------------------------------- /extlib/include/spdlog/stopwatch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaymondMcGuire/sph_seepage_flows/HEAD/extlib/include/spdlog/stopwatch.h -------------------------------------------------------------------------------- /extlib/include/spdlog/tweakme.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaymondMcGuire/sph_seepage_flows/HEAD/extlib/include/spdlog/tweakme.h -------------------------------------------------------------------------------- /extlib/include/spdlog/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaymondMcGuire/sph_seepage_flows/HEAD/extlib/include/spdlog/version.h -------------------------------------------------------------------------------- /extlib/lib/partio.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaymondMcGuire/sph_seepage_flows/HEAD/extlib/lib/partio.lib -------------------------------------------------------------------------------- /extlib/lib/partiod.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaymondMcGuire/sph_seepage_flows/HEAD/extlib/lib/partiod.lib -------------------------------------------------------------------------------- /houdini_template/demo.hipnc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaymondMcGuire/sph_seepage_flows/HEAD/houdini_template/demo.hipnc -------------------------------------------------------------------------------- /pics/teaser.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaymondMcGuire/sph_seepage_flows/HEAD/pics/teaser.png -------------------------------------------------------------------------------- /resources/bgeo/bunny/bunny.bgeo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaymondMcGuire/sph_seepage_flows/HEAD/resources/bgeo/bunny/bunny.bgeo -------------------------------------------------------------------------------- /scripts/actions/install_cuda_ubuntu.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaymondMcGuire/sph_seepage_flows/HEAD/scripts/actions/install_cuda_ubuntu.sh -------------------------------------------------------------------------------- /scripts/actions/install_cuda_windows.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaymondMcGuire/sph_seepage_flows/HEAD/scripts/actions/install_cuda_windows.ps1 -------------------------------------------------------------------------------- /scripts/build_vs2015_win64.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaymondMcGuire/sph_seepage_flows/HEAD/scripts/build_vs2015_win64.bat -------------------------------------------------------------------------------- /scripts/build_vs2017_win64.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaymondMcGuire/sph_seepage_flows/HEAD/scripts/build_vs2017_win64.bat -------------------------------------------------------------------------------- /scripts/build_vs2019_win64.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaymondMcGuire/sph_seepage_flows/HEAD/scripts/build_vs2019_win64.bat -------------------------------------------------------------------------------- /scripts/build_vs2022_win64.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaymondMcGuire/sph_seepage_flows/HEAD/scripts/build_vs2022_win64.bat -------------------------------------------------------------------------------- /scripts/ffmpeg/assemble_exr.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaymondMcGuire/sph_seepage_flows/HEAD/scripts/ffmpeg/assemble_exr.bat -------------------------------------------------------------------------------- /scripts/ffmpeg/assemble_exr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaymondMcGuire/sph_seepage_flows/HEAD/scripts/ffmpeg/assemble_exr.py -------------------------------------------------------------------------------- /seepage_flows/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaymondMcGuire/sph_seepage_flows/HEAD/seepage_flows/CMakeLists.txt -------------------------------------------------------------------------------- /seepage_flows/include/cuda/cuda_helper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaymondMcGuire/sph_seepage_flows/HEAD/seepage_flows/include/cuda/cuda_helper.h -------------------------------------------------------------------------------- /seepage_flows/include/kiri_define.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaymondMcGuire/sph_seepage_flows/HEAD/seepage_flows/include/kiri_define.h -------------------------------------------------------------------------------- /seepage_flows/include/kiri_log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaymondMcGuire/sph_seepage_flows/HEAD/seepage_flows/include/kiri_log.h -------------------------------------------------------------------------------- /seepage_flows/include/kiri_pch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaymondMcGuire/sph_seepage_flows/HEAD/seepage_flows/include/kiri_pch.h -------------------------------------------------------------------------------- /seepage_flows/include/kiri_timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaymondMcGuire/sph_seepage_flows/HEAD/seepage_flows/include/kiri_timer.h -------------------------------------------------------------------------------- /seepage_flows/include/kiri_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaymondMcGuire/sph_seepage_flows/HEAD/seepage_flows/include/kiri_utils.h -------------------------------------------------------------------------------- /seepage_flows/src/kiri_log.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaymondMcGuire/sph_seepage_flows/HEAD/seepage_flows/src/kiri_log.cpp -------------------------------------------------------------------------------- /seepage_flows/src/seepageflow/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaymondMcGuire/sph_seepage_flows/HEAD/seepage_flows/src/seepageflow/main.cpp -------------------------------------------------------------------------------- /seepage_flows_cuda/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaymondMcGuire/sph_seepage_flows/HEAD/seepage_flows_cuda/CMakeLists.txt -------------------------------------------------------------------------------- /seepage_flows_cuda/include/kiri_pbs_cuda/cuda_common.cuh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaymondMcGuire/sph_seepage_flows/HEAD/seepage_flows_cuda/include/kiri_pbs_cuda/cuda_common.cuh -------------------------------------------------------------------------------- /seepage_flows_cuda/include/kiri_pbs_cuda/cuda_helper/helper_cuda.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaymondMcGuire/sph_seepage_flows/HEAD/seepage_flows_cuda/include/kiri_pbs_cuda/cuda_helper/helper_cuda.h -------------------------------------------------------------------------------- /seepage_flows_cuda/include/kiri_pbs_cuda/cuda_helper/helper_math.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaymondMcGuire/sph_seepage_flows/HEAD/seepage_flows_cuda/include/kiri_pbs_cuda/cuda_helper/helper_math.h -------------------------------------------------------------------------------- /seepage_flows_cuda/include/kiri_pbs_cuda/cuda_helper/helper_string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaymondMcGuire/sph_seepage_flows/HEAD/seepage_flows_cuda/include/kiri_pbs_cuda/cuda_helper/helper_string.h -------------------------------------------------------------------------------- /seepage_flows_cuda/include/kiri_pbs_cuda/cuda_searcher_struct.cuh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaymondMcGuire/sph_seepage_flows/HEAD/seepage_flows_cuda/include/kiri_pbs_cuda/cuda_searcher_struct.cuh -------------------------------------------------------------------------------- /seepage_flows_cuda/include/kiri_pbs_cuda/data/cuda_array.cuh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaymondMcGuire/sph_seepage_flows/HEAD/seepage_flows_cuda/include/kiri_pbs_cuda/data/cuda_array.cuh -------------------------------------------------------------------------------- /seepage_flows_cuda/include/kiri_pbs_cuda/data/cuda_boundary_params.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaymondMcGuire/sph_seepage_flows/HEAD/seepage_flows_cuda/include/kiri_pbs_cuda/data/cuda_boundary_params.h -------------------------------------------------------------------------------- /seepage_flows_cuda/include/kiri_pbs_cuda/data/cuda_seepageflow_params.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaymondMcGuire/sph_seepage_flows/HEAD/seepage_flows_cuda/include/kiri_pbs_cuda/data/cuda_seepageflow_params.h -------------------------------------------------------------------------------- /seepage_flows_cuda/include/kiri_pbs_cuda/data/cuda_sph_params.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaymondMcGuire/sph_seepage_flows/HEAD/seepage_flows_cuda/include/kiri_pbs_cuda/data/cuda_sph_params.h -------------------------------------------------------------------------------- /seepage_flows_cuda/include/kiri_pbs_cuda/emitter/cuda_boundary_emitter.cuh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaymondMcGuire/sph_seepage_flows/HEAD/seepage_flows_cuda/include/kiri_pbs_cuda/emitter/cuda_boundary_emitter.cuh -------------------------------------------------------------------------------- /seepage_flows_cuda/include/kiri_pbs_cuda/emitter/cuda_emitter.cuh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaymondMcGuire/sph_seepage_flows/HEAD/seepage_flows_cuda/include/kiri_pbs_cuda/emitter/cuda_emitter.cuh -------------------------------------------------------------------------------- /seepage_flows_cuda/include/kiri_pbs_cuda/emitter/cuda_volume_emitter.cuh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaymondMcGuire/sph_seepage_flows/HEAD/seepage_flows_cuda/include/kiri_pbs_cuda/emitter/cuda_volume_emitter.cuh -------------------------------------------------------------------------------- /seepage_flows_cuda/include/kiri_pbs_cuda/kernel/cuda_sph_kernel.cuh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaymondMcGuire/sph_seepage_flows/HEAD/seepage_flows_cuda/include/kiri_pbs_cuda/kernel/cuda_sph_kernel.cuh -------------------------------------------------------------------------------- /seepage_flows_cuda/include/kiri_pbs_cuda/kiri_pbs_pch.cuh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaymondMcGuire/sph_seepage_flows/HEAD/seepage_flows_cuda/include/kiri_pbs_cuda/kiri_pbs_pch.cuh -------------------------------------------------------------------------------- /seepage_flows_cuda/include/kiri_pbs_cuda/math/cuda_math_color_space.cuh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaymondMcGuire/sph_seepage_flows/HEAD/seepage_flows_cuda/include/kiri_pbs_cuda/math/cuda_math_color_space.cuh -------------------------------------------------------------------------------- /seepage_flows_cuda/include/kiri_pbs_cuda/math/cuda_math_colormap.cuh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaymondMcGuire/sph_seepage_flows/HEAD/seepage_flows_cuda/include/kiri_pbs_cuda/math/cuda_math_colormap.cuh -------------------------------------------------------------------------------- /seepage_flows_cuda/include/kiri_pbs_cuda/math/cuda_math_quaternion.cuh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaymondMcGuire/sph_seepage_flows/HEAD/seepage_flows_cuda/include/kiri_pbs_cuda/math/cuda_math_quaternion.cuh -------------------------------------------------------------------------------- /seepage_flows_cuda/include/kiri_pbs_cuda/math/cuda_math_tensor.cuh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaymondMcGuire/sph_seepage_flows/HEAD/seepage_flows_cuda/include/kiri_pbs_cuda/math/cuda_math_tensor.cuh -------------------------------------------------------------------------------- /seepage_flows_cuda/include/kiri_pbs_cuda/math/cuda_math_utils.cuh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaymondMcGuire/sph_seepage_flows/HEAD/seepage_flows_cuda/include/kiri_pbs_cuda/math/cuda_math_utils.cuh -------------------------------------------------------------------------------- /seepage_flows_cuda/include/kiri_pbs_cuda/math/cuda_pbs_math.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaymondMcGuire/sph_seepage_flows/HEAD/seepage_flows_cuda/include/kiri_pbs_cuda/math/cuda_pbs_math.h -------------------------------------------------------------------------------- /seepage_flows_cuda/include/kiri_pbs_cuda/particle/cuda_boundary_particles.cuh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaymondMcGuire/sph_seepage_flows/HEAD/seepage_flows_cuda/include/kiri_pbs_cuda/particle/cuda_boundary_particles.cuh -------------------------------------------------------------------------------- /seepage_flows_cuda/include/kiri_pbs_cuda/particle/cuda_particles.cuh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaymondMcGuire/sph_seepage_flows/HEAD/seepage_flows_cuda/include/kiri_pbs_cuda/particle/cuda_particles.cuh -------------------------------------------------------------------------------- /seepage_flows_cuda/include/kiri_pbs_cuda/particle/cuda_sf_particles.cuh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaymondMcGuire/sph_seepage_flows/HEAD/seepage_flows_cuda/include/kiri_pbs_cuda/particle/cuda_sf_particles.cuh -------------------------------------------------------------------------------- /seepage_flows_cuda/include/kiri_pbs_cuda/searcher/cuda_neighbor_searcher.cuh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaymondMcGuire/sph_seepage_flows/HEAD/seepage_flows_cuda/include/kiri_pbs_cuda/searcher/cuda_neighbor_searcher.cuh -------------------------------------------------------------------------------- /seepage_flows_cuda/include/kiri_pbs_cuda/searcher/cuda_neighbor_searcher_gpu.cuh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaymondMcGuire/sph_seepage_flows/HEAD/seepage_flows_cuda/include/kiri_pbs_cuda/searcher/cuda_neighbor_searcher_gpu.cuh -------------------------------------------------------------------------------- /seepage_flows_cuda/include/kiri_pbs_cuda/solver/cuda_base_solver.cuh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaymondMcGuire/sph_seepage_flows/HEAD/seepage_flows_cuda/include/kiri_pbs_cuda/solver/cuda_base_solver.cuh -------------------------------------------------------------------------------- /seepage_flows_cuda/include/kiri_pbs_cuda/solver/cuda_solver_common_gpu.cuh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaymondMcGuire/sph_seepage_flows/HEAD/seepage_flows_cuda/include/kiri_pbs_cuda/solver/cuda_solver_common_gpu.cuh -------------------------------------------------------------------------------- /seepage_flows_cuda/include/kiri_pbs_cuda/solver/dem/cuda_dem_solver_common_gpu.cuh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaymondMcGuire/sph_seepage_flows/HEAD/seepage_flows_cuda/include/kiri_pbs_cuda/solver/dem/cuda_dem_solver_common_gpu.cuh -------------------------------------------------------------------------------- /seepage_flows_cuda/include/kiri_pbs_cuda/solver/seepageflow/cuda_sf_utils.cuh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaymondMcGuire/sph_seepage_flows/HEAD/seepage_flows_cuda/include/kiri_pbs_cuda/solver/seepageflow/cuda_sf_utils.cuh -------------------------------------------------------------------------------- /seepage_flows_cuda/include/kiri_pbs_cuda/solver/seepageflow/cuda_sph_sf_solver.cuh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaymondMcGuire/sph_seepage_flows/HEAD/seepage_flows_cuda/include/kiri_pbs_cuda/solver/seepageflow/cuda_sph_sf_solver.cuh -------------------------------------------------------------------------------- /seepage_flows_cuda/include/kiri_pbs_cuda/solver/seepageflow/cuda_sph_sf_solver_gpu.cuh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaymondMcGuire/sph_seepage_flows/HEAD/seepage_flows_cuda/include/kiri_pbs_cuda/solver/seepageflow/cuda_sph_sf_solver_gpu.cuh -------------------------------------------------------------------------------- /seepage_flows_cuda/include/kiri_pbs_cuda/solver/seepageflow/cuda_wcsph_sf_solver.cuh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaymondMcGuire/sph_seepage_flows/HEAD/seepage_flows_cuda/include/kiri_pbs_cuda/solver/seepageflow/cuda_wcsph_sf_solver.cuh -------------------------------------------------------------------------------- /seepage_flows_cuda/include/kiri_pbs_cuda/solver/seepageflow/cuda_wcsph_sf_solver_gpu.cuh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaymondMcGuire/sph_seepage_flows/HEAD/seepage_flows_cuda/include/kiri_pbs_cuda/solver/seepageflow/cuda_wcsph_sf_solver_gpu.cuh -------------------------------------------------------------------------------- /seepage_flows_cuda/include/kiri_pbs_cuda/solver/sph/cuda_sph_solver_common_gpu.cuh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaymondMcGuire/sph_seepage_flows/HEAD/seepage_flows_cuda/include/kiri_pbs_cuda/solver/sph/cuda_sph_solver_common_gpu.cuh -------------------------------------------------------------------------------- /seepage_flows_cuda/include/kiri_pbs_cuda/system/cuda_base_system.cuh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaymondMcGuire/sph_seepage_flows/HEAD/seepage_flows_cuda/include/kiri_pbs_cuda/system/cuda_base_system.cuh -------------------------------------------------------------------------------- /seepage_flows_cuda/include/kiri_pbs_cuda/system/cuda_base_system_gpu.cuh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaymondMcGuire/sph_seepage_flows/HEAD/seepage_flows_cuda/include/kiri_pbs_cuda/system/cuda_base_system_gpu.cuh -------------------------------------------------------------------------------- /seepage_flows_cuda/include/kiri_pbs_cuda/system/cuda_sf_system.cuh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaymondMcGuire/sph_seepage_flows/HEAD/seepage_flows_cuda/include/kiri_pbs_cuda/system/cuda_sf_system.cuh -------------------------------------------------------------------------------- /seepage_flows_cuda/include/kiri_pbs_cuda/system/cuda_sph_system_gpu.cuh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaymondMcGuire/sph_seepage_flows/HEAD/seepage_flows_cuda/include/kiri_pbs_cuda/system/cuda_sph_system_gpu.cuh -------------------------------------------------------------------------------- /seepage_flows_cuda/include/kiri_pbs_cuda/thrust_helper/helper_thrust.cuh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaymondMcGuire/sph_seepage_flows/HEAD/seepage_flows_cuda/include/kiri_pbs_cuda/thrust_helper/helper_thrust.cuh -------------------------------------------------------------------------------- /seepage_flows_cuda/include/sf_cuda_define.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaymondMcGuire/sph_seepage_flows/HEAD/seepage_flows_cuda/include/sf_cuda_define.h -------------------------------------------------------------------------------- /seepage_flows_cuda/src/kiri_pbs_cuda/data/cuda_boundary_params.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaymondMcGuire/sph_seepage_flows/HEAD/seepage_flows_cuda/src/kiri_pbs_cuda/data/cuda_boundary_params.cpp -------------------------------------------------------------------------------- /seepage_flows_cuda/src/kiri_pbs_cuda/data/cuda_seepageflow_params.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaymondMcGuire/sph_seepage_flows/HEAD/seepage_flows_cuda/src/kiri_pbs_cuda/data/cuda_seepageflow_params.cpp -------------------------------------------------------------------------------- /seepage_flows_cuda/src/kiri_pbs_cuda/data/cuda_sph_params.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaymondMcGuire/sph_seepage_flows/HEAD/seepage_flows_cuda/src/kiri_pbs_cuda/data/cuda_sph_params.cpp -------------------------------------------------------------------------------- /seepage_flows_cuda/src/kiri_pbs_cuda/emitter/cuda_boundary_emitter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaymondMcGuire/sph_seepage_flows/HEAD/seepage_flows_cuda/src/kiri_pbs_cuda/emitter/cuda_boundary_emitter.cpp -------------------------------------------------------------------------------- /seepage_flows_cuda/src/kiri_pbs_cuda/emitter/cuda_emitter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaymondMcGuire/sph_seepage_flows/HEAD/seepage_flows_cuda/src/kiri_pbs_cuda/emitter/cuda_emitter.cpp -------------------------------------------------------------------------------- /seepage_flows_cuda/src/kiri_pbs_cuda/emitter/cuda_volume_emitter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaymondMcGuire/sph_seepage_flows/HEAD/seepage_flows_cuda/src/kiri_pbs_cuda/emitter/cuda_volume_emitter.cpp -------------------------------------------------------------------------------- /seepage_flows_cuda/src/kiri_pbs_cuda/particle/cuda_sf_particles.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaymondMcGuire/sph_seepage_flows/HEAD/seepage_flows_cuda/src/kiri_pbs_cuda/particle/cuda_sf_particles.cu -------------------------------------------------------------------------------- /seepage_flows_cuda/src/kiri_pbs_cuda/searcher/cuda_neighbor_searcher.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaymondMcGuire/sph_seepage_flows/HEAD/seepage_flows_cuda/src/kiri_pbs_cuda/searcher/cuda_neighbor_searcher.cu -------------------------------------------------------------------------------- /seepage_flows_cuda/src/kiri_pbs_cuda/solver/seepage_flow/cuda_sph_sf_solver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaymondMcGuire/sph_seepage_flows/HEAD/seepage_flows_cuda/src/kiri_pbs_cuda/solver/seepage_flow/cuda_sph_sf_solver.cpp -------------------------------------------------------------------------------- /seepage_flows_cuda/src/kiri_pbs_cuda/solver/seepage_flow/cuda_sph_sf_solver.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaymondMcGuire/sph_seepage_flows/HEAD/seepage_flows_cuda/src/kiri_pbs_cuda/solver/seepage_flow/cuda_sph_sf_solver.cu -------------------------------------------------------------------------------- /seepage_flows_cuda/src/kiri_pbs_cuda/solver/seepage_flow/cuda_wcsph_sf_solver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaymondMcGuire/sph_seepage_flows/HEAD/seepage_flows_cuda/src/kiri_pbs_cuda/solver/seepage_flow/cuda_wcsph_sf_solver.cpp -------------------------------------------------------------------------------- /seepage_flows_cuda/src/kiri_pbs_cuda/solver/seepage_flow/cuda_wcsph_sf_solver.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaymondMcGuire/sph_seepage_flows/HEAD/seepage_flows_cuda/src/kiri_pbs_cuda/solver/seepage_flow/cuda_wcsph_sf_solver.cu -------------------------------------------------------------------------------- /seepage_flows_cuda/src/kiri_pbs_cuda/system/cuda_base_system.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaymondMcGuire/sph_seepage_flows/HEAD/seepage_flows_cuda/src/kiri_pbs_cuda/system/cuda_base_system.cu -------------------------------------------------------------------------------- /seepage_flows_cuda/src/kiri_pbs_cuda/system/cuda_sf_system.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaymondMcGuire/sph_seepage_flows/HEAD/seepage_flows_cuda/src/kiri_pbs_cuda/system/cuda_sf_system.cu --------------------------------------------------------------------------------