19 lines
585 B
Bash
Executable File
19 lines
585 B
Bash
Executable File
#!/bin/sh
|
|
cd "${0%/*}" || exit # Run from this directory
|
|
. ${WM_PROJECT_DIR:?}/bin/tools/CleanFunctions # Tutorial clean functions
|
|
#------------------------------------------------------------------------------
|
|
|
|
cleanCase0
|
|
|
|
rm -rf constant/extendedFeatureEdgeMesh
|
|
|
|
#- From pointMesh generation
|
|
rm -rf constant/pointMesh
|
|
rm -f constant/triSurface/blockMesh.obj
|
|
rm -f constant/triSurface/outside.obj
|
|
|
|
#- From surfaceFeatureExtract
|
|
rm -f constant/triSurface/box222.eMesh
|
|
|
|
#------------------------------------------------------------------------------
|