Files
openfoam/tutorials/incompressible/simpleFoam/rotorDisk/Allclean
2019-11-13 13:19:16 +01:00

16 lines
530 B
Bash
Executable File

#!/bin/sh
cd "${0%/*}" || exit # Run from this directory
. ${WM_PROJECT_DIR:?}/bin/tools/CleanFunctions # Tutorial clean functions
#------------------------------------------------------------------------------
cleanCase
# Remove surface and features
rm -rf constant/extendedFeatureEdgeMesh
rm -f constant/triSurface/rotatingZone.eMesh
rm -f constant/triSurface/fixed.eMesh
rm -f 0/pointLevel
rm -f 0/cellLevel
#------------------------------------------------------------------------------