Tracking the energy use of household appliances

Guzzler Check

Article from Issue 271/2023
Author(s):

Want to bring down your electric bill? Investigate your favorite household appliances with a consumption meter and a Raspberry Pi.

Understanding energy consumption is more important now than ever, and the tools of the smart home provide some interesting possibilities for energy monitoring. This article shows how to use an energy consumption meter to answer practical questions about the power usage of home appliances.

A consumption meter is a device that sits between the appliance and the socket outlet. Some versions include a graphic display to show the current power consumption and the total consumption. Other models support some form of networking to transmit data to a hub or computer system for viewing and further processing. I'll look at two consumption meters that transmit wireless data output. The Voltcraft SEM6000 uses the low-energy Bluetooth variant known as Bluetooth LE to transmit the data, and the Delock 11827 supports WiFi (Figure 1). A Raspberry Pi acts as the data logger, recording the measured values over several days. Simple Python scripts handle the task of evaluating the profiles. This article was written for the 230-volt European electrical environment, but alternative consumption meters are available for the 120-volt North American market, and, with a little ingenuity, you can adapt these techniques to address other energy consumption questions in other settings.

Figure 1: The two plug-in meters used in the test: Voltcraft SEM6000 (left) and Delock 11827 (right).

Getting a Reading

Active current and active power are proportional to each other, which means you only need to record the active power and the time of measurement. Emitted interference from the mains current and the tiny antennas limit the radio range of the devices in Figure 1 to a few meters. The Voltcraft measuring connector therefore expects to find a computer nearby with which it can pair. Delock's version tries to log onto an existing WiFi network. If the signal at the measurement location is too weak, you can use a mobile router to log the computer and measuring device onto its WiFi network.

Voltcraft does not disclose the protocol of the SEM6000, but on GitHub you will find the sem6000 [1] library, which was probably developed via reverse engineering. Listing 1 summarizes the essential calls. Listing 1 uses the bluepy libraries for Bluetooth LE communication and sem6000 for pairing. The MYMAC variable in line 6 points to the device-specific Bluetooth MAC address.

Listing 1

Read SEM6000

 

If the computer and the device find each other and connect, the continuous loop outputs the measured values to the console, starting at line 8. The measurement times are missing from the output; the script has to generate and record the time itself using built-in Python resources. If the login attempt with the password PW is successful, the socket can be switched on using the socket.setStatus(1) command and switched off again using socket.setStatus(0). (Note that the password in Listing 1 is 0000 by default – you'll want to change this.)

You control the Delock connector with a simple web API. On first use, or after pressing the button four times, a hotspot named Delock is launched. The website on address http://192.168.4.1 accepts the configuration data for the network that the device will connect to later on. Once logged in, the router assigns the socket an IP address. After that you can reach the Delock connector's web server on http://IP_address. The graphical interface makes testing far easier. You can type API commands directly when calling the address; the syntax looks like this:

http://IP_address/cm?cmnd=command

The Power toggle command lets you toggle the actual state, whereas Power on and Power off switch the socket on and off. To query the status and read the measured values, just use status 8. EnergyReset3 0 lets you reset the internal counter; TelePeriod 30 sets the measuring period to 30 seconds.

A minimal Python program for the Delock will look something like Listing 2. Using base_url and ivp_data, the requests.get command builds the query for the measurement socket (line 6). The socket responds with a JSON string; check out Listing 3 for the structure. The remaining lines of Listing 3 decompose the JSON string into the variables power, for the power measurement, and rtime, for the time of measurement. Unlike the SEM6000 Bluetooth device, the Delock itself provides the measurement timestamps.

Listing 2

Reading the Delock

 

Listing 3

JSON string

 

If the Delock connector returns incorrect results, the problem could be due to a lack of calibration. You can address the problem by letting the device measure a consumer with known power consumption. The example shown in Table 1 uses a light bulb rated at 40 watts, although its actual power is 37 watts. The voltage only deviates slightly from 230 volts. The quotient of the power and voltage gives you the current, which is 161mA. The commands from the table change the display to the new values. Once you have made this adjustment, the power meter should measure not only the bulb, but also all other consumers correctly.

Table 1

Calibrating Delock

Command

Meaning

PowerSet 37

Power: 37 watts

VoltageSet 230

Voltage: 230 volts

CurrentSet 161

Current: 161mA

To analyze the energy demand of household appliances, you only need the time of measurement and the active power as measured variables. As practical examples, I'll consider a refrigerator, a washing machine, and a waterbed. I will also determine the efficiency of a microwave and answer the question of which heats water more economically: a kettle or a microwave.

Refrigerator

According to the plate attached to the device, the refrigerator whose data is shown in Figure 2 has a power consumption of 90 watts. According to the measurement, the compressor makes do with 70 watts (blue curve). On and off phases alternate with an interval of approximately 30 minutes. The load reserve ensures that a refrigerator provides sufficient cooling capacity even in warm environments by shortening the pauses. A look at the second-to-last time window in Figure 2 shows what happens when the refrigerator door is opened. You can see the power draw of a few watts for the interior lighting, and the loss of cool air causes the refrigeration unit to start up prematurely.

Figure 2: According to the power profile for this refrigerator, its compressor gets by on 70 watts.

The program in Listing 4 will help you develop your own evaluation program. The listing expects a CSV file with the columns Time in seconds and Power in Watts. The SciPy cumulative_trapezoid command integrates the power over time and writes the value to the new consump column (line 7). Dividing by 3,600 converts watt-seconds into watt-hours. The values are logged by the red line in Figure 2 (right-hand scale). The second-to-last line of the script computes the average power. The average power consumption of 30 watts per year costs EUR100 (~$110), at 40 cents/kWh.

Listing 4

Python Evaluation Script

 

Figure 3 shows a section of the profile depicted in Figure 2. The inrush currents here exceed the nominal value several times over. A current generator with limited power interprets this as a short circuit and switches off.

Figure 3: As expected, the start-up current of the compressor is high.

You could optimize a refrigerator to run on solar panels by making it produce more cold during the day. During the night, its door remains largely closed so that the cooler temperature is maintained until the next day.

Washing Machine

The performance profile for one washing machine cycle is shown in Figure 4. The machine rinses and spins twice, starting at time 1,000 seconds and again 10 minutes later. Although the motor makes do with a few hundred watts, the heater has a power draw of 1,700 watts over a six-minute period. Unsurprisingly, this is precisely where the savings potential lies. In the past, you had to boil laundry. The first breakthrough was detergents, which dissolved grease and cleaned at 60 degrees Celsius (140 degrees Fahrenheit). Modern detergents are happy with temperatures as low as 20 degrees Celsius (68 degrees Fahrenheit).

Figure 4: The performance profile for a washing machine shows the individual steps in the wash cycle.

The last line from Listing 4 calculates the energy consumption of the wash cycle from the measured data. In this case, the consumption is only 0.23 kWh. Boiling the washing would require more than five times the energy. At an electricity price of 40 cents/kWh, a wash cycle costs about 10 cents. Things get really expensive if the laundry is not air-dried but put in a tumble dryer. There is no button to let you turn down the temperature and reduce the financial impact. The energy required for fast drying exceeds that of a washing machine by more than an order of magnitude.

Buy this article as PDF

Express-Checkout as PDF
Price $2.95
(incl. VAT)

Buy Linux Magazine

SINGLE ISSUES
 
SUBSCRIPTIONS
 
TABLET & SMARTPHONE APPS
Get it on Google Play

US / Canada

Get it on Google Play

UK / Australia

Related content

comments powered by Disqus