├── .gitattributes ├── .github └── workflows │ └── ci.yml ├── LICENSE ├── README.md └── src ├── demo.py └── solver.py /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertosantini/python-fluid/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertosantini/python-fluid/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertosantini/python-fluid/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertosantini/python-fluid/HEAD/README.md -------------------------------------------------------------------------------- /src/demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertosantini/python-fluid/HEAD/src/demo.py -------------------------------------------------------------------------------- /src/solver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertosantini/python-fluid/HEAD/src/solver.py --------------------------------------------------------------------------------