├── .gitignore ├── LICENSE ├── README.md ├── assets ├── pylint.svg ├── realtime.gif └── standingWave.gif ├── requirements-dev.txt ├── requirements.txt ├── setup.py └── src └── pythonsph ├── __init__.py ├── __main__.py ├── config.py ├── particle.py └── physics.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexandreSajus/Python-Fluid-Simulation/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexandreSajus/Python-Fluid-Simulation/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexandreSajus/Python-Fluid-Simulation/HEAD/README.md -------------------------------------------------------------------------------- /assets/pylint.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexandreSajus/Python-Fluid-Simulation/HEAD/assets/pylint.svg -------------------------------------------------------------------------------- /assets/realtime.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexandreSajus/Python-Fluid-Simulation/HEAD/assets/realtime.gif -------------------------------------------------------------------------------- /assets/standingWave.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexandreSajus/Python-Fluid-Simulation/HEAD/assets/standingWave.gif -------------------------------------------------------------------------------- /requirements-dev.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexandreSajus/Python-Fluid-Simulation/HEAD/requirements-dev.txt -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | numpy 2 | matplotlib -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexandreSajus/Python-Fluid-Simulation/HEAD/setup.py -------------------------------------------------------------------------------- /src/pythonsph/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexandreSajus/Python-Fluid-Simulation/HEAD/src/pythonsph/__init__.py -------------------------------------------------------------------------------- /src/pythonsph/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexandreSajus/Python-Fluid-Simulation/HEAD/src/pythonsph/__main__.py -------------------------------------------------------------------------------- /src/pythonsph/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexandreSajus/Python-Fluid-Simulation/HEAD/src/pythonsph/config.py -------------------------------------------------------------------------------- /src/pythonsph/particle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexandreSajus/Python-Fluid-Simulation/HEAD/src/pythonsph/particle.py -------------------------------------------------------------------------------- /src/pythonsph/physics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexandreSajus/Python-Fluid-Simulation/HEAD/src/pythonsph/physics.py --------------------------------------------------------------------------------