mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
DOC: Curle: fix typo in header file (fixes #2498) TUT: airfoil2D: apply standard freestream conditions for nuTilda and nut
19 lines
733 B
Bash
Executable File
19 lines
733 B
Bash
Executable File
#!/bin/sh
|
|
cd "${0%/*}" || exit # Run from this directory
|
|
. ${WM_PROJECT_DIR:?}/bin/tools/RunFunctions # Tutorial run functions
|
|
#------------------------------------------------------------------------------
|
|
|
|
./Allrun.pre
|
|
|
|
runApplication $(getApplication)
|
|
|
|
|
|
runApplication -s "epsilon" postProcess -func sampleEpsilon -latestTime
|
|
runApplication -s "k" postProcess -func sampleK -latestTime
|
|
runApplication -s "R" postProcess -func sampleR -latestTime
|
|
runApplication -s "G" postProcess -func sampleG -latestTime
|
|
runApplication -s "U" postProcess -func sampleU -latestTime
|
|
runApplication foamLog log.$(getApplication)
|
|
|
|
#------------------------------------------------------------------------------
|