average fields registered
[OpenFOAM-1.5.x.git] / tutorials / rhoCentralFoam / Allclean
blobc783ce638816a8524a36cdb294a5bc8390b786ee
1 #!/bin/sh
3 # Source tutorial clean functions
4 . $WM_PROJECT_DIR/bin/tools/CleanFunctions
6 cases=" \
7 shockTube \
8 wedge15Ma5 \
9 obliqueShock \
10 forwardStep \
11 LadenburgJet60psi \
12 biconic25-55Run35 \
15 for case in $cases
17 if [ "$case" = "shockTube" ]
18 then
19 rm -rf $case/0
20 cp -r $case/0.org $case/0
23 (cd $case && foamCleanTutorials)
25 if [ "$case" = "biconic25-55Run35" ]
26 then
27 rm -rf $case/constant/polyMesh/boundary
28 wclean $case/datToFoam
30 done