Files
OpenFOAM-12/tutorials/modules/multiRegion/CHT/heatExchanger/Allmesh
2023-03-17 15:47:34 +00:00

27 lines
727 B
Bash
Executable File

#!/bin/sh
cd ${0%/*} || exit 1 # Run from this directory
# Source tutorial run functions
. $WM_PROJECT_DIR/bin/tools/RunFunctions
# Create meshes
runApplication -s air blockMesh -region air
runApplication -s porous blockMesh -region porous
# Create rotor blades in air region
runApplication -s air.1 topoSet -region air -dict topoSetDict.1
runApplication createBaffles -region air -overwrite
# Create rotor zone in air region for MRF
runApplication -s air.2 topoSet -region air -dict topoSetDict.2
rm -rf constant/air/polyMesh/sets
# Create dummy files for post-processing
paraFoam -touch -region porous
paraFoam -touch -region air
#------------------------------------------------------------------------------