Directivity did not match our expectation
古いコメントを表示
As we know, 1X16 linear antenna array arrangement should have larger peak directive gain than 4X4 square array, because the former's beamwidth is narrower which can consentrate beamforming resolution in a given direction.
However, in the phased array system toolbox, this truth cannot be proven... Here is our code,
if true
% code
figure
ha = phased.ULA('NumElements',16);
phased.ULA('Element',ha,'NumElements',16,'ElementSpacing',0.5 * lambda);
plotResponse(sArray,'RespCut','Az','Format','Polar','Unit','dbi');
hold on;
ha = phased.URA('Size',[4 4]);
phased.URA('Element',ha,'Size',[4 4],'ElementSpacing',0.5 * lambda);
plotResponse(sArray,'RespCut','Az','Format','Polar','Unit','dbi');
hold off;
end
if we find the peak values for 1X16 and 4X4 in the figure, 4X4 always has the higher gain value...
Thanks, Ralph
採用された回答
その他の回答 (0 件)
カテゴリ
ヘルプ センター および File Exchange で Antennas, Microphones, and Sonar Transducers についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!