openfoam/tutorials/multiphase/interFoam/RAS/DTCHull/Allrun
Mark Olesen b51e0d4c1c STYLE: verbose point field decompose/reconstruct (#120)
TUT: use redistributePar for multiphase/interFoam/RAS/DTCHull
2022-06-22 19:45:08 +02:00

43 lines
1.0 KiB
Bash
Executable File

#!/bin/sh
cd "${0%/*}" || exit # Run from this directory
. ${WM_PROJECT_DIR:?}/bin/tools/RunFunctions # Tutorial run functions
#------------------------------------------------------------------------------
mkdir -p constant/triSurface
# copy DTC hull surface from resources folder
cp -f \
"$FOAM_TUTORIALS"/resources/geometry/DTC-scaled.stl.gz \
constant/triSurface/
runApplication surfaceFeatureExtract
runApplication blockMesh
for i in 1 2 3 4 5 6
do
runApplication -s "$i" \
topoSet -dict system/topoSetDict.${i}
runApplication -s "$i" \
refineMesh -dict system/refineMeshDict -overwrite
done
runApplication snappyHexMesh -overwrite
restore0Dir
runApplication setFields
# runApplication decomposePar
runParallel -s decompose redistributePar -decompose
runParallel renumberMesh -overwrite
runParallel $(getApplication)
# runApplication reconstructPar
runParallel -s reconstruct redistributePar -reconstruct
#------------------------------------------------------------------------------