Files
OpenFOAM-12/tutorials/modules/multiphaseEuler/hydrofoil/Allrun
Will Bainbridge 9fa8b85056 tutorials: multiphaseEuler: Added hydrofoil tutorial
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.
2022-11-16 21:36:35 +00:00

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
#------------------------------------------------------------------------------