25 lines
774 B
Bash
Executable File
25 lines
774 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 -r \
|
|
constant/extendedFeatureEdgeMesh \
|
|
constant/internalDelaunayVertices \
|
|
constant/ccx constant/ccy constant/ccz \
|
|
constant/targetCellSize \
|
|
constant/tetDualMesh \
|
|
constant/polyMesh/boundary \
|
|
constant/triSurface/m_car01_wheel_merge.obj \
|
|
constant/triSurface/m_car01_wheel_merge_orient.eMesh \
|
|
constant/triSurface/m_car01_wheel_merge_orient.obj \
|
|
constant/triSurface/small_orient.eMesh \
|
|
constant/triSurface/small_orient.stl \
|
|
> /dev/null 2>&1
|
|
rm constant/triSurface/*.eMesh > /dev/null 2>&1
|
|
|
|
cleanCase
|
|
|
|
# ----------------------------------------------------------------- end-of-file
|