Patch provided by Bruno Santos Resolves patch application request http://www.openfoam.org/mantisbt/view.php?id=2015
44 lines
947 B
Bash
Executable file
44 lines
947 B
Bash
Executable file
#!/bin/sh
|
|
cd ${0%/*} || exit 1 # Run from this directory
|
|
|
|
# Source tutorial run functions
|
|
. $WM_PROJECT_DIR/bin/tools/RunFunctions
|
|
|
|
# Set application name
|
|
application=`getApplication`
|
|
|
|
runApplication blockMesh
|
|
|
|
runApplication -s cRefine \
|
|
topoSet -dict system/cRefine.topoSetDict
|
|
|
|
runApplication refineMesh -overwrite -dict system/refineMeshDict
|
|
|
|
runApplication -s f \
|
|
topoSet -dict system/f.topoSetDict
|
|
|
|
# create the pyrolysis region.
|
|
runApplication extrudeToRegionMesh -overwrite
|
|
|
|
|
|
runApplication -s fBurner \
|
|
topoSet -dict system/fBurner.topoSetDict
|
|
|
|
runApplication createPatch -overwrite
|
|
|
|
runApplication -s master \
|
|
decomposePar -force
|
|
|
|
runApplication -s panelRegion \
|
|
decomposePar -region panelRegion
|
|
|
|
runApplication -s fields \
|
|
decomposePar -fields
|
|
|
|
runParallel `getApplication`
|
|
|
|
paraFoam -touch
|
|
paraFoam -touch -region panelRegion
|
|
|
|
|
|
#------------------------------------------------------------------------------
|