23 lines
529 B
Bash
Executable File
23 lines
529 B
Bash
Executable File
#!/bin/sh
|
|
cd ${0%/*} || exit 1 # Run from this directory
|
|
. $WM_PROJECT_DIR/bin/tools/RunFunctions
|
|
|
|
runApplication blockMesh
|
|
runApplication topoSet
|
|
|
|
# remove empty patches
|
|
runApplication createPatch -overwrite
|
|
|
|
# split mesh into 2 regions at the AMI coupled patch
|
|
runApplication mergeOrSplitBaffles -overwrite
|
|
|
|
restore0Dir
|
|
|
|
runApplication setFields
|
|
|
|
(cd constant/polyMesh && ln -s ../../include/meshModifiers .)
|
|
|
|
runApplication $(getApplication)
|
|
|
|
#------------------------------------------------------------------------------
|