mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
15 lines
247 B
Bash
Executable File
15 lines
247 B
Bash
Executable File
#!/bin/sh
|
|
|
|
currDir=`pwd`
|
|
application=`basename $currDir`
|
|
cases="bubbleColumn bed bed2"
|
|
|
|
tutorialPath=`dirname $0`/..
|
|
. $tutorialPath/RunFunctions
|
|
|
|
for case in $cases
|
|
do
|
|
runApplication blockMesh $case
|
|
runApplication $application $case
|
|
done
|