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
21 lines
505 B
Bash
Executable File
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
|
|
|
|
#------------------------------------------------------------------------------
|