db7fac3f24
git-svn-id: https://openfoam-extend.svn.sourceforge.net/svnroot/openfoam-extend/trunk/Core/OpenFOAM-1.5-dev@1731 e4e07f05-0c2f-0410-a05a-b8ba57e0c909
30 lines
504 B
Bash
Executable file
30 lines
504 B
Bash
Executable file
#!/bin/sh
|
|
|
|
# Source tutorial clean functions
|
|
. $WM_PROJECT_DIR/bin/tools/CleanFunctions
|
|
|
|
cases=" \
|
|
shockTube \
|
|
wedge15Ma5 \
|
|
obliqueShock \
|
|
forwardStep \
|
|
LadenburgJet60psi \
|
|
biconic25-55Run35 \
|
|
"
|
|
|
|
for case in $cases
|
|
do
|
|
if [ "$case" = "shockTube" ]
|
|
then
|
|
rm -rf $case/0
|
|
cp -r $case/0.org $case/0
|
|
fi
|
|
|
|
(cd $case && foamCleanTutorials)
|
|
|
|
if [ "$case" = "biconic25-55Run35" ]
|
|
then
|
|
rm -rf $case/constant/polyMesh/boundary
|
|
wclean $case/datToFoam
|
|
fi
|
|
done
|