openfoam/tutorials/multiphase/compressibleInterDyMFoam/laminar/sphereDrop/Allrun-parallel
Mark Olesen eed1e99378 TUT: remove 'functions' dictionary scope from catalyst files
- rename Allrun.parallel to Allrun-parallel (issue #899)
2018-06-23 13:41:20 +02:00

33 lines
796 B
Bash
Executable File

#!/bin/sh
cd ${0%/*} || exit 1 # Run from this directory
. $WM_PROJECT_DIR/bin/tools/RunFunctions # Tutorial run functions
runApplication blockMesh
runApplication topoSet
# remove empty patches
runApplication createPatch -overwrite
# split mesh into 2 regions at the AMI coupled patch
runApplication mergeOrSplitBaffles -overwrite
restore0Dir
runApplication setFields
runApplication decomposePar
echo "Symlink include/meshModifiers"
find -maxdepth 1 -name "processor*" -type d | while read procDir
do
(cd $procDir/constant/polyMesh && ln -sf ../../../include/meshModifiers .)
done
runParallel $(getApplication)
runApplication reconstructParMesh
runApplication reconstructPar
#------------------------------------------------------------------------------