mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-12-28 03:37:59 +00:00
14 lines
380 B
Bash
Executable File
14 lines
380 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
|