From c6874965f807743c999d81be7af50ef353c348c4 Mon Sep 17 00:00:00 2001 From: Henry Date: Thu, 19 Feb 2015 08:39:32 +0000 Subject: [PATCH] tutorials: rationalized log --- bin/paraFoam | 10 +++++----- tutorials/basic/laplacianFoam/flange/Allrun | 2 +- .../buoyantCavity/validation/createGraphs | 14 +++++++++----- .../multiphase/cavitatingFoam/les/throttle/Allrun | 7 ++++--- .../cavitatingFoam/les/throttle3D/Allrun | 7 ++++--- .../multiphase/cavitatingFoam/ras/throttle/Allrun | 7 ++++--- .../laminar/mixerVesselAMI2D/Allrun | 2 +- 7 files changed, 28 insertions(+), 21 deletions(-) diff --git a/bin/paraFoam b/bin/paraFoam index a902d218de..d8048d87ea 100755 --- a/bin/paraFoam +++ b/bin/paraFoam @@ -182,10 +182,10 @@ all) if [ -f constant/polyMesh/blockMeshDict ] then touch "$caseName.blockMesh" - echo "created '$caseName.blockMesh'" + echo "Created '$caseName.blockMesh'" fi touch "$caseName.$extension" - echo "created '$caseName.$extension'" + echo "Created '$caseName.$extension'" # discover probable regions for region in constant/* do @@ -193,14 +193,14 @@ all) then regionName=${region##*/} touch "$caseName{$regionName}.$extension" - echo "created '$caseName{$regionName}.$extension'" + echo "Created '$caseName{$regionName}.$extension'" fi done exit 0 ;; true) touch "$caseFile" - echo "created '$caseFile'" + echo "Created '$caseFile'" exit 0 ;; esac @@ -258,7 +258,7 @@ else [ -e $caseFile ] || { trap "rm -f $caseFile 2>/dev/null; exit 0" EXIT TERM INT touch "$caseFile" - echo "created temporary '$caseFile'" + echo "Created temporary '$caseFile'" } # For now filter out any ld.so errors. Caused by non-system compiler? diff --git a/tutorials/basic/laplacianFoam/flange/Allrun b/tutorials/basic/laplacianFoam/flange/Allrun index 9f74e67722..61c59086da 100755 --- a/tutorials/basic/laplacianFoam/flange/Allrun +++ b/tutorials/basic/laplacianFoam/flange/Allrun @@ -13,7 +13,7 @@ runAnsysToFoam() then echo "ansysToFoam already run on $PWD: remove log file to re-run" else - echo "ansysToFoam: converting mesh $1" + echo "ansysToFoam: converting mesh $1" > log.ansysToFoam 2>&1 ansysToFoam $1 -scale $2 > log.ansysToFoam 2>&1 fi } diff --git a/tutorials/heatTransfer/buoyantSimpleFoam/buoyantCavity/validation/createGraphs b/tutorials/heatTransfer/buoyantSimpleFoam/buoyantCavity/validation/createGraphs index 192f3d6340..6f1957fffd 100755 --- a/tutorials/heatTransfer/buoyantSimpleFoam/buoyantCavity/validation/createGraphs +++ b/tutorials/heatTransfer/buoyantSimpleFoam/buoyantCavity/validation/createGraphs @@ -3,7 +3,7 @@ # ========= | # \\ / F ield | OpenFOAM: The Open Source CFD Toolbox # \\ / O peration | -# \\ / A nd | Copyright (C) 2011-2014 OpenFOAM Foundation +# \\ / A nd | Copyright (C) 2011-2015 OpenFOAM Foundation # \\/ M anipulation | #------------------------------------------------------------------------------- # License @@ -48,7 +48,8 @@ createEpsT() set xrange [0:0.08] set yrange [285:310] plot \ - "$EXPT" u (\$1/1000):(\$2+273.15) title "Expt 0.$index" with points lt 1 pt 6, \ + "$EXPT" u (\$1/1000):(\$2+273.15) title "Expt 0.$index" \ + with points lt 1 pt 6, \ "$OF" title "OpenFOAM 0.$index" with lines linetype -1 EOF } @@ -71,7 +72,8 @@ createEpsU() set xrange [0:0.08] set yrange [-0.2:0.2] plot \ - "$EXPT" u (\$1/1000):(\$2) title "Expt 0.$index" with points lt 1 pt 6, \ + "$EXPT" u (\$1/1000):(\$2) title "Expt 0.$index" \ + with points lt 1 pt 6, \ "$OF" u 1:3 title "OpenFOAM 0.$index" with lines linetype -1 EOF } @@ -102,7 +104,8 @@ EXPTDATAROOT=./exptData TSets="1 3 4 5 6 7 9" for i in $TSets do - echo " processing temperature profile at y/yMax of 0.$i" + echo " processing temperature profile at y/yMax of 0.$i" \ + > log.createGraphs 2>&1 OF="$OFDATAROOT/y0.${i}_T.xy" EXPT="$EXPTDATAROOT/mt_z0_${i}0_lo.dat" @@ -115,7 +118,8 @@ done USets="1 3 4 5 6 7 9" for i in $USets do - echo " processing velocity profile at y/yMax of 0.$i" + echo " processing velocity profile at y/yMax of 0.$i" \ + > log.createGraphs 2>&1 OF="$OFDATAROOT/y0.${i}_U.xy" EXPT="$EXPTDATAROOT/mv_z0_${i}0_lo.dat" diff --git a/tutorials/multiphase/cavitatingFoam/les/throttle/Allrun b/tutorials/multiphase/cavitatingFoam/les/throttle/Allrun index 9c5d0abc24..69a82ea552 100755 --- a/tutorials/multiphase/cavitatingFoam/les/throttle/Allrun +++ b/tutorials/multiphase/cavitatingFoam/les/throttle/Allrun @@ -13,12 +13,13 @@ refineMeshByCellSet() do if [ ! -e log.refineMesh.$1 ] then - echo "creating cell set for primary zone - $1" + echo "Creating cell set for primary zone - $1" cp system/topoSetDict.$1 system/topoSetDict topoSet > log.topoSet.$1 2>&1 - echo "refining primary zone - $1" - refineMesh -dict system/refineMeshDict -overwrite > log.refineMesh.$1 2>&1 + echo "Refining primary zone - $1" + refineMesh -dict system/refineMeshDict -overwrite \ + > log.refineMesh.$1 2>&1 fi shift done diff --git a/tutorials/multiphase/cavitatingFoam/les/throttle3D/Allrun b/tutorials/multiphase/cavitatingFoam/les/throttle3D/Allrun index 25075727a9..49c90a1c22 100755 --- a/tutorials/multiphase/cavitatingFoam/les/throttle3D/Allrun +++ b/tutorials/multiphase/cavitatingFoam/les/throttle3D/Allrun @@ -13,12 +13,13 @@ refineMeshByCellSet() do if [ ! -e log.refineMesh.$1 ] then - echo "creating cell set for primary zone - $1" + echo "Creating cell set for primary zone - $1" cp system/topoSetDict.$1 system/topoSetDict topoSet > log.topoSet.$1 2>&1 - echo "refining primary zone - $1" - refineMesh -dict system/refineMeshDict -overwrite > log.refineMesh.$1 2>&1 + echo "Refining primary zone - $1" + refineMesh -dict system/refineMeshDict -overwrite \ + > log.refineMesh.$1 2>&1 fi shift done diff --git a/tutorials/multiphase/cavitatingFoam/ras/throttle/Allrun b/tutorials/multiphase/cavitatingFoam/ras/throttle/Allrun index 5adf4aa606..8cfe49094a 100755 --- a/tutorials/multiphase/cavitatingFoam/ras/throttle/Allrun +++ b/tutorials/multiphase/cavitatingFoam/ras/throttle/Allrun @@ -12,12 +12,13 @@ refineMeshByCellSet() do if [ ! -e log.refineMesh.$1 ] then - echo "creating cell set for primary zone - $1" + echo "Creating cell set for primary zone - $1" cp system/topoSetDict.$1 system/topoSetDict topoSet > log.topoSet.$1 2>&1 - echo "refining primary zone - $1" - refineMesh -dict system/refineMeshDict -overwrite > log.refineMesh.$1 2>&1 + echo "Refining primary zone - $1" + refineMesh -dict system/refineMeshDict -overwrite \ + > log.refineMesh.$1 2>&1 fi shift done diff --git a/tutorials/multiphase/multiphaseInterDyMFoam/laminar/mixerVesselAMI2D/Allrun b/tutorials/multiphase/multiphaseInterDyMFoam/laminar/mixerVesselAMI2D/Allrun index 9c3be11828..08ba9c1a95 100755 --- a/tutorials/multiphase/multiphaseInterDyMFoam/laminar/mixerVesselAMI2D/Allrun +++ b/tutorials/multiphase/multiphaseInterDyMFoam/laminar/mixerVesselAMI2D/Allrun @@ -10,7 +10,7 @@ application=`getApplication` rm -rf 0 cp -r 0.org 0 -setFields +runApplication setFields #runApplication $application #runApplication decomposePar