snappyMultiRegionHeater

#!/bin/sh
cd “${0%/*}” || exit # Run from this directory
. ${WM_PROJECT_DIR:?}/bin/tools/RunFunctions # Tutorial run functions
#——————————————————————————

cp -rf \r
“$FOAM_TUTORIALS”/resources/geometry/snappyMultiRegionHeater \r
constant/triSurface

runApplication blockMesh

runApplication surfaceFeatureExtract

runApplication snappyHexMesh -overwrite

runApplication splitMeshRegions -cellZones -overwrite

for i in bottomAir topAir heater leftSolid rightSolid
do
runApplication -s $i \r
changeDictionary -region $i -subDict dictionaryReplacement
done

runApplication decomposePar -allRegions

runParallel createZeroDirectory

runParallel $(getApplication)

runApplication reconstructPar -allRegions

echo
echo “creating files for paraview post-processing”
echo
paraFoam -touchAll

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

実行年月:02/01/2022