openfoam/tutorials/buoyantFoam/Allclean
2008-04-15 18:56:58 +01:00

20 lines
318 B
Bash
Executable File

#!/bin/sh
currDir=`pwd`
application=`basename $currDir`
cases="hotRoom"
utility=setHotRoom
tutorialPath=`dirname $0`/..
. $tutorialPath/CleanFunctions
for case in $cases
do
cleanCase $case
if [ "$case" = "hotRoom" ]
then
cp $case/0/T.org $case/0/T
wclean $case/$utility
fi
done