Cooling for Raspberry Pi

Few days back I noticed that my Raspberry Pi 3 is running quite hot. Sometimes crossing 80 degrees. This is  quite rare but since it is running for days without a break in this hot weather, I planned to do something to bring temperature lower. But problem is that Raspberry Pis don’t come with any kind of cooling kits which are easily available. Most of the options commercially available are quite useless for the price. I didn’t want to spend too much for it, so started with some DIY cooling kit and ran stress tests to check which work and are worth the effort to keep.

I found a simple script for stress testing online. It just runs CPU under full load and takes temperature readings every few seconds. Full script:

Ammunition box with all of Raspberry pi setup inside
Ammunition box with all of Raspberry pi setup inside

#!/bin/bash
vcgencmd measure_temp
sysbench –test=cpu –cpu-max-prime=20000 –num-threads=4 run >/dev/null 2>&1
vcgencmd measure_temp

In spirit of full disclosure, all these tests were done over the course of 4 days. They were all hot with outside temperatures during day time around 40 degrees but air conditioner was on for most of them time. Still, the room temperature was not constant for more than 4 tests at a time.  The data below is not 100% reliable and just gives an indication about the general characteristics of each cooling method based on my observations.

EQUIPMENT USED:

  1. A 80 mm cooling fan from an old PC case. I spliced a USB cable on to it (red and black wires) and powered it using an old tablet charger (5 Volt, 2 Ampere). The fan is rated for 12 V, runs a bit slower. It is not ideal solution but works for now.
  2. Very cheap thermal paste.
  3. A 1 Rupee coin with one side filed smooth as a test heat sink.
  4. Cheap and small aluminum heat sinks supposedly designed for Raspberry Pi. They had some sticky “thermal paste” on bottom which looked more like a sticker. So I removed that used my own.
  5. All of this Raspberry Pi setup is inside an old ammunition box salvaged from a junkyard. It has a power supply extension board, a powered USB hub, a USB wifi dongle, a USB harddisk (connected to Raspberry Pi itself, not hub), a 80 mm fan as described in point 1 and OSMC operating system with Kodi.

TEST RESULTS:

1.These are temperature readings without any type of cooling.

TEST 1

temp=60.7’C

Passive cooling with heatsink, cheap thermal paste and a filed coin
Passive cooling with heatsink, cheap thermal paste and a filed coin
temp=73.6’C
temp=74.1’C
temp=75.2’C
temp=75.8’C
temp=75.2’C
temp=75.8’C
temp=75.2’C
Difference in starting and peak temperature : 15.1
TEST 2
temp=50.5’C
temp=75.2’C
temp=79.0’C
temp=83.3’C
temp=83.8’C
temp=82.7’C
temp=82.2’C
temp=83.8’C
Difference in starting and peak temperature : 33.3
Result: Peak temperature varies between 75 and 84 degrees. But hovers around 83 for most part when air conditioner was off. Quite hot.

2. With only coin on processor. No thermal paste or fan

TEST 1
temp=54.8’C
temp=69.8’C
temp=71.4’C
temp=72.5’C
temp=72.5’C
temp=73.1’C
temp=73.1’C
temp=73.1’C
Difference in starting and peak temperature : 18.3
TEST 2
temp=60.7’C
temp=77.4’C
temp=79.0’C
temp=77.9’C
temp=83.8’C
temp=80.6’C
temp=79.5’C
temp=79.5’C
Difference in starting and peak temperature : 23.1
TEST 3
temp=52.1’C
temp=65.5’C
temp=66.6’C
temp=66.6’C
temp=67.7’C
temp=67.1’C
temp=69.8’C
temp=69.3’C
Difference in starting and peak temperature : 17.7
TEST 4
temp=60.7’C
temp=83.8’C
temp=84.4’C
temp=84.4’C
temp=84.4’C
temp=84.4’C
temp=84.4’C
temp=84.9’C
Difference in starting and peak temperature : 24.2
Result: With a filed coin acting as a heat sink, there is a small drop of 2 to 4 degrees. Not much to be useful.

3. With the fan blowing air directly on processor.

TEST 1
temp=49.9’C
temp=59.1’C
temp=59.1’C
temp=58.5’C
temp=58.0’C
temp=58.0’C
temp=56.4’C
Difference in starting and peak temperature : 8.1. It is great as the peak temperature was only 58.
TEST 2
temp=52.6’C
temp=69.8’C
temp=69.8’C
temp=67.7’C
temp=68.8’C
temp=69.3’C
temp=69.8’C
temp=65.0’C
Difference in starting and peak temperature : 17.2
Result: Idle temperatures are lower by 10 degrees and peak temperatures by 19 – 20 degrees with fan blowing air directly on processor. Differences in starting and peak temperatures also show a lot of improvement as the peak temp stays closed to 70.

4. With fan facing up.

This was an experiment to check if the reverse air flow would be as effective in cooling.
TEST 1
temp=47.2’C
temp=64.5’C
temp=64.5’C
temp=64.5’C
temp=65.0’C
temp=64.5’C
temp=65.0’C
temp=65.5’C
Difference in starting and peak temperature : 18.35
TEST 2
temp=52.6’C
temp=69.8’C
temp=67.7’C
temp=68.8’C
temp=67.7’C
temp=67.1’C
temp=69.8’C
temp=69.8’C
Difference in starting and peak temperature : 17.2
TEST 2
temp=49.4’C
temp=66.6’C
temp=67.7’C
temp=66.6’C
temp=69.8’C
temp=68.8’C
temp=68.8’C
temp=66.6’C
Difference in starting and peak temperature : 20.4
Result: This result is interesting as the peak and idle temperatures are quite close to those with opposite airflow.

