mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-12-28 03:37:59 +00:00
Creation of OpenFOAM-dev repository 15/04/2008
This commit is contained in:
23
tutorials/potentialFoam/Allclean
Executable file
23
tutorials/potentialFoam/Allclean
Executable file
@ -0,0 +1,23 @@
|
||||
#!/bin/sh
|
||||
|
||||
currDir=`pwd`
|
||||
application=`basename $currDir`
|
||||
cases="cylinder pitzDaily"
|
||||
utility=analyticalCylinder
|
||||
|
||||
tutorialPath=`dirname $0`/..
|
||||
. $tutorialPath/CleanFunctions
|
||||
|
||||
for case in $cases
|
||||
do
|
||||
cleanCase $case
|
||||
rm -rf $case/0 > /dev/null 2>&1
|
||||
cp -r $case/0.org $case/0
|
||||
|
||||
if [ "$case" = "cylinder" ]
|
||||
then
|
||||
wclean $case/$utility
|
||||
fi
|
||||
done
|
||||
|
||||
|
||||
Reference in New Issue
Block a user