Files
OpenFOAM-12/tutorials/multiphase/multiphaseEulerFoam/RAS/bubblePipe/Allrun
Will Bainbridge 01205c98fb tutorials/multiphase/multiphaseEulerFoam/RAS/bubblePipe: Added tutorial
This tutorial demonstrates the use of the population balance modeling
capability of multiphaseEulerFoam for the case of a vertical pipe. It
superseeds all bubbleColumnPolydisperse cases, which have been removed.

Patch contributed by Institute of Fluid Dynamics,
Helmholtz-Zentrum Dresden - Rossendorf (HZDR)
2020-09-09 13:36:26 +01:00

19 lines
396 B
Bash
Executable File

#!/bin/sh
# Run from this directory
cd "${0%/*}" || exit 1
# Source run functions
. "$WM_PROJECT_DIR/bin/tools/RunFunctions"
# Run case
runApplication blockMesh
runApplication topoSet
runApplication decomposePar
runParallel $(getApplication)
runApplication reconstructPar
( cd validation && ./createGraphs )
#------------------------------------------------------------------------------