Files
OpenFOAM-12/tutorials/potentialFoam/cylinder/Allrun
Henry Weller 8402bc3de2 potentialFoam: Replaced the -withFunctionObjects option with -functionObjects
and removed the unused -noFunctionObjects option.
2024-01-21 09:27:12 +00:00

14 lines
387 B
Bash
Executable File

#!/bin/sh
cd ${0%/*} || exit 1 # Run from this directory
# Source tutorial run functions
. $WM_PROJECT_DIR/bin/tools/RunFunctions
application=$(getApplication)
runApplication blockMesh
runApplication $application -functionObjects -writePhi -writep
runApplication foamPostProcess -func streamFunction
#------------------------------------------------------------------------------