OpenFOAM-4.x-lab/tutorials/DNS/dnsFoam/boxTurb16/Allrun
2016-08-02 16:26:13 +01:00

15 lines
402 B
Bash
Executable file

#!/bin/sh
cd ${0%/*} || exit 1 # Run from this directory
# Source tutorial run functions
. $WM_PROJECT_DIR/bin/tools/RunFunctions
# Get application name
application=`getApplication`
runApplication blockMesh
runApplication boxTurb
runApplication $application
runApplication -s enstrophy postProcess -func enstrophy
#------------------------------------------------------------------------------