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

17 lines
319 B
Bash
Executable File

#!/bin/sh
currDir=`pwd`
application=`basename $currDir`
cases="nozzleFlow2D"
tutorialPath=`dirname $0`/..
. $tutorialPath/CleanFunctions
for case in $cases
do
cleanCase $case
if [ "$case" = "nozzleFlow2D" ] ; then
cp $case/constant/polyMesh/boundary.org $case/constant/polyMesh/boundary
fi
done