mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
37 lines
1.2 KiB
Bash
Executable File
37 lines
1.2 KiB
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
|
|
|
|
#cp system/decomposeParDict-2 system/decomposeParDict
|
|
#runApplication decomposePar
|
|
|
|
# redistributePar to do decomposition
|
|
runParallel redistributePar 2 -decompose
|
|
|
|
# Bit of renumbering and running
|
|
runParallel -log log.renumberMesh-CuthillMcKee renumberMesh 2 -overwrite
|
|
runParallel -log log.icoFoam-CuthillMcKee icoFoam 2
|
|
|
|
# Bit of bad renumbering and running
|
|
runParallel -log log.renumberMesh-parallel renumberMesh 2 -overwrite -dict system/renumberMeshDict-random
|
|
runParallel -log log.icoFoam-random icoFoam 2
|
|
|
|
# Pick up last result
|
|
cp system/controlDict-latestTime system/controlDict
|
|
|
|
# Redistribute to 5 processors
|
|
runParallel -log log.redistributePar-5 redistributePar 5 -decomposeParDict system/decomposeParDict-5 -cellDist
|
|
|
|
# Run a bit more
|
|
runParallel -log log.icoFoam-5 icoFoam 5 -decomposeParDict system/decomposeParDict-5
|
|
|
|
# Reconstruct mesh and results
|
|
runParallel -log log.redistributePar-1 redistributePar 5 -reconstruct -decomposeParDict system/decomposeParDict
|
|
|
|
|
|
# ----------------------------------------------------------------- end-of-file
|