mirror of
https://github.com/ParticulateFlow/CFDEMcoupling-PFM.git
synced 2025-12-08 06:37:44 +00:00
19 lines
349 B
Bash
Executable File
19 lines
349 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 CFD
|
|
cleanCase
|
|
cd -
|
|
|
|
rm -f log*
|
|
|
|
rm -r ./DEM/post
|
|
mkdir ./DEM/post
|
|
mkdir ./DEM/post/restart
|
|
touch ./DEM/post/restart/.gitignore
|
|
|
|
# ----------------------------------------------------------------- end-of-file
|