The tutorial now also demonstrates how to run a multi-region CHT case completely in parallel. If run-time post processing was being utilised there would be no need for reconstruction at any point.
14 lines
333 B
Bash
Executable File
14 lines
333 B
Bash
Executable File
#!/bin/sh
|
|
cd ${0%/*} || exit 1 # Run from this directory
|
|
|
|
# Source tutorial clean functions
|
|
. $WM_PROJECT_DIR/bin/tools/CleanFunctions
|
|
|
|
cleanCase
|
|
rm -rf \
|
|
constant/*/polyMesh \
|
|
constant/extendedFeatureEdgeMesh \
|
|
constant/triSurface/*.eMesh
|
|
|
|
#------------------------------------------------------------------------------
|