Directivity did not match our expectation
Mostrar comentarios más antiguos
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
Respuesta aceptada
Más respuestas (0)
Categorías
Más información sobre Antennas, Microphones, and Sonar Transducers en Centro de ayuda y File Exchange.
Productos
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!