openfoam/tutorials/heatTransfer/chtMultiRegionSimpleFoam/heatExchanger/Allrun.pre
Mark Olesen 343854ab31 TUT: avoid redundant -finite-area option for foamToEnsight, foamToVTK
TUT: remove paraFoam hints from tutorials (mostly only need paraview now)

STYLE: remove reference to paraview _SM plugins (OpenFOAM-v1912 and earlier)
2022-06-15 12:52:20 +02:00

26 lines
796 B
Bash
Executable File

#!/bin/sh
cd "${0%/*}" || exit # Run from this directory
. ${WM_PROJECT_DIR:?}/bin/tools/RunFunctions # Tutorial run functions
#------------------------------------------------------------------------------
# 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 system/topoSetDict.1
runApplication createBaffles -region air -overwrite
# Create rotor zone in air region for MRF
runApplication -s air.2 \
topoSet -region air -dict system/topoSetDict.2
rm -rf constant/air/polyMesh/sets
# Set initial fields
restore0Dir
#------------------------------------------------------------------------------