- A few without a 'cd' at the start. Several remove files that are already covered by the cleanCase function.
21 lines
467 B
Bash
Executable File
21 lines
467 B
Bash
Executable File
#!/bin/sh
|
|
cd ${0%/*} || exit 1 # run from this directory
|
|
|
|
# Source tutorial run functions
|
|
. $WM_PROJECT_DIR/bin/tools/RunFunctions
|
|
|
|
# Get application directory
|
|
application=$(getApplication)
|
|
|
|
runApplication blockMesh
|
|
|
|
#- Run serial
|
|
#runApplication $application
|
|
|
|
#- Run parallel
|
|
runApplication decomposePar -cellDist
|
|
runParallel $application
|
|
#runApplication reconstructPar -latestTime
|
|
|
|
# -----------------------------------------------------------------------------
|