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/incompressible/icoFoam/Allclean

23 lines
417 B
Text
Raw Normal View History

#!/bin/sh
# Source tutorial clean functions
. $WM_PROJECT_DIR/bin/tools/CleanFunctions
keepCases="cavity cavityGrade cavityClipped elbow"
loseCases="cavityFine cavityHighRe"
for case in $keepCases
do
2016-05-06 05:26:55 +00:00
(cd $case && foamCleanTutorials && rm -f constant/polyMesh/boundary)
if [ "$case" = "elbow" ]
then
rm -rf $case/fluentInterface
fi
done
for case in $loseCases
do
removeCase $case
done