mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
- adjust surfactantFoam/planeTransport tutorial to have partial coverage of the plate by the finiteArea mesh. Depending on the decomposition, the outflow boundary may coincide with a processor patch (good for testing purposes). - additional Allrun-parallel versions for targetted future behaviour
20 lines
661 B
Bash
Executable File
20 lines
661 B
Bash
Executable File
#!/bin/sh
|
|
cd "${0%/*}" || exit # Run from this directory
|
|
. ${WM_PROJECT_DIR:?}/bin/tools/RunFunctions # Tutorial run functions
|
|
#------------------------------------------------------------------------------
|
|
|
|
runApplication blockMesh
|
|
|
|
decompDict="-decomposeParDict system/decomposeParDict-procBoundary8"
|
|
fileHandler="-fileHandler collated"
|
|
|
|
runApplication $decompDict decomposePar $fileHandler
|
|
|
|
runParallel $decompDict makeFaMesh $fileHandler
|
|
|
|
runParallel $decompDict $(getApplication) $fileHandler
|
|
|
|
runApplication reconstructPar $fileHandler
|
|
|
|
#------------------------------------------------------------------------------
|