Public Lab Research note


This is part of a series on woodstove-control.

Yule logging

by cfastie | November 27, 2017 00:41 27 Nov 00:41 | #15242 | #15242

I heat my house in Vermont with a woodstove. There is an oil furnace which I use on really cold days or when I am away and can't feed the stove, but the woodstove supplies about 90% of the heat. I use three or four cords of wood every year, and I buy heating oil once every four years.

AvalonA.jpg
Above: This is a cutaway diagram of my woodstove. All the numbered details are intended to make you think this is the most clever, high tech, efficient woodstove in the world but, incredibly, there is no useful information there about how the stove works. So I added the red and blue arrows and text. That's all you need to know right now.

The stove is inset into a fireplace, so its integrated fan is critical to disperse the heat. The fan has a thermal switch so it is on only when the stove is hot. But the switch reads the temperature under the firebox where fire bricks and accumulated ash variably obscure the firebox temperature. The switch does not last very long and costs $25 to replace. The second one I bought stopped working 15 years ago so I just turn the fan on and off manually. I have been thinking about making a thermal switch with an Arduino for several years.

StoveRelay_20171122-1734.JPG
Above: This is the OEM thermal switch. It is placed in contact with the iron bottom of the stove and fails after a couple of years. I have refused to buy a third one for 15 years.

To avoid the problem that a thermal switch must be in contact with the hot stove, my plan was to use an infrared sensor which can be several inches away from the hot stove. Infrared temperature sensors are common hobbyist components and cost about $5. I tried one last spring with a Nano Data Logger and it was easy to use.

StoveRelay_20171122-1700PS.jpg
Above: Two I2C breakout boards with non-contact infrared temperature sensors. On the left is a Melexis MLX90615 infrared sensor (range -40 to 115°C). On the right is a Melexis MLX90614 sensor (range -70 to 380°C). The MLX90614 is available in either 3.3 volt or 5 volt versions. The breakout board I am using has the 3.3 volt MLX90614ESF-BAA-000-TU-ND.

These sensors have a very wide field of view (90°). To capture an accurate temperature of the woodstove the sensor would have to be close enough (about 12 inches) so only radiation from the stove reached it. My woodstove is tucked into a fireplace and I can't install the sensor in front of it, so my best option is to put the sensor closer and point it at a corner of the stove. The sensor will "see" things that are not the stove and the temperature readings will be lower than the stove but I hope to get a good enough "stove temperature index" to work with.

Fever-Measurement-Melexis.jpg
Above: This type of thermal infrared sensor is used in the non-contact thermometers which are responsible for our kids not knowing how to hold the glass thermometer under their tongues. This photo is on the Melexis web site and I thought for a minute that maybe babies came with remote controls these days which would certainly be a wonderful advance. The version of this photo at the Melexis site has the digits photoshopped to be "98.6" so viewers would not be concerned that the poor kid was in hypothermic shock.

A sensor is not a switch, so I also needed a relay which will turn the fan on when the Arduino tells it to. While I was shopping for a relay, I set up a Nano Data Logger to see what kind of information the IR sensor could capture from the stove.

StoveRelay_20171119-1624-3.JPG
Above: The woodstove inset into a fireplace. Below the glass door is a fan unit with two squirrel cage fans which blow room air all the way around the firebox and out again above the door. The fans do not interact with the airflow into the firebox. To the left is a Nano Data Logger.

IMG_20171117_111221422.JPG
Above: A Nano Data Logger with LCD display. The logging shield has a real time clock and a microSD card so I can record data every five minutes and also monitor the stove temperature in real time. The Nano is powered with 5 volts from a phone charger (with mini USB instead of micro USB).

StoveRelay_20171120-1673PS.jpg
Above: A little I2C hub connects three I2C devices: LCD display, IR sensor, and BME280 sensor (left) for room temperature and humidity. The IR sensor is hidden by the black bracket which holds it pointed at the corner of the woodstove.

IMG_20171122_134718746.jpg
Above: The IR sensor is taped to the bracket pointed at the woodstove. The bracket helps shield the sensor from things that are not the woodstove. The bracket is made from an empty spool for PLA filament.

3days915.PNG
Above: Results from three days of logging with the low range sensor (MLX90615). The highest temperature this sensor will record is 121.09°C so the high peaks are truncated. The X axis begins and ends at midnight. During these days I loaded the woodstove after midnight and did not add more wood until mid-morning. It looks like I was generally adding wood four times a day (when the temperature starts to climb rapidly from a low point). The Melexis sensor reports the temperature of the sensor itself (orange trace) in addition to the temperature of the IR radiation impacting it (red trace). During this testing phase, I was sometimes adjusting things to see how the results responded, so the data above have some weird patterns that require cautious interpretation.

The common infrared sensors on eBay have a temperature range (-40 to 115°C) that might be too low for a woodstove that can reach a firebox temperature of 500°C (930°F). Fortunately I don't need to know the temperature of the firebox to know when to turn on the fan, I just need to know that the stove is really hot. So the lower temperature range would work quite well for this project. But I decided to try to capture more of the thermal range of the stove and bought a more expensive ($10.00) sensor with a temperature range of -70 to 380°C.

