Now cellZones are handled directly by the applications and the new cellZone::topoChange function so that any cell can now be in any number of zones, significantly increasing the flexibility and usefulness of cellZones. The same rationalisation and generalisation will be applied to faceZones in the future.
16 lines
381 B
Bash
Executable File
16 lines
381 B
Bash
Executable File
#!/bin/sh
|
|
|
|
cd ${0%/*} || exit 1
|
|
|
|
. $WM_PROJECT_DIR/bin/tools/RunFunctions
|
|
|
|
rm -rf constant/polyMesh/sets
|
|
|
|
runApplication blockMesh
|
|
runApplication snappyHexMesh -overwrite
|
|
runApplication splitMeshRegions -cellZones -defaultRegionName fluid -overwrite
|
|
runApplication decomposePar -allRegions
|
|
runParallel $(getApplication)
|
|
runApplication reconstructPar -allRegions
|
|
paraFoam -touchAll
|