ENH: fix foamListTimes to work with -fileHandler collated

This commit is contained in:
Mark Olesen
2017-11-26 15:23:02 +01:00
parent 2787a8664d
commit 966a941a64
6 changed files with 168 additions and 172 deletions

View File

@ -1,4 +1,5 @@
#!/bin/sh
cd ${0%/*} || exit 1 # Run from this directory
# Test if gnuplot exists on the system
command -v gnuplot >/dev/null 2>&1 || {
@ -6,7 +7,7 @@ command -v gnuplot >/dev/null 2>&1 || {
exit 1
}
gnuplot<<EOF
gnuplot<<GNUPLOT
set term post enhanced color solid linewidth 2.0 20
set out "graphs.eps"
set encoding utf8
@ -15,7 +16,7 @@ gnuplot<<EOF
set style line 1 lt 1 linecolor rgb "blue" linewidth 1.5
set style line 11 lt 2 linecolor rgb "black" linewidth 1.5
time = system("foamListTimes -case .. | tail -1")
time = system("foamListTimes -case .. -latestTime")
set xlabel "x"
set ylabel "u'"
@ -32,6 +33,6 @@ gnuplot<<EOF
"../postProcessing/wallShearStressGraph/".time."/line_wallShearStress.xy" \
u ((\$1-0.04)*5.4/1.5e-05):(-\$2/0.5/5.4**2) title "kOmegaSSTLM" w l, \
"exptData/T3A.dat" u (\$1/1000*5.4/1.51e-05):2 title "Exp" w p ls 11
EOF
GNUPLOT
#------------------------------------------------------------------------------