#!/bin/sh
cd ${0%/*} || exit 1 # Run from this directory
. $WM_PROJECT_DIR/bin/tools/RunFunctions # Tutorial run functionsrm -rf constant/polyMesh/sets
# For meshing only
decompDict=”-decomposeParDict system/decomposeParDict.6″runApplication blockMesh
runApplication surfaceFeatureExtractrunApplication $decompDict decomposePar
runParallel $decompDict snappyHexMesh -overwrite
# Restore initial fields
restore0Dir -processorrunParallel $decompDict splitMeshRegions -cellZones -overwrite
# Remove fluid fields from solid regions (important for post-processing)
for region in $(foamListRegions solid)
do
rm -f 0/$region/{nut,alphat,epsilon,k,U,p_rgh}
rm -f processor*/0/$region/{nut,alphat,epsilon,k,U,p_rgh}
donefor region in $(foamListRegions)
do
runParallel $decompDict -s $region changeDictionary -region $region
done# Redistribute onto fewer processors, with special treatment for heater
for region in $(foamListRegions)
do
runParallel -np 6 -s redist-$region \r
redistributePar -overwrite -region $region
done#– Run in parallel
runParallel $(getApplication)# Reconstruct
for region in $(foamListRegions)
do
runParallel -s reconstruct-$region \r
redistributePar -reconstruct -region $region
doneecho
echo “Use paraFoam -touch-all to create files for paraview post-processing”
echo#——————————————————————————
実行年月:06/19/2020