├── .gitignore ├── LICENSE ├── README.md └── src └── python ├── Eulerian_method.py ├── animation.py ├── basic_types.py ├── colliders.py ├── fluid_solver.py ├── geometry.py ├── helper_functions.py ├── main.py ├── smoke_animation.py ├── smoke_solver.py └── utility.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JYLeeLYJ/Fluid-Engine-Dev-on-Taichi/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JYLeeLYJ/Fluid-Engine-Dev-on-Taichi/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JYLeeLYJ/Fluid-Engine-Dev-on-Taichi/HEAD/README.md -------------------------------------------------------------------------------- /src/python/Eulerian_method.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JYLeeLYJ/Fluid-Engine-Dev-on-Taichi/HEAD/src/python/Eulerian_method.py -------------------------------------------------------------------------------- /src/python/animation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JYLeeLYJ/Fluid-Engine-Dev-on-Taichi/HEAD/src/python/animation.py -------------------------------------------------------------------------------- /src/python/basic_types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JYLeeLYJ/Fluid-Engine-Dev-on-Taichi/HEAD/src/python/basic_types.py -------------------------------------------------------------------------------- /src/python/colliders.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JYLeeLYJ/Fluid-Engine-Dev-on-Taichi/HEAD/src/python/colliders.py -------------------------------------------------------------------------------- /src/python/fluid_solver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JYLeeLYJ/Fluid-Engine-Dev-on-Taichi/HEAD/src/python/fluid_solver.py -------------------------------------------------------------------------------- /src/python/geometry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JYLeeLYJ/Fluid-Engine-Dev-on-Taichi/HEAD/src/python/geometry.py -------------------------------------------------------------------------------- /src/python/helper_functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JYLeeLYJ/Fluid-Engine-Dev-on-Taichi/HEAD/src/python/helper_functions.py -------------------------------------------------------------------------------- /src/python/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JYLeeLYJ/Fluid-Engine-Dev-on-Taichi/HEAD/src/python/main.py -------------------------------------------------------------------------------- /src/python/smoke_animation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JYLeeLYJ/Fluid-Engine-Dev-on-Taichi/HEAD/src/python/smoke_animation.py -------------------------------------------------------------------------------- /src/python/smoke_solver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JYLeeLYJ/Fluid-Engine-Dev-on-Taichi/HEAD/src/python/smoke_solver.py -------------------------------------------------------------------------------- /src/python/utility.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JYLeeLYJ/Fluid-Engine-Dev-on-Taichi/HEAD/src/python/utility.py --------------------------------------------------------------------------------