Go to file
Dylan Missuwe af47d122db
Update LICENCE
2023-03-20 11:51:31 +01:00
Vitis added python simulation script 2022-11-09 12:28:35 +01:00
hardware/PhasedArray5x5 first commit 2022-10-11 18:08:33 +02:00
img update readmr.md 2022-10-14 22:31:06 +02:00
simulation Update .gitignore 2022-11-09 12:38:51 +01:00
.gitignore Update .gitignore 2022-11-09 12:38:51 +01:00
.project added python simulation script 2022-11-09 12:28:35 +01:00
LICENCE Update LICENCE 2023-03-20 11:51:31 +01:00
README.md Update README.md 2022-12-02 23:30:15 +01:00

README.md

Ultrasonic_Phased_Array

This repository will contain all the sources for a working ultrasonic phased array. The vitis project in this repository is to be used in a accoustic levitation example.

abstract

When we power up the system, the transducers start emitting ultrasonic sound waves each at the same frequency (40kHz) and amplitude. However, the phases of the transducers are software controllable. This gives us full control over the beam shape and direction exiting the transducer array.

Working principle

Lets consider an example where we want to send a single pulse of airpressure to a certain point in space. We have an array of transducers we can work with. Since the waves travel in a sphere around the transducers, we can time the pulses at each transducer in such a way that all the wavefronts arrive at the same time in a single focal point. This is illustrated in the animation below.

If we were to send a sinewave with the same delay through the transducers instead of a single pulse, all the peaks and troughs of those waves would ideally only add up in the focal point. The amplitude would then be the greatest at that point and ideally cancel out everywhere else. This is actually not always the case because a side effect of using a periodic signal is that we create te posibility of sidelobes. Sidelobes are areas where some of the sinewaves constructively add up unwantedly. To prevent the occurance of sidelobes, we need to space the transducers with a distance between 1/2 wavelength, and 1/4 wavelength.

In the case for this project, the spacing between the sources is 10 mm wich is more than double the recommended wavelength so we expect some loss of energy through sidelobes. Even more so diagonally since the sources are placed in a rectangular grid and the diagonal spacing is 10*sqrt(2) mm. Placing the sources in a hexagonal grid solves this issue but this makes the design of the PCB more challanging. For this reason i opted to design a rectangular grid of sources.

The waves exiting the transducers will look something like this.

The red dots at the bottom are sources emitting pure sinusodial signals with an adjusted phase delay so all the waves are in phase at the red dot around the middle.

Setup

There are two array's used in the levitation example. One is facing upwards and the other is facing downwards. They are facing eachother with a distance of 70mm. This distance is arbitrarily chosen based on the needed volume for levitation.

FPGA

The FPGA used in this project is the ZYNQ XC7Z020 on a Zybo Z7 board. It contains two distinct parts: The processing system (PS) and the programmable logic (PL):

Programmable Logic

The PL contains an implementation which receives 7 bit values from the PS (Processing System) for every transducer. This value sets the phase of the output signal. This is acheived by making a fifo of length = 2^7 in the case of a phase resolution of 7 bits. The 40KHz signal is fed into the fifo at 40KHz * 2^7 = 5.12MHz. The reason for this is because we want exactly 1 full period of the signal in the fifo. The 7 bit value determines at which address of the fifo the output signal is tapped from. This way wan can adjust the phase of the output signal in 2^7 steps per period. Im currently cleaning up the FPGA implementation and turning it into an IP-block, i will include the files in this repository once i'm finished.

Processing System

TODO

Video

Below is a video showing two ultrasonic arrays levitating a piece of styrofoam in an preprogrammed path. Watch the video