Merge branch 'develop' of develop.openfoam.com:Development/OpenFOAM-plus into develop

This commit is contained in:
sergio
2018-12-11 13:55:14 -08:00
242 changed files with 1382 additions and 287 deletions

View File

@ -211,4 +211,7 @@ case "$action" in
;;
esac
# For log collector:
echo "End"
#------------------------------------------------------------------------------

View File

@ -170,4 +170,7 @@ log "done"
# Remove the lock file too
\rm -f $lockFile 2>/dev/null
# For log collector:
echo "End"
#------------------------------------------------------------------------------

View File

@ -171,4 +171,7 @@ log "done"
# Remove the lock file too
\rm -f $lockFile 2>/dev/null
# For log collector:
echo "End"
#------------------------------------------------------------------------------

View File

@ -2,7 +2,7 @@
cd ${0%/*} || exit 1 # Run from this directory
. $WM_PROJECT_DIR/bin/tools/CleanFunctions # Tutorial clean functions
cleanCase
cleanCase0
rm -rf constant/extendedFeatureEdgeMesh > /dev/null 2>&1
rm -f constant/triSurface/buildings.eMesh > /dev/null 2>&1

View File

@ -2,10 +2,9 @@
cd ${0%/*} || exit 1 # Run from this directory
. $WM_PROJECT_DIR/bin/tools/RunFunctions # Tutorial run functions
runApplication surfaceFeatureExtract
runApplication ./Allrun.pre
runApplication blockMesh
runApplication snappyHexMesh -overwrite
restore0Dir
runApplication $(getApplication)

View File

@ -2,13 +2,12 @@
cd ${0%/*} || exit 1 # Run from this directory
. $WM_PROJECT_DIR/bin/tools/RunFunctions # Tutorial run functions
runApplication surfaceFeatureExtract
runApplication blockMesh
runApplication snappyHexMesh -overwrite
runApplication ./Allrun.pre
runApplication decomposePar
restore0Dir -processor
runParallel $(getApplication)
runApplication reconstructPar

View File

@ -0,0 +1,11 @@
#!/bin/sh
cd ${0%/*} || exit 1 # Run from this directory
. $WM_PROJECT_DIR/bin/tools/RunFunctions # Tutorial run functions
runApplication surfaceFeatureExtract
runApplication blockMesh
runApplication snappyHexMesh -overwrite
#------------------------------------------------------------------------------