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/rhoCentralFoam/Allclean

30 lines
504 B
Bash
Executable file

#!/bin/sh
# Source tutorial clean functions
. $WM_PROJECT_DIR/bin/tools/CleanFunctions
cases=" \
shockTube \
wedge15Ma5 \
obliqueShock \
forwardStep \
LadenburgJet60psi \
biconic25-55Run35 \
"
for case in $cases
do
if [ "$case" = "shockTube" ]
then
rm -rf $case/0
cp -r $case/0.org $case/0
fi
(cd $case && foamCleanTutorials)
if [ "$case" = "biconic25-55Run35" ]
then
rm -rf $case/constant/polyMesh/boundary
wclean $case/datToFoam
fi
done