├── .gitattributes ├── LICENSE.md ├── README.md ├── bin ├── bla_16x65x16_2 └── bla_64x65x64_2 ├── conf ├── LC64_scale_t300_g64.yml ├── LC64_trained.yml ├── MC16_scale_t300_g64.yml ├── MC16_trained.yml ├── README.md ├── default_custom_policy.yml ├── default_planes.yml └── opposition.yml ├── data ├── README.md ├── baseline │ ├── init_16x65x16_minchan_000.u │ └── init_64x65x64_2pi_000.u └── policy_opposition.py ├── notebooks ├── evaluation-postprocessing.ipynb ├── postprocessingutils.py └── training-postprocessing.ipynb ├── runs ├── 100 │ ├── re_hist_opp16.npz │ └── re_hist_opp64.npz ├── 101 │ ├── re_hist_bsl16.npz │ └── re_hist_bsl64.npz ├── 1672737751 │ ├── logs │ │ └── 1672737751-rl_model_282624000_steps.zip │ └── re_hist_282624064.npz ├── .gitignore └── README.md ├── setup.py └── src ├── .gitignore ├── README.md ├── configuration.py ├── evaluate-script.sh ├── evaluate.py ├── run.py ├── simson_MARL ├── __init__.py └── __main__.py ├── simson_marl.py └── simsonutils3D.py /.gitattributes: -------------------------------------------------------------------------------- 1 | *.ipynb linguist-detectable=false 2 | -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KTH-FlowAI/MARL-drag-reduction-in-wall-bounded-flows/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KTH-FlowAI/MARL-drag-reduction-in-wall-bounded-flows/HEAD/README.md -------------------------------------------------------------------------------- /bin/bla_16x65x16_2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KTH-FlowAI/MARL-drag-reduction-in-wall-bounded-flows/HEAD/bin/bla_16x65x16_2 -------------------------------------------------------------------------------- /bin/bla_64x65x64_2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KTH-FlowAI/MARL-drag-reduction-in-wall-bounded-flows/HEAD/bin/bla_64x65x64_2 -------------------------------------------------------------------------------- /conf/LC64_scale_t300_g64.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KTH-FlowAI/MARL-drag-reduction-in-wall-bounded-flows/HEAD/conf/LC64_scale_t300_g64.yml -------------------------------------------------------------------------------- /conf/LC64_trained.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KTH-FlowAI/MARL-drag-reduction-in-wall-bounded-flows/HEAD/conf/LC64_trained.yml -------------------------------------------------------------------------------- /conf/MC16_scale_t300_g64.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KTH-FlowAI/MARL-drag-reduction-in-wall-bounded-flows/HEAD/conf/MC16_scale_t300_g64.yml -------------------------------------------------------------------------------- /conf/MC16_trained.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KTH-FlowAI/MARL-drag-reduction-in-wall-bounded-flows/HEAD/conf/MC16_trained.yml -------------------------------------------------------------------------------- /conf/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KTH-FlowAI/MARL-drag-reduction-in-wall-bounded-flows/HEAD/conf/README.md -------------------------------------------------------------------------------- /conf/default_custom_policy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KTH-FlowAI/MARL-drag-reduction-in-wall-bounded-flows/HEAD/conf/default_custom_policy.yml -------------------------------------------------------------------------------- /conf/default_planes.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KTH-FlowAI/MARL-drag-reduction-in-wall-bounded-flows/HEAD/conf/default_planes.yml -------------------------------------------------------------------------------- /conf/opposition.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KTH-FlowAI/MARL-drag-reduction-in-wall-bounded-flows/HEAD/conf/opposition.yml -------------------------------------------------------------------------------- /data/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KTH-FlowAI/MARL-drag-reduction-in-wall-bounded-flows/HEAD/data/README.md -------------------------------------------------------------------------------- /data/baseline/init_16x65x16_minchan_000.u: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KTH-FlowAI/MARL-drag-reduction-in-wall-bounded-flows/HEAD/data/baseline/init_16x65x16_minchan_000.u -------------------------------------------------------------------------------- /data/baseline/init_64x65x64_2pi_000.u: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KTH-FlowAI/MARL-drag-reduction-in-wall-bounded-flows/HEAD/data/baseline/init_64x65x64_2pi_000.u -------------------------------------------------------------------------------- /data/policy_opposition.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KTH-FlowAI/MARL-drag-reduction-in-wall-bounded-flows/HEAD/data/policy_opposition.py -------------------------------------------------------------------------------- /notebooks/evaluation-postprocessing.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KTH-FlowAI/MARL-drag-reduction-in-wall-bounded-flows/HEAD/notebooks/evaluation-postprocessing.ipynb -------------------------------------------------------------------------------- /notebooks/postprocessingutils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KTH-FlowAI/MARL-drag-reduction-in-wall-bounded-flows/HEAD/notebooks/postprocessingutils.py -------------------------------------------------------------------------------- /notebooks/training-postprocessing.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KTH-FlowAI/MARL-drag-reduction-in-wall-bounded-flows/HEAD/notebooks/training-postprocessing.ipynb -------------------------------------------------------------------------------- /runs/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /runs/100/re_hist_opp16.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KTH-FlowAI/MARL-drag-reduction-in-wall-bounded-flows/HEAD/runs/100/re_hist_opp16.npz -------------------------------------------------------------------------------- /runs/100/re_hist_opp64.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KTH-FlowAI/MARL-drag-reduction-in-wall-bounded-flows/HEAD/runs/100/re_hist_opp64.npz -------------------------------------------------------------------------------- /runs/101/re_hist_bsl16.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KTH-FlowAI/MARL-drag-reduction-in-wall-bounded-flows/HEAD/runs/101/re_hist_bsl16.npz -------------------------------------------------------------------------------- /runs/101/re_hist_bsl64.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KTH-FlowAI/MARL-drag-reduction-in-wall-bounded-flows/HEAD/runs/101/re_hist_bsl64.npz -------------------------------------------------------------------------------- /runs/1672737751/logs/1672737751-rl_model_282624000_steps.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KTH-FlowAI/MARL-drag-reduction-in-wall-bounded-flows/HEAD/runs/1672737751/logs/1672737751-rl_model_282624000_steps.zip -------------------------------------------------------------------------------- /runs/1672737751/re_hist_282624064.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KTH-FlowAI/MARL-drag-reduction-in-wall-bounded-flows/HEAD/runs/1672737751/re_hist_282624064.npz -------------------------------------------------------------------------------- /runs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KTH-FlowAI/MARL-drag-reduction-in-wall-bounded-flows/HEAD/runs/README.md -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KTH-FlowAI/MARL-drag-reduction-in-wall-bounded-flows/HEAD/setup.py -------------------------------------------------------------------------------- /src/.gitignore: -------------------------------------------------------------------------------- 1 | logs 2 | *.out 3 | -------------------------------------------------------------------------------- /src/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KTH-FlowAI/MARL-drag-reduction-in-wall-bounded-flows/HEAD/src/README.md -------------------------------------------------------------------------------- /src/configuration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KTH-FlowAI/MARL-drag-reduction-in-wall-bounded-flows/HEAD/src/configuration.py -------------------------------------------------------------------------------- /src/evaluate-script.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KTH-FlowAI/MARL-drag-reduction-in-wall-bounded-flows/HEAD/src/evaluate-script.sh -------------------------------------------------------------------------------- /src/evaluate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KTH-FlowAI/MARL-drag-reduction-in-wall-bounded-flows/HEAD/src/evaluate.py -------------------------------------------------------------------------------- /src/run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KTH-FlowAI/MARL-drag-reduction-in-wall-bounded-flows/HEAD/src/run.py -------------------------------------------------------------------------------- /src/simson_MARL/__init__.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python3 2 | # -*- coding: utf-8 -*- 3 | 4 | -------------------------------------------------------------------------------- /src/simson_MARL/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KTH-FlowAI/MARL-drag-reduction-in-wall-bounded-flows/HEAD/src/simson_MARL/__main__.py -------------------------------------------------------------------------------- /src/simson_marl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KTH-FlowAI/MARL-drag-reduction-in-wall-bounded-flows/HEAD/src/simson_marl.py -------------------------------------------------------------------------------- /src/simsonutils3D.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KTH-FlowAI/MARL-drag-reduction-in-wall-bounded-flows/HEAD/src/simsonutils3D.py --------------------------------------------------------------------------------