43 lines
954 B
Bash
Executable File
43 lines
954 B
Bash
Executable File
#!/bin/sh
|
|
# Source tutorial run functions
|
|
. $WM_PROJECT_DIR/bin/tools/RunFunctions
|
|
|
|
rm -rf constant/polyMesh/sets
|
|
|
|
runApplication blockMesh
|
|
runApplication setSet -batch makeCellSets.setSet
|
|
|
|
rm -f constant/polyMesh/sets/*_old
|
|
|
|
runApplication setsToZones -noFlipMap
|
|
runApplication splitMeshRegions -cellZones
|
|
|
|
for i in bottomAir topAir heater leftSolid rightSolid
|
|
do
|
|
changeDictionary -region $i
|
|
done
|
|
|
|
# remove fluid fields from solid regions (important for post-processing)
|
|
for i in heater leftSolid rightSolid
|
|
do
|
|
rm -f 0*/$i/{epsilon,k,p,pd,U}
|
|
done
|
|
|
|
# remove solid fields from fluid regions (important for post-processing)
|
|
for i in bottomAir topAir
|
|
do
|
|
rm -f 0*/$i/{cp,K}
|
|
done
|
|
|
|
runApplication chtMultiRegionFoam
|
|
|
|
echo
|
|
echo "creating files for paraview post-processing"
|
|
echo
|
|
for i in bottomAir topAir heater leftSolid rightSolid
|
|
do
|
|
paraFoam -touch -region $i
|
|
done
|
|
|
|
# -----------------------------------------------------------------------------
|