24 lines
537 B
Bash
Executable File
24 lines
537 B
Bash
Executable File
#!/bin/sh
|
|
cd ${0%/*} || exit 1 # Run from this directory
|
|
|
|
# Source tutorial run functions
|
|
. $WM_PROJECT_DIR/bin/tools/CleanFunctions
|
|
|
|
rm -f constant/geometry/flange.stl.gz
|
|
|
|
rm -f constant/ccx constant/ccy constant/ccz
|
|
rm -f constant/internalDelaunayVertices constant/targetCellSize
|
|
rm -rf 0
|
|
|
|
for f in points faces owner neighbour boundary
|
|
do
|
|
rm -f constant/backgroundMeshDecomposition/polyMesh/$f
|
|
done
|
|
|
|
rm -rf *.obj
|
|
|
|
cleanCase
|
|
cleanExplicitFeatures
|
|
|
|
#------------------------------------------------------------------------------
|