The new automated <field>.orig reading has made 0.orig directories and associated scripting redundant.
30 lines
583 B
Bash
Executable File
30 lines
583 B
Bash
Executable File
#!/bin/sh
|
|
|
|
cd ${0%/*} || exit 1
|
|
|
|
. $WM_PROJECT_DIR/bin/tools/RunFunctions
|
|
|
|
runApplication blockMesh
|
|
|
|
runApplication extrudeMesh
|
|
|
|
for i in 1 2
|
|
do
|
|
runApplication -s $i topoSet -dict system/topoSetDict$i
|
|
runApplication -s $i refineMesh -dict system/refineMeshDictX -overwrite
|
|
done
|
|
|
|
for i in 3 4 5 6
|
|
do
|
|
runApplication -s $i topoSet -dict system/topoSetDict$i
|
|
runApplication -s $i refineMesh -dict system/refineMeshDictY -overwrite
|
|
done
|
|
|
|
runApplication setWaves -alpha alpha.water
|
|
|
|
runApplication decomposePar
|
|
|
|
runParallel $(getApplication)
|
|
|
|
runApplication reconstructPar
|