intersection with triangle plane for miss
[OpenFOAM-1.5.x.git] / tutorials / Allrun
blobe351dcaddaffbfa91a672012a9a57a0dc854b07d
1 #!/bin/sh
2 #------------------------------------------------------------------------------
3 # ========= |
4 # \\ / F ield | OpenFOAM: The Open Source CFD Toolbox
5 # \\ / O peration |
6 # \\ / A nd | Copyright (C) 1991-2008 OpenCFD Ltd.
7 # \\/ M anipulation |
8 #------------------------------------------------------------------------------
9 # License
10 # This file is part of OpenFOAM.
12 # OpenFOAM is free software; you can redistribute it and/or modify it
13 # under the terms of the GNU General Public License as published by the
14 # Free Software Foundation; either version 2 of the License, or (at your
15 # option) any later version.
17 # OpenFOAM is distributed in the hope that it will be useful, but WITHOUT
18 # ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
19 # FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
20 # for more details.
22 # You should have received a copy of the GNU General Public License
23 # along with OpenFOAM; if not, write to the Free Software Foundation,
24 # Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
26 # Script
27 # Allrun
29 # Description
31 #------------------------------------------------------------------------------
33 # Source tutorial run functions
34 . $WM_PROJECT_DIR/bin/tools/RunFunctions
36 # logReport <logfile>
37 # Extracts useful info from log file.
38 logReport () {
39 case=`dirname $1 | sed s/"\(.*\)\.\/"/""/g`
40 app=`echo $1 | sed s/"\(.*\)\."/""/g`
41 appAndCase="Application $app - case $case"
43 fatalError=`grep "FOAM FATAL" $1`
44 UxSS=`grep -E "Ux[:| ]*solution singularity" $1`
45 UySS=`grep -E "Uy[:| ]*solution singularity" $1`
46 UzSS=`grep -E "Uz[:| ]*solution singularity" $1`
47 completed=`grep -E "^[\t ]*[eE]nd" $1`
49 if [ "$fatalError" ] ; then
50 echo "$appAndCase: ** FOAM FATAL ERROR **"
51 return
52 elif [ "$UxSS" -a "$UySS" -a "$UzSS" ] ; then
53 echo "$appAndCase: ** Solution singularity **"
54 return
55 elif [ "$completed" ] ; then
56 completionTime=`tail -10 $log | grep Execution | cut -d= -f2 | sed 's/^[ \t]*//'`
57 if [ "$completionTime" ] ; then
58 completionTime="in $completionTime"
60 echo "$appAndCase: completed $completionTime"
61 return
62 else
63 echo "$appAndCase: unconfirmed completion"
68 # Recursively run all tutorials
69 foamRunTutorials cases
72 # Analyse all log files
73 rm testLoopReport > /dev/null 2>&1 &
74 touch testLoopReport
75 for application in *
77 if [ -d $application ]
78 then
79 cd $application
80 for log in `find . -name "log.*" | xargs ls -rt`
82 logReport $log >> ../testLoopReport
83 done
84 echo "" >> ../testLoopReport
85 cd ..
87 done
89 find . -name "log.*" -exec cat {} \; >> logs
92 # ----------------------------------------------------------------- end-of-file