5. Coin with thermal paste, no fan.

I applied a thin layer of thermal paste on coin and ran test without the fan
TEST 1
temp=45.6’C
temp=60.1’C
temp=61.2’C
temp=61.2’C
temp=61.2’C
temp=61.8’C
temp=62.3’C
temp=62.3’C
Difference in starting and peak temperature : 16.7
TEST 2
temp=52.1’C
temp=73.1’C
temp=76.3’C
temp=79.0’C
temp=82.2’C
temp=82.7’C
temp=82.7’C
Difference in starting and peak temperature : 30.6
TEST 3
temp=58.0’C
temp=77.4’C
temp=78.4’C
temp=81.7’C
temp=80.1’C
temp=83.8’C
temp=84.9’C
temp=82.7’C
Difference in starting and peak temperature : 26.9
Result: Seems like thermal paste I got is fairly useless. I ran the test 3 times to be sure.

6. Coin with thermal paste and fan blowing on it

TEST 1
temp=46.2’C
temp=59.1’C
temp=59.1’C
temp=59.6’C
temp=59.1’C
temp=59.1’C
Difference in starting and peak temperature : 13.4
TEST 2
temp=50.5’C
temp=60.7’C
temp=61.2’C
temp=62.8’C
temp=63.4’C
temp=63.9’C
temp=63.4’C
temp=64.5’C
Difference in starting and peak temperature : 14
Result: There is some improvement from direct fan without a heat sink and quite a bit improvement from running with only coin with thermalpaste.

7. With aluminum heatsink, no fan or thermal paste

These tests were done with the small aluminum heatsink.

TEST 1
temp=61.2’C
temp=79.5’C
temp=83.8’C
temp=83.8’C
temp=83.8’C
temp=83.8’C
temp=83.8’C
temp=84.4’C
Difference in starting and peak temperature : 23.2
Result: This heatsink has minimal effect in cooling the processor. It is too small and even the fins don’t help much compared to a simple coin.

8. With aluminum heatsink and fan blowing on it

temp=51.5’C
temp=62.8’C
temp=62.8’C
temp=63.4’C
temp=63.4’C
temp=60.7’C
temp=64.5’C
temp=62.3’C
Difference in starting and peak temperature : 13
temp=51.5’C
temp=66.1’C
temp=65.5’C
temp=66.1’C
temp=66.6’C
temp=66.6’C
temp=68.8’C
temp=67.7’C
Difference in starting and peak temperature : 17.3
Result: Somewhat surprisingly, this is better than direct air flow on processor.

9. With aluminum heastink and thermal paste

temp=60.1’C
temp=78.4’C
temp=83.8’C
temp=83.8’C
temp=84.4’C
temp=83.8’C
temp=83.8’C
temp=84.9’C
Difference in starting and peak temperature : 24.8
temp=53.7’C
temp=76.8’C
temp=78.4’C
temp=83.8’C
temp=83.8’C
temp=84.4’C
temp=83.8’C
temp=82.7’C
Difference in starting and peak temperature : 30.7
Result: This thermal paste seems to be quite useless.

10. With aluminum heastink, thermal paste and fan

temp=49.4’C
temp=64.5’C
temp=69.8’C
temp=66.1’C
temp=65.5’C
temp=66.1’C
temp=66.6’C
temp=69.8’C
Difference in starting and peak temperature : 20.4
temp=47.8’C
temp=62.3’C
temp=62.3’C
temp=62.3’C
temp=62.3’C
temp=62.8’C
temp=63.4’C
temp=64.5’C
Difference in starting and peak temperature : 16.7
Result: In this case, temperatures are around 2 degrees higher than without thermal paste.

11.With aluminum heastink, thermal paste and coin.

I put the coin on top of processor. Applied some thermal paste on it’s other side and put the heatsink on it. This test was without fan. I thought extra metal will help cooling.
temp=54.8’C
temp=74.7’C
temp=79.0’C
temp=83.3’C
temp=83.8’C
temp=83.8’C
temp=84.4’C
temp=84.4’C
Difference in starting and peak temperature : 29.6
Result: There is a difference of only 1 -3 degrese less if only one of either heatsink or coin was used. For some reason, extra metal made no difference.

12. With aluminum heastink, thermal paste, coin and fan.

Same set as above but with fan blowing air on top of it.
temp=50.5’C
temp=63.9’C
temp=62.8’C
temp=62.8’C
temp=62.8’C
temp=63.4’C
temp=62.8’C
temp=62.8’C
Difference in starting and peak temperature : 12.9
Result: This is slightly better than using either coin or heatsink and 4-5 degrees better than direct airflow.

Conclusions:

For some test runs, using the filed coin was better than the heat sink. Cheap thermal paste is next to useless in this case here. Only active cooling with fan provides any kind of appreciable cooling. Passive cooling will probably work if the heatsinks are bigger. But I don’t have any lying around and there will laso be the issue of bigger heatsink touching and shorting other components on the board.

Other posts related to Raspberry:

Leave a Reply

Your email address will not be published. Required fields are marked *