├── .gitattributes ├── Cylinder2DFlowControlWithRL ├── .hidden ├── Env2DCylinder.py ├── RemoteEnvironmentClient.py ├── RemoteEnvironmentServer.py ├── echo_server.py ├── flow_solver.py ├── generate_msh.py ├── geometry_2d.msh ├── geometry_2d.template_geo ├── jet_bcs.py ├── launch_parallel_training.py ├── launch_servers.py ├── msh_convert.py ├── probes.py ├── script_launch_parallel.sh ├── simulation_base │ ├── env.py │ ├── make_mesh.py │ ├── mesh │ │ ├── dict_history_parameters.pkl │ │ ├── p_init.h5 │ │ ├── p_init.xdmf │ │ ├── turek_2d.geo │ │ ├── turek_2d.geo_unrolled │ │ ├── turek_2d.h5 │ │ ├── turek_2d.msh │ │ ├── turek_2d.xml │ │ ├── turek_2d_facet_region.xml │ │ ├── turek_2d_physical_region.xml │ │ ├── u_init.h5 │ │ └── u_init.xdmf │ └── start_one_server.py ├── single_runner.py └── utils.py ├── Docker ├── Code_Location_use_docker_Fenics_Tensorforce_parallel.md ├── README_container.md └── Started_training.png ├── README.md ├── container ├── cylinder2dflowcontrol_Parallel_v1.tar_part.aa ├── cylinder2dflowcontrol_Parallel_v1.tar_part.ab ├── cylinder2dflowcontrol_Parallel_v1.tar_part.ac └── cylinder2dflowcontrol_Parallel_v1.tar_part.ad └── tunneling_scripts ├── README.md ├── learning_to_tunnel └── README.md └── training_across_network ├── README.md ├── script_ssh_forward_socket.sh └── utils.py /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jerabaul29/Cylinder2DFlowControlDRLParallel/HEAD/.gitattributes -------------------------------------------------------------------------------- /Cylinder2DFlowControlWithRL/.hidden: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jerabaul29/Cylinder2DFlowControlDRLParallel/HEAD/Cylinder2DFlowControlWithRL/.hidden -------------------------------------------------------------------------------- /Cylinder2DFlowControlWithRL/Env2DCylinder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jerabaul29/Cylinder2DFlowControlDRLParallel/HEAD/Cylinder2DFlowControlWithRL/Env2DCylinder.py -------------------------------------------------------------------------------- /Cylinder2DFlowControlWithRL/RemoteEnvironmentClient.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jerabaul29/Cylinder2DFlowControlDRLParallel/HEAD/Cylinder2DFlowControlWithRL/RemoteEnvironmentClient.py -------------------------------------------------------------------------------- /Cylinder2DFlowControlWithRL/RemoteEnvironmentServer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jerabaul29/Cylinder2DFlowControlDRLParallel/HEAD/Cylinder2DFlowControlWithRL/RemoteEnvironmentServer.py -------------------------------------------------------------------------------- /Cylinder2DFlowControlWithRL/echo_server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jerabaul29/Cylinder2DFlowControlDRLParallel/HEAD/Cylinder2DFlowControlWithRL/echo_server.py -------------------------------------------------------------------------------- /Cylinder2DFlowControlWithRL/flow_solver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jerabaul29/Cylinder2DFlowControlDRLParallel/HEAD/Cylinder2DFlowControlWithRL/flow_solver.py -------------------------------------------------------------------------------- /Cylinder2DFlowControlWithRL/generate_msh.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jerabaul29/Cylinder2DFlowControlDRLParallel/HEAD/Cylinder2DFlowControlWithRL/generate_msh.py -------------------------------------------------------------------------------- /Cylinder2DFlowControlWithRL/geometry_2d.msh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jerabaul29/Cylinder2DFlowControlDRLParallel/HEAD/Cylinder2DFlowControlWithRL/geometry_2d.msh -------------------------------------------------------------------------------- /Cylinder2DFlowControlWithRL/geometry_2d.template_geo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jerabaul29/Cylinder2DFlowControlDRLParallel/HEAD/Cylinder2DFlowControlWithRL/geometry_2d.template_geo -------------------------------------------------------------------------------- /Cylinder2DFlowControlWithRL/jet_bcs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jerabaul29/Cylinder2DFlowControlDRLParallel/HEAD/Cylinder2DFlowControlWithRL/jet_bcs.py -------------------------------------------------------------------------------- /Cylinder2DFlowControlWithRL/launch_parallel_training.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jerabaul29/Cylinder2DFlowControlDRLParallel/HEAD/Cylinder2DFlowControlWithRL/launch_parallel_training.py -------------------------------------------------------------------------------- /Cylinder2DFlowControlWithRL/launch_servers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jerabaul29/Cylinder2DFlowControlDRLParallel/HEAD/Cylinder2DFlowControlWithRL/launch_servers.py -------------------------------------------------------------------------------- /Cylinder2DFlowControlWithRL/msh_convert.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jerabaul29/Cylinder2DFlowControlDRLParallel/HEAD/Cylinder2DFlowControlWithRL/msh_convert.py -------------------------------------------------------------------------------- /Cylinder2DFlowControlWithRL/probes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jerabaul29/Cylinder2DFlowControlDRLParallel/HEAD/Cylinder2DFlowControlWithRL/probes.py -------------------------------------------------------------------------------- /Cylinder2DFlowControlWithRL/script_launch_parallel.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jerabaul29/Cylinder2DFlowControlDRLParallel/HEAD/Cylinder2DFlowControlWithRL/script_launch_parallel.sh -------------------------------------------------------------------------------- /Cylinder2DFlowControlWithRL/simulation_base/env.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jerabaul29/Cylinder2DFlowControlDRLParallel/HEAD/Cylinder2DFlowControlWithRL/simulation_base/env.py -------------------------------------------------------------------------------- /Cylinder2DFlowControlWithRL/simulation_base/make_mesh.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jerabaul29/Cylinder2DFlowControlDRLParallel/HEAD/Cylinder2DFlowControlWithRL/simulation_base/make_mesh.py -------------------------------------------------------------------------------- /Cylinder2DFlowControlWithRL/simulation_base/mesh/dict_history_parameters.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jerabaul29/Cylinder2DFlowControlDRLParallel/HEAD/Cylinder2DFlowControlWithRL/simulation_base/mesh/dict_history_parameters.pkl -------------------------------------------------------------------------------- /Cylinder2DFlowControlWithRL/simulation_base/mesh/p_init.h5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jerabaul29/Cylinder2DFlowControlDRLParallel/HEAD/Cylinder2DFlowControlWithRL/simulation_base/mesh/p_init.h5 -------------------------------------------------------------------------------- /Cylinder2DFlowControlWithRL/simulation_base/mesh/p_init.xdmf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jerabaul29/Cylinder2DFlowControlDRLParallel/HEAD/Cylinder2DFlowControlWithRL/simulation_base/mesh/p_init.xdmf -------------------------------------------------------------------------------- /Cylinder2DFlowControlWithRL/simulation_base/mesh/turek_2d.geo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jerabaul29/Cylinder2DFlowControlDRLParallel/HEAD/Cylinder2DFlowControlWithRL/simulation_base/mesh/turek_2d.geo -------------------------------------------------------------------------------- /Cylinder2DFlowControlWithRL/simulation_base/mesh/turek_2d.geo_unrolled: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jerabaul29/Cylinder2DFlowControlDRLParallel/HEAD/Cylinder2DFlowControlWithRL/simulation_base/mesh/turek_2d.geo_unrolled -------------------------------------------------------------------------------- /Cylinder2DFlowControlWithRL/simulation_base/mesh/turek_2d.h5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jerabaul29/Cylinder2DFlowControlDRLParallel/HEAD/Cylinder2DFlowControlWithRL/simulation_base/mesh/turek_2d.h5 -------------------------------------------------------------------------------- /Cylinder2DFlowControlWithRL/simulation_base/mesh/turek_2d.msh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jerabaul29/Cylinder2DFlowControlDRLParallel/HEAD/Cylinder2DFlowControlWithRL/simulation_base/mesh/turek_2d.msh -------------------------------------------------------------------------------- /Cylinder2DFlowControlWithRL/simulation_base/mesh/turek_2d.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jerabaul29/Cylinder2DFlowControlDRLParallel/HEAD/Cylinder2DFlowControlWithRL/simulation_base/mesh/turek_2d.xml -------------------------------------------------------------------------------- /Cylinder2DFlowControlWithRL/simulation_base/mesh/turek_2d_facet_region.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jerabaul29/Cylinder2DFlowControlDRLParallel/HEAD/Cylinder2DFlowControlWithRL/simulation_base/mesh/turek_2d_facet_region.xml -------------------------------------------------------------------------------- /Cylinder2DFlowControlWithRL/simulation_base/mesh/turek_2d_physical_region.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jerabaul29/Cylinder2DFlowControlDRLParallel/HEAD/Cylinder2DFlowControlWithRL/simulation_base/mesh/turek_2d_physical_region.xml -------------------------------------------------------------------------------- /Cylinder2DFlowControlWithRL/simulation_base/mesh/u_init.h5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jerabaul29/Cylinder2DFlowControlDRLParallel/HEAD/Cylinder2DFlowControlWithRL/simulation_base/mesh/u_init.h5 -------------------------------------------------------------------------------- /Cylinder2DFlowControlWithRL/simulation_base/mesh/u_init.xdmf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jerabaul29/Cylinder2DFlowControlDRLParallel/HEAD/Cylinder2DFlowControlWithRL/simulation_base/mesh/u_init.xdmf -------------------------------------------------------------------------------- /Cylinder2DFlowControlWithRL/simulation_base/start_one_server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jerabaul29/Cylinder2DFlowControlDRLParallel/HEAD/Cylinder2DFlowControlWithRL/simulation_base/start_one_server.py -------------------------------------------------------------------------------- /Cylinder2DFlowControlWithRL/single_runner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jerabaul29/Cylinder2DFlowControlDRLParallel/HEAD/Cylinder2DFlowControlWithRL/single_runner.py -------------------------------------------------------------------------------- /Cylinder2DFlowControlWithRL/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jerabaul29/Cylinder2DFlowControlDRLParallel/HEAD/Cylinder2DFlowControlWithRL/utils.py -------------------------------------------------------------------------------- /Docker/Code_Location_use_docker_Fenics_Tensorforce_parallel.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jerabaul29/Cylinder2DFlowControlDRLParallel/HEAD/Docker/Code_Location_use_docker_Fenics_Tensorforce_parallel.md -------------------------------------------------------------------------------- /Docker/README_container.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jerabaul29/Cylinder2DFlowControlDRLParallel/HEAD/Docker/README_container.md -------------------------------------------------------------------------------- /Docker/Started_training.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jerabaul29/Cylinder2DFlowControlDRLParallel/HEAD/Docker/Started_training.png -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jerabaul29/Cylinder2DFlowControlDRLParallel/HEAD/README.md -------------------------------------------------------------------------------- /container/cylinder2dflowcontrol_Parallel_v1.tar_part.aa: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jerabaul29/Cylinder2DFlowControlDRLParallel/HEAD/container/cylinder2dflowcontrol_Parallel_v1.tar_part.aa -------------------------------------------------------------------------------- /container/cylinder2dflowcontrol_Parallel_v1.tar_part.ab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jerabaul29/Cylinder2DFlowControlDRLParallel/HEAD/container/cylinder2dflowcontrol_Parallel_v1.tar_part.ab -------------------------------------------------------------------------------- /container/cylinder2dflowcontrol_Parallel_v1.tar_part.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jerabaul29/Cylinder2DFlowControlDRLParallel/HEAD/container/cylinder2dflowcontrol_Parallel_v1.tar_part.ac -------------------------------------------------------------------------------- /container/cylinder2dflowcontrol_Parallel_v1.tar_part.ad: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jerabaul29/Cylinder2DFlowControlDRLParallel/HEAD/container/cylinder2dflowcontrol_Parallel_v1.tar_part.ad -------------------------------------------------------------------------------- /tunneling_scripts/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jerabaul29/Cylinder2DFlowControlDRLParallel/HEAD/tunneling_scripts/README.md -------------------------------------------------------------------------------- /tunneling_scripts/learning_to_tunnel/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jerabaul29/Cylinder2DFlowControlDRLParallel/HEAD/tunneling_scripts/learning_to_tunnel/README.md -------------------------------------------------------------------------------- /tunneling_scripts/training_across_network/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jerabaul29/Cylinder2DFlowControlDRLParallel/HEAD/tunneling_scripts/training_across_network/README.md -------------------------------------------------------------------------------- /tunneling_scripts/training_across_network/script_ssh_forward_socket.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jerabaul29/Cylinder2DFlowControlDRLParallel/HEAD/tunneling_scripts/training_across_network/script_ssh_forward_socket.sh -------------------------------------------------------------------------------- /tunneling_scripts/training_across_network/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jerabaul29/Cylinder2DFlowControlDRLParallel/HEAD/tunneling_scripts/training_across_network/utils.py --------------------------------------------------------------------------------