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)
19 lines
396 B
Bash
Executable File
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 )
|
|
|
|
#------------------------------------------------------------------------------
|