STYLE: use standardized 0.orig/ for overset tutorials

This commit is contained in:
Mark Olesen
2017-06-14 14:15:22 +02:00
parent 710f23aa35
commit 7eec9f0dd6
76 changed files with 82 additions and 71 deletions

View File

@ -1,7 +1,5 @@
#!/bin/sh
cd ${0%/*} || exit 1 # run from this directory
# Source tutorial clean functions
cd ${0%/*} || exit 1 # Run from this directory
. $WM_PROJECT_DIR/bin/tools/CleanFunctions
cleanCase
@ -10,4 +8,4 @@ rm -f constant/polyMesh/zoneID
rm -rf 0
# ----------------------------------------------------------------- end-of-file
#------------------------------------------------------------------------------

View File

@ -1,4 +1,5 @@
#!/bin/sh
cd ${0%/*} || exit 1 # Run from this directory
. $WM_PROJECT_DIR/bin/tools/RunFunctions
./Allrun.pre
@ -6,8 +7,10 @@
# Run it for a bit
# Serial
#runApplication `getApplication`
#runApplication $(getApplication)
# Parallel
runApplication decomposePar -cellDist
runParallel `getApplication`
runParallel $(getApplication)
#------------------------------------------------------------------------------

View File

@ -1,4 +1,5 @@
#!/bin/sh
cd ${0%/*} || exit 1 # Run from this directory
. $WM_PROJECT_DIR/bin/tools/RunFunctions
runApplication blockMesh
@ -11,7 +12,9 @@ runApplication subsetMesh box -patch hole -overwrite
# Select cellSets
runApplication -s zoneID topoSet
rm -rf 0 && cp -r 0.org 0
restore0Dir
# Use cellSets to write zoneID
runApplication setFields
#------------------------------------------------------------------------------