Skip to main content

Making an Acoustic Levitator - Introduction


About a year ago I came across this video talking about the concept of acoustic levitation and the fact that you can use sound to move objects in mid air. While I was really intrigued I also felt that having such a setup at home would either be really tough to build or would be really expensive. Soon after, I came across a video about a team of electronics and computer science engineers at Bristol University who actually came up with a method to make these levitators really cheap and were even selling and promoting kits to school students to do the same. This made me confident that I might be able to pull it off too....
😝😝😝😝😝😝😝😝😝
Being an engineering student I was told to make a project under something called a "Non-Teaching Credit Course". So I chose this as my project for submission.

SO HOW THE HELL DOES ACOUSTIC LEVITATION WORK???
A short answer of this question could be "Standing Waves", but that doesn't really explain anything, so let me try and simplify things a bit.
We first need a wave like an ocean wave, going up and down forming crests and troughs.
Then we get an obstruction or reflective surface.
When a wave hits the surface it bounces back and moves in the opposite direction towards the source.
But you see, there is already a wave coming from the source, so instead of coming back these two waves interfere with each other.
Sometimes they add up to form a bigger crest or trough and sometimes they cancel out to cause no motion at all.
If you tune the frequency of the wave and the distance between the source and obstruction correctly you get a "Standing Wave" or a wave that looks like its not moving at all.

Its kinda like waving a piece of rope tied at one end to form such shapes as in the image above.....

GOT IT??
YES??
Great!! continue reading!!
NO??
Nevermind!! You don't need to understand to make it!....
(See its like gravity... you don't need to completely understand it to fall down, gravity works anyways. Similarly standing waves will form regardless of you understanding how they work.....)
that's what I love about physics it always works even if you don't get it........                     😝😝😝😝😝😝😝😝😝😝😝😝😝😝😝😝😝😝
So yeah coming back to standing waves........
Thinking about waves, sound is also a wave rather its a wave in air..... so we can have standing waves in air too using sound......!!
If you have standing waves in air, you get high pressure and low pressure bubbles of air between the source and the reflective surface.
In the image the white foggy lines are the low pressure areas.
At the bottom is an ultrasonic speaker to make the standing wave against a glass sheet.

So just by having a speaker against a carefully positioned glass sheet we can make standing waves in air....



Now, if the speaker is powerful enough you can actually place small particles in the low pressure areas and they will float.....!!!!

So all I needed were ultrasonic speakers, an amplifier, a good signal source and that's it....!!


Got any queries??? 
E-Mail me at: shashwath.sundar@gmail.com

Comments

  1. Wowwwww! That’s a fantastic idea ! Keep on working and dreaming always

    ReplyDelete

Post a Comment

Popular posts from this blog

DESIGNING A RELAY COMPUTER: Relays

In the previous posts I highlighted the various concepts that are fundamental to designing a computer. Now I think its time to mention the ways of practically applying these concepts to design a computer. The first thing I should highlight is that I will not be using transistors, I'll be using relays. This is due to the fact that its easier to understand how a relay works than to understand how a transistor works. Also, this seems to be the easiest way to understand how computers actually work since we are using mechanical switches instead of solid state switches (transistors). What is a Relay?? Relays are basically electrically controlled switches. Inside a relay is an electromagnet. when the electromagnet is powered, it attracts a metal strip that in turn operates a switch. Most widely available relays are SPDT relays or Single Pole Double Throw relays. In these relays the switch has 3 terminals- Common terminal , NO i.e. normally open terminal and NC i.e. normally ...

DESIGNING A RELAY COMPUTER: The Adding Machine

In a CPU there is circuitry dedicated to do all kinds of arithmetic operations and logical operations on binary numbers. Adders are circuits that reside in this ALU section of the CPU and they, as the name suggests, add numbers. So, how exactly does a circuit add binary numbers?? As I had previously mentioned in my post talking about number systems, certain properties of numbers remain the same regardless of the base of the number system. So, adding two binary numbers is similar to adding two decimal numbers. Lets first look at how we add decimal numbers. Suppose we were to add two 3 digit numbers: To add these two numbers first we add the numbers in the units place. Upon adding the two numbers we get either a single digit answer or a double digit answer. If the answer is a single digit it is considered the units digit of the final sum and we add the digits of the next place value. If the answer is a two digit number the units place of the answer is considered as ...

Making a URISC Processor: The Idea

So a while back I saw this video on Youtube by "Gary Explains" talking about a "One Instruction Set Computer". For those who do not know, a computer processor does a fixed set of things or follows a fixed set of instructions. Usually modern processors have hundreds of instructions. In the OISC or URISC (Ultimate Reduced Instruction Set Computer) processor the idea is to have one universal instruction that the processor executes that allows the programmer to write any program. The first time I heard of this idea I fell off my chair with excitement (Literally). My mind was really blown by the fact that you could write any program with just one instruction. So after going through what "Gary" on Youtube had to offer... I sat down and tried to come up with a design of this hypothetical processor that executes only one instruction. In the video Gary talked about a processor that executed an instruction called 'SUBLEQ' which simply means, SUB tract and th...