18 lines
289 B
Bash
Executable file
18 lines
289 B
Bash
Executable file
#!/bin/sh
|
|
cd ${0%/*} || exit 1 # run from this directory
|
|
|
|
# Source tutorial run functions
|
|
. $WM_PROJECT_DIR/bin/tools/CleanFunctions
|
|
|
|
cd wingMotion_snappyHexMesh
|
|
cleanCase
|
|
rm -f front.sMesh
|
|
|
|
|
|
cd ../wingMotion2D_simpleFoam
|
|
cleanCase
|
|
|
|
cd ../wingMotion2D_pimpleDyMFoam
|
|
cleanCase
|
|
rm -rf 0
|
|
|