TUT: fix run/clean scripts syntax
This commit is contained in:
parent
14c9582458
commit
7051abc371
@ -4,5 +4,7 @@ cd "${0%/*}" || exit # Run from this directory
|
|||||||
#------------------------------------------------------------------------------
|
#------------------------------------------------------------------------------
|
||||||
|
|
||||||
cleanCase
|
cleanCase
|
||||||
rm 0/*.gz
|
|
||||||
|
rm -f 0/*.gz
|
||||||
|
|
||||||
#------------------------------------------------------------------------------
|
#------------------------------------------------------------------------------
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
#!/bin/sh
|
#!/bin/sh
|
||||||
cd ${0%/*} || exit # Run from this directory
|
cd "${0%/*}" || exit # Run from this directory
|
||||||
. ${WM_PROJECT_DIR:?}/bin/tools/CleanFunctions # Tutorial clean functions
|
. ${WM_PROJECT_DIR:?}/bin/tools/CleanFunctions # Tutorial clean functions
|
||||||
#------------------------------------------------------------------------------
|
#------------------------------------------------------------------------------
|
||||||
|
|
||||||
|
@ -1,6 +1,7 @@
|
|||||||
#!/bin/sh
|
#!/bin/sh
|
||||||
cd ${0%/*} || exit 1 # Run from this directory
|
cd "${0%/*}" || exit # Run from this directory
|
||||||
. $WM_PROJECT_DIR/bin/tools/RunFunctions # Tutorial run functions
|
. ${WM_PROJECT_DIR:?}/bin/tools/RunFunctions # Tutorial run functions
|
||||||
|
#------------------------------------------------------------------------------
|
||||||
|
|
||||||
./makeMesh
|
./makeMesh
|
||||||
|
|
||||||
|
@ -1,6 +1,7 @@
|
|||||||
#!/bin/sh
|
#!/bin/sh
|
||||||
cd ${0%/*} || exit 1 # Run from this directory
|
cd "${0%/*}" || exit # Run from this directory
|
||||||
. $WM_PROJECT_DIR/bin/tools/RunFunctions # Tutorial run functions
|
. ${WM_PROJECT_DIR:?}/bin/tools/RunFunctions # Tutorial run functions
|
||||||
|
#------------------------------------------------------------------------------
|
||||||
|
|
||||||
m4 < system/blockMeshDict.m4 > system/blockMeshDict
|
m4 < system/blockMeshDict.m4 > system/blockMeshDict
|
||||||
|
|
||||||
|
@ -14,45 +14,45 @@ wclean calcRadiusField
|
|||||||
|
|
||||||
runApplication blockMesh
|
runApplication blockMesh
|
||||||
|
|
||||||
##### Procedure for special refinement over Z
|
|
||||||
|
|
||||||
# We need the 0 folder to exist for these steps
|
# We need the 0 folder to exist for these steps
|
||||||
mkdir 0
|
mkdir 0
|
||||||
|
|
||||||
# Refine over Z, in 6 passes
|
# Refine over Z, in 6 passes
|
||||||
for index in 1 2 3 4 5 6
|
for index in 1 2 3 4 5 6
|
||||||
do
|
do
|
||||||
|
suffix="tier$index"
|
||||||
|
|
||||||
runApplication -s tier$index calcRadiusField
|
runApplication -s "$suffix" calcRadiusField
|
||||||
|
|
||||||
runApplication -s tier$index \
|
runApplication -s "$suffix" \
|
||||||
topoSet -dict system/topoSetDict.tier$index
|
topoSet -dict system/topoSetDict.tier$index
|
||||||
|
|
||||||
## foamToVTK -cellSet tier$index
|
## foamToVTK -cellSet "$suffix"
|
||||||
|
|
||||||
runApplication -s tier$index \
|
runApplication -s "$suffix" \
|
||||||
refineMesh -dict system/refineMeshDict.tier$index -overwrite
|
refineMesh -dict system/refineMeshDict."$suffix" -overwrite
|
||||||
|
|
||||||
rm -r 0/*
|
|
||||||
|
|
||||||
|
rm -r 0/*
|
||||||
done
|
done
|
||||||
|
|
||||||
# Refine over cylindrical coordinates, in 3 passes
|
# Refine over cylindrical coordinates, in 3 passes
|
||||||
for index in 1 2 3
|
for index in 1 2 3
|
||||||
do
|
do
|
||||||
|
suffix="range$index"
|
||||||
|
|
||||||
runApplication -s range$index calcRadiusField -calcDirections
|
runApplication -s "$suffix" calcRadiusField -calcDirections
|
||||||
|
|
||||||
runApplication -s range$index \
|
runApplication -s "$suffix" \
|
||||||
topoSet -dict system/topoSetDict.range$index
|
topoSet -dict system/topoSetDict."$suffix"
|
||||||
|
|
||||||
## foamToVTK -cellSet tier$index
|
## foamToVTK -cellSet "$suffix"
|
||||||
|
|
||||||
runApplication -s range$index \
|
runApplication -s "$suffix" \
|
||||||
refineMesh -dict system/refineMeshDict.range$index -overwrite
|
refineMesh -dict system/refineMeshDict."$suffix" -overwrite
|
||||||
|
|
||||||
rm -r 0/*
|
|
||||||
|
|
||||||
|
rm -r 0/*
|
||||||
done
|
done
|
||||||
|
|
||||||
|
rmdir 0 2>/dev/null
|
||||||
|
|
||||||
#------------------------------------------------------------------------------
|
#------------------------------------------------------------------------------
|
||||||
|
@ -1,5 +1,6 @@
|
|||||||
#!/bin/sh
|
#!/bin/sh
|
||||||
cd "${0%/*}" || exit # Run from this directory
|
cd "${0%/*}" || exit # Run from this directory
|
||||||
|
. ${WM_PROJECT_DIR:?}/bin/tools/CleanFunctions # Tutorial clean functions
|
||||||
#------------------------------------------------------------------------------
|
#------------------------------------------------------------------------------
|
||||||
|
|
||||||
cleanCase0
|
cleanCase0
|
||||||
|
@ -1,8 +1,10 @@
|
|||||||
#!/bin/sh
|
#!/bin/sh
|
||||||
cd ${0%/*} || exit 1 # Run from this directory
|
cd "${0%/*}" || exit # Run from this directory
|
||||||
. $WM_PROJECT_DIR/bin/tools/CleanFunctions # Tutorial clean functions
|
. ${WM_PROJECT_DIR:?}/bin/tools/CleanFunctions # Tutorial clean functions
|
||||||
|
#------------------------------------------------------------------------------
|
||||||
|
|
||||||
cleanCase0
|
cleanCase0
|
||||||
rm -r sequencedVTK
|
|
||||||
|
rm -rf sequencedVTK
|
||||||
|
|
||||||
#------------------------------------------------------------------------------
|
#------------------------------------------------------------------------------
|
||||||
|
@ -1,6 +1,7 @@
|
|||||||
#!/bin/sh
|
#!/bin/sh
|
||||||
cd ${0%/*} || exit 1 # Run from this directory
|
cd "${0%/*}" || exit # Run from this directory
|
||||||
. $WM_PROJECT_DIR/bin/tools/RunFunctions # Tutorial run functions
|
. ${WM_PROJECT_DIR:?}/bin/tools/RunFunctions # Tutorial run functions
|
||||||
|
#------------------------------------------------------------------------------
|
||||||
|
|
||||||
runApplication blockMesh
|
runApplication blockMesh
|
||||||
restore0Dir
|
restore0Dir
|
||||||
|
@ -1,8 +1,10 @@
|
|||||||
#!/bin/sh
|
#!/bin/sh
|
||||||
cd ${0%/*} || exit 1 # Run from this directory
|
cd "${0%/*}" || exit # Run from this directory
|
||||||
. $WM_PROJECT_DIR/bin/tools/CleanFunctions # Tutorial clean functions
|
. ${WM_PROJECT_DIR:?}/bin/tools/CleanFunctions # Tutorial clean functions
|
||||||
|
#------------------------------------------------------------------------------
|
||||||
|
|
||||||
cleanCase0
|
cleanCase0
|
||||||
|
|
||||||
rm -rf processor*
|
rm -rf processor*
|
||||||
|
|
||||||
#------------------------------------------------------------------------------
|
#------------------------------------------------------------------------------
|
||||||
|
@ -1,6 +1,7 @@
|
|||||||
#!/bin/sh
|
#!/bin/sh
|
||||||
cd ${0%/*} || exit 1 # Run from this directory
|
cd "${0%/*}" || exit # Run from this directory
|
||||||
. $WM_PROJECT_DIR/bin/tools/RunFunctions # Tutorial run functions
|
. ${WM_PROJECT_DIR:?}/bin/tools/RunFunctions # Tutorial run functions
|
||||||
|
#------------------------------------------------------------------------------
|
||||||
|
|
||||||
runApplication blockMesh
|
runApplication blockMesh
|
||||||
restore0Dir
|
restore0Dir
|
||||||
|
Loading…
Reference in New Issue
Block a user