2
0
mirror of https://github.com/fhem/fhem-mirror.git synced 2025-04-07 19:04:20 +00:00

git-svn-id: https://svn.fhem.de/fhem/trunk@1259 2b470e98-0d58-463d-a4d8-8e2adae1ed80

This commit is contained in:
pahenning 2012-02-13 15:57:14 +00:00
parent 9ab4b6c3bb
commit 6de72e588e
3 changed files with 0 additions and 156 deletions

View File

@ -1,57 +0,0 @@
################################################
# Display the current data from an NT5000 solar inverter
#
# Prof. Dr. Peter A. Henning, April 2011
#
# Corresponding FileLog definition:
# define <filelogname> FileLog <filename>
#
set terminal png transparent size <SIZE> crop
set output '<OUT>.png'
set xdata time
set timefmt "%Y-%m-%d_%H:%M:%S"
set xlabel " "
set title '<L1>'
set grid xtics ytics
set ytics nomirror
set y3tics
set y2tics
set ytics
set ylabel "P [kW]"
set y2label "Wd [kWh]"
set y3label "Udc [V]"
set y4label "T [°C]"
set y5label "S [W/m²]"
set yrange [0:4.5]
set y2range [0:35]
set y3range [0:750]
set y4range [-5:95]
set y5range [0:850]
## These are passed to the FileLog module to sort out data
## column_spec is <col>:<regexp>:<default>:<fn>
## <col> may be written as <col1>,<col2>, then the first column is interpreted as the time value
## The following functions are implemented:
## - int (to cut off % from a number, as for the actuator)
## - delta-h / delta-d to get rain/h and rain/d values from continuous data.
#
#FileLog 9:reading:0:
#FileLog 12:reading:0:
#FileLog 4:reading:0:
#FileLog 10:reading:0:
#FileLog 11:reading:0:
## These are either passed to the gnuplot program
## or to the SVG module
plot \
"< egrep 'Pac' <IN>" using 1:2 axes x1y1 title 'P [kW]' with lines ls l0fill,\
"< egrep 'Wd' <IN>" using 1:2 axes x1y2 title 'Wd [kWh]' with lines,\
"< egrep 'Udc' <IN>" using 1:2 axes x1y3 title 'Udc [V]' with lines,\
"< egrep 'Temp' <IN>" using 1:2 axes x1y4 title 'T [°C]' with lines css 'display:none;',\
"< egrep 'S' <IN>" using 1:2 axes x1y5 title 'S [W/m²]' with lines css 'display:none;'

View File

@ -1,46 +0,0 @@
################################################
# Display the monthly data from an NT5000 solar inverter
#
# Prof. Dr. Peter A. Henning, April 2011
#
# Corresponding FileLog definition:
# define <filelogname> FileLog <filename>
#
set terminal png transparent size <SIZE> crop
set output '<OUT>.png'
set xdata
set timefmt "%Y-%m-%d_%H:%M:%S"
set xlabel " "
set ytics
set y2tics nomirror
set title '<L1>'
set grid xtics y2tics
set ylabel "Wd [kWh]"
set y2label "Wm [%]"
set y3label "Wm [kWh]"
set yrange [0:35]
set y2range [0:190]
set y3range [0:750]
## These are passed to the FileLog module to sort out data
## column_spec is <col>:<regexp>:<default>:<fn>
## <col> may be written as <col1>,<col2>, then the first column is interpreted as the time value
## The following functions are implemented:
## - int (to cut off % from a number, as for the actuator)
## - delta-h / delta-d to get rain/h and rain/d values from continuous data.
#
#FileLog 4,5:DEV,nt5000,LASTM,END.*W_D:0:
#FileLog 4,7:DEV,nt5000,LASTM,END.*W_D:0:
#FileLog 4,6:DEV,nt5000,LASTM,END.*W_D:0:
## These are either passed to the gnuplot program
## or to the SVG module
plot \
"< egrep 'W_D' <IN>" using 4:5 axes x1y1 title 'Wd [kWh]' with bars ls l2fill,\
"< egrep 'W_D' <IN>" using 4:7 axes x1y2 title 'Wm [%]' with lines ls l4,\
"< egrep 'W_D' <IN>" using 4:6 axes x1y3 title 'Wm [kWh]' with histeps ls l3

View File

@ -1,53 +0,0 @@
################################################
# Display the yearly data from an NT5000 solar inverter
#
# Prof. Dr. Peter A. Henning, April 2011
#
# Corresponding FileLog definition:
# define <filelogname> FileLog <filename>
#
set terminal png transparent size <SIZE> crop
set output '<OUT>.png'
set xdata
set timefmt "%Y-%m-%d_%H:%M:%S"
set xlabel " "
set ytics
set y2tics nomirror
set title '<L1>'
set grid xtics y2tics
set ylabel "Wm [kWh]"
set y2label "Wm(exp) [kWh]"
set y3label "Wy [kWh]"
set y4label "Wy [%]"
set yrange [0:750]
set y2range [0:750]
set y3range [0:5500]
set y4range [0:125]
## These are passed to the FileLog module to sort out data
## column_spec is <col>:<regexp>:<default>:<fn>
## <col> may be written as <col1>,<col2>, then the first column is interpreted as the time value
## The following functions are implemented:
## - int (to cut off % from a number, as for the actuator)
## - delta-h / delta-d to get rain/h and rain/d values from continuous data.
#
#FileLog 4,5:TODAY.*W_M:0:
#FileLog 4,6:TODAY.*W_M:0:
#FileLog 4,7:TODAY.*W_M:0:
#FileLog 4,8:TODAY.*W_M:0:
## These are either passed to the gnuplot program
## or to the SVG module
plot \
"< egrep 'W_M' <IN>" using 4:5 axes x1y1 title 'Wm [kWh]' with bars ls l3fill,\
"< egrep 'W_M' <IN>" using 4:6 axes x1y2 title '' with bars ls l4,\
"< egrep 'W_M' <IN>" using 4:7 axes x1y3 title 'Wy [kWh]' with histeps ls l5,\
"< egrep 'W_M' <IN>" using 4:8 axes x1y4 title 'Wy [%]' with lines ls l6