Close

Actual time-of-flight data

A project log for Exploring the internals of trees with sound

Time-of-flight, tomography and more

I've been using The 2x4 of Science as a test article for this project.  Three piezo sensors were clamped in place on it:

(Ignore the holes for now.  I'm not always great about taking pictures as I go.)

A is on the right; B is in the middle; C is on the left. The red lines are 5 cm apart.  Here's a table showing the distances they're set at:

Sensor C
5 cm
Sensor B35 cm
Sensor A
80 cm
Hammer impact
100 cm

Thus, the distances for the three segments are:

And since the hammer is at the 100cm mark, the vibration should hit A, then B, then C.

Data capture is, at the moment, tedious.  I hook up the pico to my laptop, hook up two of the sensors (say, A and B) and start a screen session.  I do a batch of 20 impacts; the timing for each one gets printed to my terminal:
I copy-paste that into my editor, run awk to massage it into CSV form, then paste it into LibreOffice.  I move the sensors to B and C and re-do the process, then again with sensors A and C.  That gives me time of flight for each segment.  I then export the spread to another CSV file (now with headers & columns for each segment), and add that to the repo.  From there, I can fire up Jupyterlab and analyze the data with Pandas.  (If you want a great book to read on this, I highly recommend Python Data Science Handbook; it's truly excellent, and the author has very generously made the text available under a CC license.)

For extra fun, I made a point of tearing down the equipment between each run: disconnecting the sensors and the pico, taking the 2x4 of Science off the desk, then putting it all back together.  I wanted to see if there was any difference being introduced by moving the equipment around.

And what did I find?  Here's a strip graph (I think that's the right term) showing the results of 80 runs:


The Y axis is microseconds.  For each segment the red dots are individual times, and the black dot is the mean.  Remember, the hammer was beyond the A sensor, and vibration travelled from A → B → C.  Here's what I notice:

I did another 100 runs, but this time placing the hammer at the 55 cm mark, and only measuring B → C.  To duplicate the table setup above:
Sensor C
5 cm
Sensor B
35 cm
Hammer impact
55 cm
I wanted to see if the hammer being closer to the sensor would make the times more consistent.  It didn't:

Also notice how the absolute time has changed: there's still about 200 microseconds between the groups, but now they're at ~525 and ~740 microseconds in this trial, vs 300 and 500 microseconds in the first.

I have a couple questions here:

And another thing: why do I need the hammer for consistent times?  My understanding is that the speed of sound in a material does not change based on its loudness, but something about consistent impacts really makes timing, uh, consistent.

Discussions