- A few without a 'cd' at the start. Several remove files that are already covered by the cleanCase function.
32 lines
734 B
Bash
Executable File
32 lines
734 B
Bash
Executable File
#!/bin/sh
|
|
cd ${0%/*} || exit 1 # run from this directory
|
|
|
|
# Source tutorial clean functions
|
|
. $WM_PROJECT_DIR/bin/tools/CleanFunctions
|
|
|
|
cleanCase
|
|
|
|
rm -rf VTK
|
|
rm -rf constant/cellToRegion
|
|
|
|
rm -rf constant/air/polyMesh
|
|
rm -rf constant/solid/polyMesh
|
|
rm -rf constant/floor/polyMesh
|
|
rm -rf constant/triSurface
|
|
|
|
rm -f constant/air/F
|
|
rm -f constant/air/constructMap*
|
|
rm -f constant/air/finalAgglom
|
|
rm -f constant/air/globalFaceFaces
|
|
rm -f constant/air/mapDist
|
|
rm -f constant/air/visibleFaceFaces
|
|
|
|
rm -f 0/air/facesAgglomeration
|
|
rm -f 0/air/viewFactorField
|
|
rm -f 0/air/cellToRegion
|
|
rm -f 0/floor/cellToRegion
|
|
rm -f 0/solid/cellToRegion
|
|
rm -f 0/cellToRegion
|
|
|
|
#------------------------------------------------------------------------------
|