3days914.PNG
Above: Results from three days with the high range sensor (MLX90614). This sensor is calibrated to 380°C so the peaks are not truncated. The X axis begins and ends at midnight. The first of these three days is Thanksgiving when I was not around all day to tend the woodstove. Instead of loading wood in the morning, I stirred the ashes several times to mix air into them and encourage combustion of the unburned charcoal. When I returned at about 9:00 PM, I cleaned out the warm ashes and restarted the fire. On Friday and Saturday I added wood to the stove about four times each day as usual.

This will be the 20th winter that I have heated this house with this woodstove, so I didn't think there was anything else to learn about the process. These preliminary results suggest that I don't know as much as I thought I did. It's revealing to see exactly how much the stove temperature oscillates (that has to be hard on the old stove). I never thought about how often I add wood to the stove, but the answer appears to be four. This data logging system also creates the possibility of doing discrete experiments. I could compare the thermal response of loading the stove with hop hornbeam versus basswood (hop hornbeam has twice the BTUs of basswood).

Based on these data, I think I want the fan to turn off when the temperature drops to about 70°C. That will turn the fan off for about four or five hours every night. I was planning on buying a relay for $2.00 to connect to the Nano Data Logger, but then I found that there is an Adafruit FeatherWing with a relay suitable for 220 volts AC. It costs $10, but I already have a Feather and that route saves me the effort of learning how relays work. I sort of have this working (you can see its effect in the second graph above) although it sometimes refuses to flip the switch. I'll let you know if I get it debugged.

Here is the sketch running on the Nano Data Logger.


I did this Help out by offering feedback! Browse other activities for "nano-data-logger"


People who did this (0)

None yet. Be the first to post one!


9 Comments

Love this post, Chris! Do you think there's enough here for someone else to try building and testing this out, and that it's worth marking as an activity?

Stay warm! :-)

Is this a question? Click here to post it to the Questions page.

Reply to this comment...


Thanks Jeff. That's a really interesting question. I did not include step by step instructions, so a complete novice would have to do some research to learn how I2C devices are connected to Arduinos (VCC, GND, SCL, SDA). But I linked to the tag page for the Nano Data Logger, so it's easy to find more information in the related research notes listed there. There is a helpful pdf about the Nano Data Logger at the KAPtery with all the critical details. I included a well-commented sketch, so it should be fairly easy to get one of these running.

It's really easy to get one of these running if you start with the kit at the KAPtery and add three components.

If you order all of these parts on eBay you would spend about $30 (but you can't buy the I2C hub) and you would have to wait three or four weeks. The KAPtery items above will snap together into a working logger with no soldering, unlike the eBay parts. US shipping from the KAPtery is free and takes a few days. Customer service is pretty good when I'm not out splitting wood.

I tagged the post as an activity.

Reply to this comment...


Awesome, and also great formatting btw on your parts list here. I've been linking to "prerequisite" activities in some of my recent posts, which helps people know where to find things they should do before attempting an activity with a lot of implicit knowledge (perhaps kinda like you're saying here, regarding Nano Data Logger setup). Maybe we can have some kind of tagging grid, or power tag, which marks some 'do these first' activities. first-do:### or prerequisite:##### ...

Reply to this comment...


Hi, Chris - did you see the Open Hour on data loggers on Monday?

Is this a question? Click here to post it to the Questions page.

Reply to this comment...


I like the idea of linking to other notes that set the stage for the current one. I was using the response:##### powertag for a while, but that does not seem to trigger a display consistently, and some people probably missed the display when it was there. The series:#### powertag is also relevant, but it might be nice to reserve that for a certain type of series.

The data logging Open Hour looks interesting. I have been avoiding web conferencing to spare everyone the disruption from my shabby rural bandwidth, but maybe I can connect via chat or something.

Reply to this comment...


We can resuscitate response: and we can have a range of similar but distinct powertags - esp. now that we have the cog-shaped powertag menu that can help out.

You can call into Zoom and we can just have a Chris hand puppet for the visuals.

Reply to this comment...


This is awesome! I haven't the time to rig up all this with the baby and am jealous of the data you can collect, but we use a non-electric fan on our wood stove. Minimum temp is 122F/50C and the speed is proportional to the temp. I didn't know they could be had for $40! https://www.amazon.com/dp/B018G9ZKBK/ref=asc_df_B018G9ZKBK5319609/?tag=hyprod-20&creative=395033&creativeASIN=B018G9ZKBK&linkCode=df0&hvadid=194003459169&hvpos=1o2&hvnetw=g&hvrand=4357379295133181127&hvpone=&hvptwo=&hvqmt=&hvdev=m&hvdvcmdl=&hvlocint=&hvlocphy=9006808&hvtargid=pla-310730434040

Is this a question? Click here to post it to the Questions page.

Reply to this comment...


Hi Adam,

Those thermoelectric fans are very smart. This guy on YouTube shows how to make one with a $3.00 thermoelectric module and parts recycled from old computers.

I would try that but my inset stove has no room on top for anything.

Is this a question? Click here to post it to the Questions page.

Reply to this comment...


Ha, that's so cool, the DIY thermoelectric fan. There's also a USB cell phone charger mod! https://www.youtube.com/watch?v=2upXOb6cPLA

Is this a question? Click here to post it to the Questions page.

Reply to this comment...


Login to comment.