电偶极子天线的方向性函数为
其中,为偶极子长度,为波长
归一化(设)的表达式为
辐射方向图
对应的 Octave 代码
theta=meshgrid(eps:pi/180:pi); // 坐标网格
phi=meshgrid(eps:2*pi/180:2*pi)'; // 坐标网格
F=abs(cos(theta)); // 方向图函数
[x,y,z]=sph2cart(phi,theta,F); // 球坐标转换直角坐标
mesh(x,y,z); // 3D 图
~~~~ 辛诗禹
其中,为偶极子长度,为波长
归一化(设)的表达式为
theta=meshgrid(eps:pi/180:pi); // 坐标网格
phi=meshgrid(eps:2*pi/180:2*pi)'; // 坐标网格
F=abs(cos(theta)); // 方向图函数
[x,y,z]=sph2cart(phi,theta,F); // 球坐标转换直角坐标
mesh(x,y,z); // 3D 图
~~~~ 辛诗禹