├── .github └── workflows │ └── pylint.yml ├── .gitignore ├── README.md ├── bc.py ├── d2q9.py ├── lid_driven_cavity.py └── sim_params.py /.github/workflows/pylint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeToLearnScience/d2q9_zero_for_loop/HEAD/.github/workflows/pylint.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .idea 2 | __pycache__ 3 | *.png 4 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeToLearnScience/d2q9_zero_for_loop/HEAD/README.md -------------------------------------------------------------------------------- /bc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeToLearnScience/d2q9_zero_for_loop/HEAD/bc.py -------------------------------------------------------------------------------- /d2q9.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeToLearnScience/d2q9_zero_for_loop/HEAD/d2q9.py -------------------------------------------------------------------------------- /lid_driven_cavity.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeToLearnScience/d2q9_zero_for_loop/HEAD/lid_driven_cavity.py -------------------------------------------------------------------------------- /sim_params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeToLearnScience/d2q9_zero_for_loop/HEAD/sim_params.py --------------------------------------------------------------------------------