mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
31 lines
630 B
Bash
Executable File
31 lines
630 B
Bash
Executable File
#!/bin/sh
|
|
cd ${0%/*} || exit 1 # run from this directory
|
|
|
|
# Source tutorial clean functions
|
|
. $WM_PROJECT_DIR/bin/tools/CleanFunctions
|
|
|
|
(
|
|
cd throttle || exit
|
|
|
|
rm -rf constant/polyMesh/sets > /dev/null 2>&1
|
|
rm -rf 0/polyMesh > /dev/null 2>&1
|
|
rm system/topoSetDict > /dev/null 2>&1
|
|
|
|
cleanCase
|
|
)
|
|
|
|
|
|
(
|
|
cd throttle3D || exit
|
|
|
|
rm -rf constant/polyMesh/sets > /dev/null 2>&1
|
|
rm -rf 0 > /dev/null 2>&1
|
|
cp -r 0.org 0
|
|
rm system/topoSetDict > /dev/null 2>&1
|
|
rm -rf processor[0-9] > /dev/null 2>&1
|
|
|
|
cleanCase
|
|
)
|
|
|
|
# ----------------------------------------------------------------- end-of-file
|