The cellProc field is the field of cell-processor labels. The names "distribution" and "dist" have been removed as these are ambiguous in relation to other forms of distribution and to distance.
17 lines
470 B
Bash
Executable File
17 lines
470 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
|
|
runApplication topoSet
|
|
runApplication subsetMesh -overwrite c0 -patch floatingObject -noFields
|
|
runApplication setFields
|
|
|
|
runApplication decomposePar -cellProc
|
|
runParallel $(getApplication)
|
|
runApplication reconstructPar -cellProc
|
|
|
|
#------------------------------------------------------------------------------
|