to handle the size of bubbles created by boiling. To be used in conjunction with the alphatWallBoilingWallFunction boundary condition. The IATE variant of the wallBoiling tutorial case is provided to demonstrate the functionality: tutorials/multiphase/reactingTwoPhaseEulerFoam/RAS/wallBoilingIATE
16 lines
450 B
Bash
Executable File
16 lines
450 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
|
|
foamDictionary system/controlDict -entry endTime -set 5
|
|
foamDictionary 2/T.liquid -entry boundaryField.wall2.q -set 1e5
|
|
runApplication -a $application
|
|
|
|
#------------------------------------------------------------------------------
|