相控阵工具箱和 IsotopicAntennaElement 的方向性
Phased Array Toolbox and directivity of IsotopicAntennaElement
您不能解释一下 directivity
在 MATLAB Phased Array Toolbox 中的计算方式和计算单位吗?
我运行他们simple example和IsotropicAntennaElement
。
myAnt = phased.IsotropicAntennaElement();
ang = [-30,-20,-10,0,10,20,30; 0,0,0,0,0,0,0];
freq = 1e9;
d = directivity(myAnt,freq,ang)
它给了我这个:
d =
1.0e-03 *
0.1102
0.1102
0.1102
0.1102
0.1102
0.1102
0.1102
MATLAB手册上说方向性是给定方向的强度与同功率各向同性天线的强度之比。
但这到底是怎么回事,为什么同位素天线本身的方向性不给出 0 dB?
这是否意味着各向同性天线的辐射比各向同性天线少?或者应该怎么理解?
它在 dBi units, as stated in the the documentation:
directivity
Compute element directivity
D = directivity(H,FREQ,ANGLE)
computes the directivity (in dBi)
of the element for the directions specified in ANGLE
(in
degrees) and frequencies specified in FREQ
(in Hz).
所以对于各向同性天线应该是 0
。您得到 0.0001102
,接近于 0
。
您不能解释一下 directivity
在 MATLAB Phased Array Toolbox 中的计算方式和计算单位吗?
我运行他们simple example和IsotropicAntennaElement
。
myAnt = phased.IsotropicAntennaElement();
ang = [-30,-20,-10,0,10,20,30; 0,0,0,0,0,0,0];
freq = 1e9;
d = directivity(myAnt,freq,ang)
它给了我这个:
d =
1.0e-03 *
0.1102
0.1102
0.1102
0.1102
0.1102
0.1102
0.1102
MATLAB手册上说方向性是给定方向的强度与同功率各向同性天线的强度之比。
但这到底是怎么回事,为什么同位素天线本身的方向性不给出 0 dB?
这是否意味着各向同性天线的辐射比各向同性天线少?或者应该怎么理解?
它在 dBi units, as stated in the the documentation:
directivity
Compute element directivity
D = directivity(H,FREQ,ANGLE)
computes the directivity (in dBi) of the element for the directions specified inANGLE
(in degrees) and frequencies specified inFREQ
(in Hz).
所以对于各向同性天线应该是 0
。您得到 0.0001102
,接近于 0
。