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

21 lines
328 B
Bash
Executable File

#!/bin/sh
currDir=`pwd`
application=`basename $currDir`
casesWithBlockMeshDict="dahl"
casesWithoutBlockMeshDict="tank3D"
tutorialPath=`dirname $0`/..
. $tutorialPath/CleanFunctions
for case in $casesWithBlockMeshDict
do
cleanCase $case
done
for case in $casesWithoutBlockMeshDict
do
cleanTimeDirectories $case
done