openfoam/tutorials/mesh/snappyHexMesh/addLayersToFaceZone/Allrun
mattijs 5e2d8d6ed2 ENH: snappyHexMesh: multi-stage layer addition, automatic hole closure
Automatic hole closure:
- introduces 'holeToFace' topoSet source
- used when detecting a 'leak-path'
- creates additional baffles to close the leak

Multi-stage layer addition:
- Can add layers in multiple passes

See issues: #2403, #2404
2022-03-10 14:20:07 +00:00

21 lines
505 B
Bash
Executable File

#!/bin/sh
cd "${0%/*}" || exit # Run from this directory
. ${WM_PROJECT_DIR:?}/bin/tools/RunFunctions # Tutorial run functions
#------------------------------------------------------------------------------
paraFoam -vtk -touch
restore0Dir
runApplication blockMesh
runApplication topoSet
runApplication snappyHexMesh -overwrite
runApplication checkMesh
runApplication simpleFoam
#------------------------------------------------------------------------------