mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
35 lines
1.0 KiB
Bash
Executable File
35 lines
1.0 KiB
Bash
Executable File
#!/bin/sh
|
|
cd "${0%/*}" || exit # Run from this directory
|
|
. ${WM_PROJECT_DIR:?}/bin/tools/RunFunctions # Tutorial run functions
|
|
#------------------------------------------------------------------------------
|
|
|
|
mkdir -p constant
|
|
|
|
cp -rf \
|
|
"$FOAM_TUTORIALS"/resources/geometry/motorBike_leakDetection \
|
|
constant/triSurface
|
|
|
|
# Alternative decomposeParDict name:
|
|
decompDict="-decomposeParDict system/decomposeParDict.6"
|
|
## Standard decomposeParDict name:
|
|
# unset decompDict
|
|
|
|
runApplication surfaceFeatureExtract
|
|
|
|
runApplication blockMesh
|
|
|
|
runApplication $decompDict decomposePar
|
|
|
|
# Using distributedTriSurfaceMesh?
|
|
if foamDictionary -entry geometry -value system/snappyHexMeshDict | \
|
|
grep -q distributedTriSurfaceMesh
|
|
then
|
|
runParallel $decompDict surfaceRedistributePar motorBike.obj independent
|
|
fi
|
|
|
|
runParallel $decompDict snappyHexMesh -overwrite
|
|
|
|
runParallel $decompDict checkMesh -writeFields '(nonOrthoAngle)' -constant
|
|
|
|
#------------------------------------------------------------------------------
|