25 lines
504 B
Bash
Executable File
25 lines
504 B
Bash
Executable File
#!/bin/sh
|
|
cd ${0%/*} || exit 1 # Run from this directory
|
|
|
|
# Source tutorial run functions
|
|
. $WM_PROJECT_DIR/bin/tools/CleanFunctions
|
|
|
|
cleanCase
|
|
|
|
rm -rf 0
|
|
|
|
rm -f constant/cellAlignments
|
|
rm -f constant/targetCellSize
|
|
rm -f constant/internalDelaunayVertices
|
|
|
|
for f in points faces owner neighbour boundary
|
|
do
|
|
rm -f constant/backgroundMeshDecomposition/polyMesh/$f
|
|
done
|
|
|
|
rm -f snapToSurface?.obj
|
|
rm -f tetsToSnapTo.obj
|
|
|
|
|
|
#------------------------------------------------------------------------------
|