Nice Appliances Direct photos
October 8, 2011 by admin
Filed under Kitchen Accessories
A few nice appliances direct images I found:
Overnight use of high-draw appliances

Image by eastpole
We’re quite pleased with the new Sears/LG laundry boxes. The dryer has a rare feature, a delay before operating. Learn more about time-of-day metering or see a graph indicating why power should be cheaper at 2am.
Washer: LG WM1333HW seems to need about 0.10 kWh per load.
Dryer: LG DLEV833W.
Both are Energy Star rated and have delay features.
#!/bin/sh
logfile="/home/tai/bin/wget-ted.log"
lineswanted="720"
output="wget-ted-today.png"
mathstring="36*`date +"%z"`"
offset="`echo $ mathstring | bc`"
spline="1E-09"
#
#
/usr/bin/gnuplot << EOF
# A Gnuplot script, wget-ted.plt
set terminal png size 1024,768 giant nocrop
# set terminal dumb
set output "$ output"
# set output
set title "Sampled household electrical power consumption \n Thanks to The Energy Detective \n generated by
US DOD. United States Air Force. Starfire. Kirtland AFB. Albuquerque NM. Directed Energy Directorate. US AF research laboratory

Image by jamesmcashan
US Department of Defense.US Air Force.Starfire.Kirtland AFB.Albuquerque NM.Directed Energy Directorate.US AF research laboratory. test.
radiation appliances have many uses. this one may destroy an object thousands of miles away, using no projectile, with less cost, danger, or targeting, instantly at the speed of light.
it can also send data into the cosmos, or collect information.
-james mcashan for the US Congress.
at `date +"%F %T"` \n from $ lineswanted lines of $ logfile"
set xdata time
# set timefmt is for INPUT
# 1205349849
set timefmt "%s"
# 2008-03-12 15:06:56
# set timefmt "%Y-%m-%d %H:%M:%S"
# 2008-03-12
# set timefmt "%Y-%m-%d"
#
# set format x is for OUTPUT
set format x "%H:%m"
set ylabel "kW"
set xlabel "Time"
# Stupidly, this does not work
# set xrange [1205349849:]
# Why is it 1:4? Note space within date. is the time column
# need \ to escape the shell variable since that’s not what we intend.
plot "<tail -n $ lineswanted $ logfile " using ($ 1+$ offset):($ 4) \
with points pointsize 0.5\
title "Power samples, every 2 minutes",\
"" \
using ($ 1+$ offset):($ 4):($ spline) smooth acsplines \
with lines \
title "spline factor $ spline"
EOF
Of course there are many imperfect ways to get the current power data off the TED; here is the imperfect way used for this graph:
date +"%s %F %T " | tr -d \n\r
wget -q -O – wirchy:9090/DashboardData | grep KWNow | tr -d [:alpha:] | tr -d [:blank:] | tr -d \ | tr -d / | tr -d \n\r
echo
Run from cron, direct output to a log, analyze with gnuplot script above.

