This serves as an example of cavitation modelling with the multiphaseEuler module. This case also contains validation of the pressure profile along the hydrofoil against experimental data. Based on a case contributed by Petteri Peltonen, VTT.
21 lines
453 B
Bash
Executable File
21 lines
453 B
Bash
Executable File
#!/bin/sh
|
|
cd ${0%/*} || exit 1 # run from this directory
|
|
|
|
# Source tutorial run functions
|
|
. $WM_PROJECT_DIR/bin/tools/RunFunctions
|
|
|
|
runApplication blockMesh
|
|
|
|
cp 0/U.liquid.orig 0/U
|
|
runApplication potentialFoam -pName p_rgh
|
|
cp 0/U 0/U.gas
|
|
cp 0/U 0/U.liquid
|
|
|
|
runApplication decomposePar
|
|
runParallel $(getApplication)
|
|
runApplication reconstructPar
|
|
|
|
validation/createGraph
|
|
|
|
#------------------------------------------------------------------------------
|