Files
openfoam/tutorials/compressible/rhoSimpleFoam/angledDuctExplicitFixedCoeff/Allrun
2016-06-27 17:50:55 +02:00

15 lines
351 B
Bash
Executable File

#!/bin/sh
cd ${0%/*} || exit 1 # Run from this directory
m4 system/blockMeshDict.m4 > system/blockMeshDict
# Source tutorial run functions
. $WM_PROJECT_DIR/bin/tools/RunFunctions
application=$(getApplication)
runApplication blockMesh
runApplication $application
#------------------------------------------------------------------------------