-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path_docker_plot.sh
35 lines (33 loc) · 4.88 KB
/
_docker_plot.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
#!/bin/bash
# My example bash script
echo "Running post-processing..."
docker run -it --rm -v "$(pwd)":/home/openfoam/data dicehub/openfoam:opencfd-2306 "cd data; postProcess -case . -func probingLine1 -region ExtAirTop -latestTime "
docker run -it --rm -v "$(pwd)":/home/openfoam/data dicehub/openfoam:opencfd-2306 "cd data; postProcess -case . -func probingLine1 -region ExtAirBottom -latestTime"
docker run -it --rm -v "$(pwd)":/home/openfoam/data dicehub/openfoam:opencfd-2306 "cd data; postProcess -case . -func probingLine1 -region IntairTop -latestTime"
docker run -it --rm -v "$(pwd)":/home/openfoam/data dicehub/openfoam:opencfd-2306 "cd data; postProcess -case . -func probingLine1 -region IntairBottom -latestTime"
docker run -it --rm -v "$(pwd)":/home/openfoam/data dicehub/openfoam:opencfd-2306 "cd data; postProcess -case . -func probingLine1 -region Brick -latestTime"
docker run -it --rm -v "$(pwd)":/home/openfoam/data dicehub/openfoam:opencfd-2306 "cd data; postProcess -case . -func probingLine1 -region Insulation -latestTime"
docker run -it --rm -v "$(pwd)":/home/openfoam/data dicehub/openfoam:opencfd-2306 "cd data; postProcess -case . -func probingLine1 -region ConcreteTop -latestTime"
docker run -it --rm -v "$(pwd)":/home/openfoam/data dicehub/openfoam:opencfd-2306 "cd data; postProcess -case . -func probingLine1 -region ConcreteBottom -latestTime"
docker run -it --rm -v "$(pwd)":/home/openfoam/data dicehub/openfoam:opencfd-2306 "cd data; postProcess -case . -func probingLine1 -region Slab -latestTime"
docker run -it --rm -v "$(pwd)":/home/openfoam/data dicehub/openfoam:opencfd-2306 "cd data; postProcess -case . -func probingLine1 -region Plaster -latestTime"
docker run -it --rm -v "$(pwd)":/home/openfoam/data dicehub/openfoam:opencfd-2306 "cd data; postProcess -case . -func probingLine2 -region ExtAirTop -latestTime"
docker run -it --rm -v "$(pwd)":/home/openfoam/data dicehub/openfoam:opencfd-2306 "cd data; postProcess -case . -func probingLine2 -region ExtAirBottom -latestTime"
docker run -it --rm -v "$(pwd)":/home/openfoam/data dicehub/openfoam:opencfd-2306 "cd data; postProcess -case . -func probingLine2 -region IntairTop -latestTime"
docker run -it --rm -v "$(pwd)":/home/openfoam/data dicehub/openfoam:opencfd-2306 "cd data; postProcess -case . -func probingLine2 -region IntairBottom -latestTime"
docker run -it --rm -v "$(pwd)":/home/openfoam/data dicehub/openfoam:opencfd-2306 "cd data; postProcess -case . -func probingLine2 -region Brick -latestTime"
docker run -it --rm -v "$(pwd)":/home/openfoam/data dicehub/openfoam:opencfd-2306 "cd data; postProcess -case . -func probingLine2 -region Insulation -latestTime"
docker run -it --rm -v "$(pwd)":/home/openfoam/data dicehub/openfoam:opencfd-2306 "cd data; postProcess -case . -func probingLine2 -region ConcreteTop -latestTime"
docker run -it --rm -v "$(pwd)":/home/openfoam/data dicehub/openfoam:opencfd-2306 "cd data; postProcess -case . -func probingLine2 -region ConcreteBottom -latestTime"
docker run -it --rm -v "$(pwd)":/home/openfoam/data dicehub/openfoam:opencfd-2306 "cd data; postProcess -case . -func probingLine2 -region Slab -latestTime"
docker run -it --rm -v "$(pwd)":/home/openfoam/data dicehub/openfoam:opencfd-2306 "cd data; postProcess -case . -func probingLine2 -region Plaster -latestTime"
docker run -it --rm -v "$(pwd)":/home/openfoam/data dicehub/openfoam:opencfd-2306 "cd data; postProcess -case . -func probingLine3 -region ExtAirTop -latestTime"
docker run -it --rm -v "$(pwd)":/home/openfoam/data dicehub/openfoam:opencfd-2306 "cd data; postProcess -case . -func probingLine3 -region ExtAirBottom -latestTime"
docker run -it --rm -v "$(pwd)":/home/openfoam/data dicehub/openfoam:opencfd-2306 "cd data; postProcess -case . -func probingLine3 -region IntairTop -latestTime"
docker run -it --rm -v "$(pwd)":/home/openfoam/data dicehub/openfoam:opencfd-2306 "cd data; postProcess -case . -func probingLine3 -region IntairBottom -latestTime"
docker run -it --rm -v "$(pwd)":/home/openfoam/data dicehub/openfoam:opencfd-2306 "cd data; postProcess -case . -func probingLine3 -region Brick -latestTime"
docker run -it --rm -v "$(pwd)":/home/openfoam/data dicehub/openfoam:opencfd-2306 "cd data; postProcess -case . -func probingLine3 -region Insulation -latestTime"
docker run -it --rm -v "$(pwd)":/home/openfoam/data dicehub/openfoam:opencfd-2306 "cd data; postProcess -case . -func probingLine3 -region ConcreteTop -latestTime"
docker run -it --rm -v "$(pwd)":/home/openfoam/data dicehub/openfoam:opencfd-2306 "cd data; postProcess -case . -func probingLine3 -region ConcreteBottom -latestTime"
docker run -it --rm -v "$(pwd)":/home/openfoam/data dicehub/openfoam:opencfd-2306 "cd data; postProcess -case . -func probingLine3 -region Slab -latestTime"
docker run -it --rm -v "$(pwd)":/home/openfoam/data dicehub/openfoam:opencfd-2306 "cd data; postProcess -case . -func probingLine3 -region Plaster -latestTime"