temp4valve4.gplot 867 B

1234567891011121314151617181920212223242526272829303132333435
  1. # Attribute 'small' is useful for gnuplot/-scroll only,
  2. # if plotsize is less than 800,400
  3. #set terminal png transparent small size <SIZE> crop
  4. set terminal png transparent size <SIZE> crop
  5. set output '<OUT>.png'
  6. set xdata time
  7. set timefmt "%Y-%m-%d_%H:%M:%S"
  8. set xlabel " "
  9. set ytics nomirror
  10. set y2tics
  11. #set ytics
  12. set title '<TL>'
  13. set grid xtics y2tics
  14. set y2label "Temperature in C"
  15. set ylabel "Vavle Position (%)"
  16. set y2range [5:25]
  17. set yrange [0:80]
  18. #FileLog 4:desiredTemperature:4.5:
  19. #FileLog 4:temperature:4.5:
  20. #FileLog 4:valveposition:0:
  21. plot \
  22. "< egrep 'desiredTemperature' <IN>"\
  23. using 1:4 axes x1y2 title 'Desired Temperature' with steps,\
  24. "< egrep 'temperature' <IN>"\
  25. using 1:4 axes x1y2 title 'Ist Temperature' with lines,\
  26. "< egrep 'valveposition' <IN>"\
  27. using 1:4 axes x1y1 title 'Valve position (%)' with steps