43 lines
816 B
Bash
Executable File
43 lines
816 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 name
|
|
application=`getApplication`
|
|
|
|
runRefineMesh()
|
|
{
|
|
echo "Running refineMesh on $PWD"
|
|
refineMesh -dict > log.refineMesh 2>&1
|
|
}
|
|
|
|
|
|
runApplication blockMesh
|
|
|
|
i=1
|
|
if [ -f log.topoSet ]
|
|
then
|
|
i=3
|
|
fi
|
|
|
|
while [ "$i" -lt 3 ]
|
|
do
|
|
if [ -f log.topoSet ]
|
|
then
|
|
mv log.topoSet log.topoSet.1
|
|
fi
|
|
cp system/topoSetDict.${i} system/topoSetDict
|
|
runApplication topoSet
|
|
runRefineMesh
|
|
cp -r 1e-08/polyMesh/* constant/polyMesh
|
|
rm -rf 1e-08
|
|
i=`expr $i + 1`
|
|
done
|
|
cp constant/polyMesh/boundary.org constant/polyMesh/boundary
|
|
|
|
runApplication $application
|
|
|
|
# ----------------------------------------------------------------- end-of-file
|