26 lines
683 B
Bash
Executable File
26 lines
683 B
Bash
Executable File
#!/bin/sh
|
|
cd "${0%/*}" || exit # Run from this directory
|
|
. ${WM_PROJECT_DIR:?}/bin/tools/RunFunctions # Tutorial run functions
|
|
#------------------------------------------------------------------------------
|
|
|
|
touch case.foam
|
|
|
|
runApplication blockMesh
|
|
|
|
# Generate f0Zone faceZone
|
|
runApplication topoSet
|
|
|
|
runApplication extrudeMesh
|
|
|
|
runApplication checkMesh
|
|
|
|
#- Extrude some internal faces into owner
|
|
|
|
runApplication -s flip topoSet -dict system/topoSetDict.flip
|
|
|
|
runApplication -s flip extrudeMesh -dict system/extrudeMeshDict.flip
|
|
|
|
runApplication -s flip checkMesh
|
|
|
|
#------------------------------------------------------------------------------
|