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

31 lines
520 B
Text
Raw Normal View History

#!/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
2010-10-01 09:29:30 +00:00
(cd $case && foamCleanTutorials && cleanSamples)
if [ "$case" = "biconic25-55Run35" ]
then
rm -rf $case/constant/polyMesh/boundary
wclean $case/datToFoam
fi
done