mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
TUT: fix run/clean scripts syntax
This commit is contained in:
@ -14,45 +14,45 @@ wclean calcRadiusField
|
||||
|
||||
runApplication blockMesh
|
||||
|
||||
##### Procedure for special refinement over Z
|
||||
|
||||
# We need the 0 folder to exist for these steps
|
||||
mkdir 0
|
||||
|
||||
# Refine over Z, in 6 passes
|
||||
for index in 1 2 3 4 5 6
|
||||
do
|
||||
suffix="tier$index"
|
||||
|
||||
runApplication -s tier$index calcRadiusField
|
||||
runApplication -s "$suffix" calcRadiusField
|
||||
|
||||
runApplication -s tier$index \
|
||||
topoSet -dict system/topoSetDict.tier$index
|
||||
runApplication -s "$suffix" \
|
||||
topoSet -dict system/topoSetDict.tier$index
|
||||
|
||||
## foamToVTK -cellSet tier$index
|
||||
## foamToVTK -cellSet "$suffix"
|
||||
|
||||
runApplication -s tier$index \
|
||||
refineMesh -dict system/refineMeshDict.tier$index -overwrite
|
||||
|
||||
rm -r 0/*
|
||||
runApplication -s "$suffix" \
|
||||
refineMesh -dict system/refineMeshDict."$suffix" -overwrite
|
||||
|
||||
rm -r 0/*
|
||||
done
|
||||
|
||||
# Refine over cylindrical coordinates, in 3 passes
|
||||
for index in 1 2 3
|
||||
do
|
||||
suffix="range$index"
|
||||
|
||||
runApplication -s range$index calcRadiusField -calcDirections
|
||||
runApplication -s "$suffix" calcRadiusField -calcDirections
|
||||
|
||||
runApplication -s range$index \
|
||||
topoSet -dict system/topoSetDict.range$index
|
||||
runApplication -s "$suffix" \
|
||||
topoSet -dict system/topoSetDict."$suffix"
|
||||
|
||||
## foamToVTK -cellSet tier$index
|
||||
## foamToVTK -cellSet "$suffix"
|
||||
|
||||
runApplication -s range$index \
|
||||
refineMesh -dict system/refineMeshDict.range$index -overwrite
|
||||
|
||||
rm -r 0/*
|
||||
runApplication -s "$suffix" \
|
||||
refineMesh -dict system/refineMeshDict."$suffix" -overwrite
|
||||
|
||||
rm -r 0/*
|
||||
done
|
||||
|
||||
rmdir 0 2>/dev/null
|
||||
|
||||
#------------------------------------------------------------------------------
|
||||
|
||||
Reference in New Issue
Block a user