Files
OpenFOAM-12/tutorials/multiphase/interFoam/RAS/floatingObject/Allrun-parallel
Will Bainbridge dafe3fa004 decomposePar, reconstructPar: Renamed cellDist to cellProc
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.
2022-07-22 09:46:34 +01:00

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
#------------------------------------------------------------------------------