Brian Jackson

Professor of Physics at Boise State University

  • About Brian
  • Our Group’s Research
    • CV
    • Joining the Boise State Planetary Science Research Group
    • Research Experiences for Undergrads
    • Ultra-short-period planet database
    • The Short Period Planets Group — S(u)PerP(i)G
    • Google Scholar Page
    • Code
  • Teaching
  • Public Outreach
    • Boise State’s Astronomical Observatory
    • Central Idaho Dark Sky Reserve STEM Network

Within the Sound of Sleeting

Posted by admin on January 12, 2017
Posted in: Uncategorized. Tagged: iphone science.

It’s been miserably cold in Boise, and we’ve had record snowfall during the last few weeks.

Sunday, however, it was relatively warm — warm enough, in fact, that the snow that was slated to fall fell as sleet instead.

So I took my daughter over to a friend’s house for a playdate, and as we walked over, we heard the beautiful sound of the tiny icy pebbles clattering to the ground. The sound was so distinctive and regular that I whipped out my phone to record it.

http://www.astrojack.com/wp-content/uploads/2017/01/Sleet_Falling.wav

When I got home later, it seemed like there must be something interesting I could do with the recording, and the first thing that struck me was to analyze the frequency of the clattering sound. In other words, how often did I hear a sleet pellet strike the ground?

To begin, I imported the m4a file from my iphone and then convert it via command-line into a wav file (since I planned to use python and it was easier to find ways to manipulate wav than m4a files):
ffmpeg -i Sleet_Falling.m4a Sleet_Falling.wav

Then I fired up ipython notebook and imported and plotted the wav file:

[codesyntax lang=”python”]

%matplotlib inline

import numpy as np
import wave
import matplotlib.pyplot as plt

from scipy.io import wavfile
# Load the data and calculate the time of each sample
samplerate, data = wavfile.read('Sleet_Falling.wav')
times = np.arange(len(data))/float(samplerate)

# Make the plot
# You can tweak the figsize (width, height) in inches
fig = plt.figure(figsize=(6, 4))
ax = fig.add_subplot(111)
ax.plot(times, data, lw=0.5) 
ax.set_xlim([0,10])
ax.set_ylim([-2000,2000])
ax.set_xlabel('time (s)')

fig.savefig('Sleet_Falling.png', dpi=500

[/codesyntax]

The distinctive rapid crackling is apparent in the waveform.

Next, I calculated a Fourier transform of the signal:

[codesyntax lang=”python”]

from numpy.fft import rfft

ft = np.fft.rfft(data)
n = data.size
timestep = 1./samplerate
freq = np.fft.rfftfreq(n, d=timestep)
period = 1./freq

fig = plt.figure(figsize=(6, 6))
ax = fig.add_subplot(111)
ax.semilogx(period, abs(ft), lw=0.5)

mx_arg = abs(ft).argmax()
print(period[mx_arg])

fig.savefig('Sleet_Falling_fft.png', dpi=500)

[/codesyntax]

which shows a distinct peak at about 1 millisecond.

Assuming the sleet I saw is about 5 mm in radius, I estimate a terminal velocity of about 5 m/s. If I imagine (unrealistically) that the sleet particles are falling in a single column, with one directly above another and traveling at 5 m/s, then one striking the ground every millisecond means the sleet balls are basically packed end to end, as tightly as they can be [1 ms = (5 mm)/(5 m/s)]. Of course, if the pellets were spread out and striking the ground at random places, they could be way more spread out and not as many would have to fall at a time in order to make the sound I heard.

Turns out I’m not the first person to try estimating the precipitation rate using sound. NASA deploys microphones in the ocean to record the distinctive sound of raindrops.

From http://earthobservatory.nasa.gov/Features/Rain/rain_2.php.

In fact, different size raindrops make different sounds because some sizes of drops generate bubbles and others do not, and so scientists can actually estimate the sizes of raindrops by just looking at the distribution of frequencies.

https://www.youtube.com/watch?v=KpyrveRZwmo

Unfortunately, I can’t make the same kinds of measurements using my iPhone because I haven’t calibrated the microphone using a sound of known amplitude. Maybe something for the future.

Posts navigation

← Meditations by Marcus Aurelius
The Rapid Dismemberment of Exoplanets →
  • Recent Posts

    • University of Tokyo – 2025 Jun 10
    • M-MATISSE 2025 Workshop
    • Aerial Exploration of Mars – PNACP 2025
    • Summer 2025 First Friday Astronomy
    • Spring 2025 First Friday Astronomy
  • Archives

    • June 2025
    • May 2025
    • April 2025
    • January 2025
    • December 2024
    • November 2024
    • October 2024
    • September 2024
    • August 2024
    • July 2024
    • June 2024
    • May 2024
    • April 2024
    • March 2024
    • February 2024
    • January 2024
    • December 2023
    • November 2023
    • October 2023
    • September 2023
    • August 2023
    • July 2023
    • May 2023
    • April 2023
    • March 2023
    • February 2023
    • January 2023
    • December 2022
    • November 2022
    • October 2022
    • September 2022
    • August 2022
    • July 2022
    • June 2022
    • May 2022
    • April 2022
    • March 2022
    • February 2022
    • January 2022
    • December 2021
    • November 2021
    • October 2021
    • September 2021
    • August 2021
    • July 2021
    • June 2021
    • May 2021
    • April 2021
    • March 2021
    • February 2021
    • January 2021
    • December 2020
    • November 2020
    • October 2020
    • September 2020
    • August 2020
    • July 2020
    • June 2020
    • May 2020
    • April 2020
    • March 2020
    • February 2020
    • January 2020
    • December 2019
    • November 2019
    • October 2019
    • September 2019
    • August 2019
    • July 2019
    • June 2019
    • May 2019
    • April 2019
    • March 2019
    • February 2019
    • January 2019
    • December 2018
    • November 2018
    • October 2018
    • September 2018
    • August 2018
    • July 2018
    • June 2018
    • May 2018
    • April 2018
    • March 2018
    • February 2018
    • January 2018
    • December 2017
    • November 2017
    • October 2017
    • September 2017
    • August 2017
    • July 2017
    • June 2017
    • May 2017
    • April 2017
    • March 2017
    • February 2017
    • January 2017
    • December 2016
    • November 2016
    • October 2016
    • September 2016
    • August 2016
    • July 2016
    • June 2016
    • May 2016
    • April 2016
    • March 2016
    • February 2016
    • January 2016
    • December 2015
    • November 2015
    • October 2015
    • September 2015
    • August 2015
    • July 2015
    • June 2015
    • May 2015
    • April 2015
    • March 2015
    • February 2015
    • January 2015
    • December 2014
    • November 2014
    • October 2014
    • September 2014
    • August 2014
    • July 2014
    • June 2014
    • May 2014
    • April 2014
    • March 2014
    • February 2014
    • January 2014
    • December 2013
    • November 2013
    • October 2013
    • September 2013
    • August 2013
    • July 2013
Proudly powered by WordPress Theme: Parament by Automattic.