openfoam/tutorials/heatTransfer/chtMultiRegionFoam/solarBeamWithTrees/Allrun-parallel
2019-12-14 13:34:48 +01:00

27 lines
650 B
Bash
Executable File

#!/bin/sh
cd "${0%/*}" || exit # Run from this directory
. ${WM_PROJECT_DIR:?}/bin/tools/RunFunctions # Tutorial run functions
#------------------------------------------------------------------------------
# Setup case
./Allrun.pre
#-- Run in parallel
# Decompose
runApplication decomposePar -allRegions -constant
# Set the initial fields
restore0Dir
runParallel $(getApplication)
# Reconstruct
runApplication reconstructPar -allRegions
echo
echo "Use paraFoam -touch-all to create files for paraview post-processing"
echo
#------------------------------------------------------------------------------