Existing case did not properly converge and suffered slow convergence with the water level failing to reach an equilibrium. A slight rise in the channel appears to help the water level reach an equlibrium when the flow rate over the rise matches the inlet flow rate.
17 lines
346 B
Bash
Executable File
17 lines
346 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`
|
|
|
|
./Allmesh
|
|
|
|
cp 0/alpha.water.org 0/alpha.water
|
|
runApplication setFields
|
|
|
|
runApplication $application
|
|
|
|
# ----------------------------------------------------------------- end-of-file
|