14 lines
375 B
Bash
Executable File
14 lines
375 B
Bash
Executable File
#!/bin/sh
|
|
|
|
# Source tutorial clean functions
|
|
. $WM_PROJECT_DIR/bin/tools/CleanFunctions
|
|
|
|
# remove surface and features
|
|
rm -rf constant/extendedFeatureEdgeMesh > /dev/null 2>&1
|
|
rm -f constant/triSurface/rotatingZone.eMesh > /dev/null 2>&1
|
|
rm -f constant/triSurface/fixed.eMesh > /dev/null 2>&1
|
|
rm -f 0/pointLevel > /dev/null 2>&1
|
|
rm -f 0/cellLevel > /dev/null 2>&1
|
|
|
|
cleanCase
|