Uses a form of the Euler equation in which only variation along the streamlines is considered
15 lines
378 B
Bash
Executable File
15 lines
378 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`
|
|
|
|
cp -r 0.org 0 > /dev/null 2>&1
|
|
runApplication blockMesh
|
|
runApplication $application -writePhi -writep
|
|
runApplication streamFunction
|
|
|
|
# ----------------------------------------------------------------- end-of-file
|