资源简介

相控阵天线是组装在一起的天线阵元的集合,其中每个单元的辐射图在结构上虞相邻天线的辐射图合成形成为主辦的有效辐射图。主辦在期望的方向辐射能耐,而波束设计的目的是在不需要的方向上形成零点和旁辦。本资源提供了MATLAB的仿真方法模拟相控阵波束赋形的动图。

资源截图

代码片段和文件信息

% 更多专业内容请关注:
% 雷达通信电子战
clc;clear all;close all;
N=32;
a=0.5; % a=d/lambda
theta=-pi:0.01:pi;
for thetaB=0:1:60
    thetaB1=thetaB/180*pi;
    sum=0;
    for i=0:N-1
        y1=exp(1i*2*pi*i*a*(sin(theta)-sin(thetaB1)));   
        sum=sum+y1;
    end    
    sum=abs(cos(theta).^0.5.*sum);
    sum=sum/N;
    clf;
%     polarplot(thetasum2‘-r‘);
    polarplot(thetasum‘-r‘);
    pause(0.0005);    
end


for thetaB=60:-1:0    
    thetaB1=thetaB/180*pi;    
    sum=0;
    for i=0:N-1
        y1=exp(1i*2*pi*i*a*(sin(theta)-sin(thetaB1)));   
        sum=sum+y1;
    end    
    sum=abs(cos(theta).^0.5.*sum);
    sum=sum/N;

    clf;
%     polarplot(thetasum2‘-r‘);
    polarplot(thetasum‘-r‘);
    pause(0.0005);    
end

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----

     文件        783  2019-07-27 12:21  相控阵波束扫描“动图”的Matlab仿真\figPattern.m

     文件       4981  2019-07-27 12:20  相控阵波束扫描“动图”的Matlab仿真\polarplotdb.m

     目录          0  2019-07-27 12:21  相控阵波束扫描“动图”的Matlab仿真

----------- ---------  ---------- -----  ----

                 5764                    3


评论

共有 条评论