How to create an underwater acoustic pulse of 1 magnitude peak in time domain using Phased array toolbox
4 views (last 30 days)
Show older comments
I am trying to design a Uniform Linear Array of Hydrophones. I want to design a pulse that represents bubble bursting from wave breaking on the surface of the ocean. I am using phased.IsoSpeedUnderwaterPaths and phased.MultipathChannel for transmitting the signal. I have tried using phased.UnderwaterRadiatedNoise but could not make it work out. Any suggestions? The operating frequency is 20kHz and sampling frequency 40kHz.
0 Comments
Answers (1)
Moksh
on 25 Aug 2023
Hi Shobhit,
You can try using the ‘RectangularWaveform’ function of the phased array toolbox in MATLAB, which can also help in creating an acoustic waveform.
Here is an example for this:
prf = 1; % Pulse repetition frequency
pulseWidth = 10e-3;
pulseBandwidth = 1/pulseWidth;
fs = 2*pulseBandwidth; % Sampling frequency
% Defining the rectangular pulse waveform system object
wav = phased.RectangularWaveform('PRF',prf,'PulseWidth',pulseWidth,'SampleRate',fs);
wave = wav(); % Generated Wave
This creates a magnitude 1 waveform in the time domain.
For further understanding of this function and your required changes, you can refer to the following documentation.
Hope this helps!
0 Comments
See Also
Categories
Find more on Pulsed Waveforms in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!