This thread has been locked.
If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.
Tool/software:
Dear Sir,
The MMWAVE SDK User Guide states that I can perform a phase shift on three TX antennas by changing the <txPhaseShifter>
parameter in the configuration file.
Furthermore, the document "Beamforming_in_LRPD.pdf" provides a MATLAB script as an example for calculating the <txPhaseShifter>
parameter necessary for beamforming, using a one-dimensional antenna array indexed as m_ind = [0 1 2].
If I want to implement beamforming on the AWR6843AOP as well, I am wondering if there is a similar MATLAB script available to calculate the control numbers for the AWR6843AOP antenna array.
Sincerely,
HC.Chang
Hi,
Could you provide links and/or install paths to the documents you are referring to?
Thanks,
Clinton
Dear sir:
The MMWAVE SDK User Guide's path is: C:/ti/mmwave_studio_02_01_01_00/docs/mmwave_studio_cascade_user_guide.pdf
And the link of Beamforming in LRPD is: https://dev.ti.com/tirex/explore/node?a=1AslXXD__1.20.00.11&node=A__AE-Bpc-wQfi-OR.2V9TzCw__radar_toolbox__1AslXXD__1.20.00.11&r=1AslXXD__1.00.00.26&r=1AslXXD__1.00.01.07
Sincerely,
HC.Chang
Hello,
For the AOP device, we provide the layout of our antenna patterns also in the radar toolbox:
https://dev.ti.com/tirex/explore/node?node=A__AEHBDXaS3MIoORQMpX07MQ__radar_toolbox__1AslXXD__LATEST
You'll have to modify matlab script to work with such antenna pattern.
Regards,
Tim
Dear Tim,
Here is the MATLAB script we adjusted for calculating the phase shift based on the AWR6843AOPEVM antenna. Could you help us verify if the calculated phase shift control parameters are correct?
Hello,
Just a heads up, most of our engineers will be out until July 8th due to a United States holiday. If you have any updates or questions, please hold off on replying until next week when we can respond to you then. We will also try to get back to you next week as well.
Thank you for your patience,
Kristien
Hi,
I wanted to check to see if you were able to move forward on your project.
Thanks,
Clinton
Dear Clinton,
As mentioned previously, we still need to verify whether the phase shifter parameters calculated by our proposed MATLAB script can correctly control the AWR6843AOP for phase shifting.
My MATLAB script is as follows:
Best Regards,
Hi,
Have you tried using the results of your calculations and observed the behavior of the device? Is it not working as you expect?
Thanks,
Clinton
Hi Clinton,
After enabling the TX phase shift, we initially intended to perform beamsteering on the TX array to improve the point cloud resolution for adults and children. However, the current experimental results show that after changing the phase shift parameters, firstly, the point cloud at the main beam position did not improve, and secondly, the points in the point cloud exhibit a deviation issue.
Best,
Hsiu-Che Chang
Hi, Hsiu-Che:
Our understanding is TX beamforming can increase the SNR, but do not really improve the angle resolution.
From our TX beamforming notes https://dev.ti.com/tirex/explore/node?node=A__AE-Bpc-wQfi-OR.2V9TzCw__radar_toolbox__1AslXXD__LATEST, we provided an example of phase rotation for one-dimensional antenna.
theta_desired = -33.75;
m_ind = [0 1 2]; % antenna distance in unit of lambda in the azimuth direction
phaseTX_rad = 2*pi*(m_ind*sind(theta_desired));
For two-dimensional TX antenna layout, you can consider the following code.
theta_desired = -33.75; %desired beam focus-angle in azimuth direction
thetaE_desired = 20; % desired beam focus-angle in elevation direction
m_ind = [0 1 2]; % antenna distance in unit of lambda in the azimuth direction
n_ind = [ 0 1/2 0]; % antenna distance in unit of lambda in the elevation direction
phaseTX_rad = 2*pi*(m_ind*sind(theta_desired)*cosd(thetaE_desired) + n_ind*sind(thetaE_desired));
Note that this is not used in any of our formal release code, because we never try TX beamforming with AWR6843AOP or AWR6843ISK-ODS type of antenna. You can use this code at your own risk.
Other than this, we can not help you with any code review/debug.
Best,
Zigang