DTCHull

#!/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 \r
“$FOAM_TUTORIALS”/resources/geometry/DTC-scaled.stl.gz \r
constant/triSurface/

runApplication surfaceFeatureExtract

runApplication blockMesh

for i in 1 2 3 4 5 6
do
runApplication -s “$i” \r
topoSet -dict system/topoSetDict.${i}

runApplication -s “$i” \r
refineMesh -dict system/refineMeshDict -overwrite
done

runApplication snappyHexMesh -overwrite

restore0Dir

runApplication setFields

runApplication decomposePar

runParallel renumberMesh -overwrite

runParallel $(getApplication)

runApplication reconstructPar

#——————————————————————————

実行年月:08/01/2021