Introduced thermalPhaseChangePopulationBalanceTwo- and MultiphaseSystem as
user-selectable phaseSystems which are the first to actually use multiple mass
transfer mechanisms enabled by
commit d3a237f560.
The functionality is demonstrated using the reactingTwoPhaseEulerFoam
wallBoilingPolydisperse tutorial.
Patch contributed by VTT Technical Research Centre of Finland Ltd and Institute
of Fluid Dynamics, Helmholtz-Zentrum Dresden - Rossendorf (HZDR).
23 lines
722 B
Bash
Executable File
23 lines
722 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`
|
|
|
|
runApplication blockMesh
|
|
runApplication $application
|
|
|
|
if ! isTest $@
|
|
then
|
|
foamDictionary system/controlDict -entry endTime -set 5
|
|
foamDictionary system/controlDict -entry startTime -set 2
|
|
foamDictionary 2/T.liquid -entry boundaryField.wall2.q -set 'uniform 500000'
|
|
foamDictionary 2/T.liquid -entry boundaryField.wall1.q -set 'uniform 500000'
|
|
foamDictionary 2/U.liquid -entry boundaryField.inlet.type -set 'fixedValue'
|
|
runApplication -a $application
|
|
fi
|
|
|
|
#------------------------------------------------------------------------------
|