资源简介

运行Ftheta.m文件可以看到一个GUI界面,只需要在界面里输入线阵天线的参数就可以得到线阵天线的方向图(当d>lamda时会有栅瓣产生,原理可以参考《相控阵雷达技术》)。Fuction.m文件是画方向图的函数。

资源截图

代码片段和文件信息

%天线方向图子函数
function F=F(NlamthetaBd)
theta=-pi/2:0.001:pi/2;%目标方向
thetaB=thetaB*pi/180; %波束最大值指向
% F=N*sin(N*pi*d*(sin(theta)-sin(thetaB))/lam)./(N*pi*d*(sin(theta)-sin(thetaB))/lam);
% F=abs(F); %近似公式得到的值
%以下是天线方向图函数
 F=sin(N*pi*d*(sin(theta)-sin(thetaB))/lam)./sin(pi*d*(sin(theta)-sin(thetaB))/lam).*exp(i*(N-1)*pi*d*(sin(theta)-sin(thetaB))/lam);
 F=abs(F);%求模

 plot(theta*180/piF‘g‘);
 title(‘直角坐标系下线阵天线方向图‘);xlabel(‘theta‘);ylabel(‘F(theta)‘)
 figurepolar(thetaF‘b‘);
 title(‘极坐标系下线阵天线方向图‘);
end


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

     文件        579  2009-12-20 14:16  线阵天线方向图m文件\F.asv

     文件        591  2009-12-20 14:37  线阵天线方向图m文件\F.m

     文件       8428  2009-12-20 14:41  线阵天线方向图m文件\Ftheta.asv

     文件       4295  2009-12-20 14:40  线阵天线方向图m文件\Ftheta.fig

     文件       8476  2009-12-20 14:50  线阵天线方向图m文件\Ftheta.m

     目录          0  2009-12-18 19:36  线阵天线方向图m文件

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

                22369                    6


评论

共有 条评论