15 lines
259 B
Bash
Executable File
15 lines
259 B
Bash
Executable File
#!/bin/sh
|
|
|
|
currDir=`pwd`
|
|
application=`basename $currDir`
|
|
cases="damBreak4phase damBreak4phaseFine"
|
|
|
|
tutorialPath=`dirname $0`/..
|
|
. $tutorialPath/RunFunctions
|
|
|
|
for case in $cases
|
|
do
|
|
runApplication blockMesh $case
|
|
runApplication $application $case
|
|
done
|