Module for simulating particles settling in non-Newtonian fluid. It builds the source code from a python code to C, using cython for performance fixes.
To setup your environment to run the scripts, it's required Python and Poetry.
Poetry can be installed by running
pip install poetry
After that, to install the project dependencies
poetry install
And then run scripts using
poetry run <command-you-want-to-run>
# Such as
poetry run python cythonExtension.py build_ext --inplace # To build cython code
poetry run python MVF\PowerLawFluid.py # To run the simulation
...