This repository has been archived on 2023-11-20. You can view files and clone it, but cannot push or open issues or pull requests.
foam-extend4.1-coherent-io/tutorials/compressible/rhoCentralFoam/Allclean
2010-10-01 10:29:30 +01:00

30 lines
520 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 && cleanSamples)
if [ "$case" = "biconic25-55Run35" ]
then
rm -rf $case/constant/polyMesh/boundary
wclean $case/datToFoam
fi
done