EnO_A5-12-02.gplot 983 B

12345678910111213141516171819202122232425262728293031323334
  1. ##############################################
  2. # $Id: EnO_A5-12-02.gplot 9623 2015-10-24 07:09:24Z klaus-schauer $
  3. # FileLog definition:
  4. # define FileLog_device FileLog ./log/device-%Y.log device
  5. #
  6. # Logfile record example:
  7. # 2015-10-17_08:38:08 device flowrate: 134
  8. # 2015-10-17_08:38:08 device consumption0: 100
  9. # Attribute 'small' is useful for gnuplot/-scroll only,
  10. # if plotsize is less than 800,400
  11. #set terminal png transparent small size <SIZE> crop
  12. set terminal png transparent size <SIZE> crop
  13. set output '<OUT>.png'
  14. set xdata time
  15. set timefmt "%Y-%m-%d_%H:%M:%S"
  16. set title '<TL>'
  17. set xlabel " "
  18. set ylabel "Vs/l"
  19. set y2label "V/m3"
  20. set ytics
  21. set grid xtics ytics
  22. #FileLog 4:flowrate:0:
  23. #FileLog 4:consumption0:0:
  24. #FileLog 4:consumption1:0:
  25. plot \
  26. "<IN>" using 1:2 ls l0 axes x1y1 title 'Flowrate' with lines,\
  27. "<IN>" using 1:2 ls l1 axes x1y2 title 'Consumption Channel 0' with lines,\
  28. "<IN>" using 1:2 ls l2 axes x1y2 title 'Consumption Channel 1' with lines