【读书2】【2014】基于MATLAB的雷达信号处理基础(第二版)——天线(3)

实际上,这与用于信号处理(例如数字滤波器设计)中旁瓣控制的窗口或加权函数没有不同,峰值旁瓣可以容易地降低到大约25到40dB,但是以增加主瓣宽度为代价的。

In fact, this is no different from thewindow or weighting functions used for sidelobe control in other areas ofsignal processing such as digital filter design, and peak sidelobes can easilybe reduced to around 25 to 40 dB at the expense of an increase in mainlobewidth.

实现较低的旁瓣是有可能的,但是由于制造缺陷和固有的设计限制,在实际设计中却是很难实现。

Lower sidelobes are possible, but aredifficult to achieve due to manufacturing imperfections and inherent design limitations.

在实际使用中通常省略式(1.9)中的常数因子0.89,这样可以粗略估计出均匀辐射孔径的3-dB波束宽度约为λ/Dy弧度。

The factor of 0.89 in Eq. (1.9) is often dropped, thus roughlyestimating the 3-dB beamwidth of the uniformly illuminated aperture as just λ/Dyradians.

事实上,这是4dB的波束宽度,但是由于实际中的孔径加权扩展了主瓣宽度,因此,这是一个很好的工程经验法则。

In fact, this is the 4-dB beamwidth, butsince aperture weighting spreads the mainlobe it is a good rule of thumb.

天线功率增益G是指在相同的输入功率条件下,天线的峰值辐射强度与从无衰减、各向同性(全向)天线观察到的辐射强度的比值。

The antenna power gain G is the ratio ofpeak radiation intensity from the antenna to the radiation that would beobserved from a lossless, isotropic (omnidirectional) antenna if both have thesame input power.

功率增益是由天线方向图和天线损耗决定的。

Power gain is determined by both theantenna pattern and by losses in the antenna.

典型天线的一个有用的经验法则是

A useful rule of thumb for a typicalantenna is (Stutzman, 1998)

在这里插入图片描述

典型的雷达天线从宽扇形搜索波束的约10dB增益到可用于搜索和跟踪的笔形窄波束的约40dB增益。

Though both higher and lower values arepossible, typical radar antennas have gains from about 10 dB for a broadfan-beam search antenna to approximately 40 dB for a pencil beam that might beused for both search and track.

有效孔径Ae是用于描述接收天线性能的一个重要特征。

Effective aperture Ae is animportant characteristic in describing the behavior of an antenna being usedfor reception.

如果电磁波以功率密度W W/m2入射到天线上,作用在天线负载上的功率为P,则有效孔径定义为:

If a wave with power density W W/m2 is incident on theantenna, and the power delivered to the antenna load is P, the effective aperture is defined as the ratio (Balanis, 2005)

在这里插入图片描述

Thus, the effective aperture is the area Aesuch that, if all of the power incident on the area was collected and deliveredto the load with no loss, it would account for all of the observed power outputof the actual antenna.(感觉这句话没有翻译的必要!!!)

注意:Ae并不是天线的真实物理孔径的面积。

Note, however, that Ae is notthe actual physical area of the antenna.

而是由天线接收到的入射功率密度总量决定的人为定义的面积。

It is a fictional area that accounts for theamount of incident power density captured by the receiving antenna.

有效孔径与天线指向性直接相关,因此也与天线增益和效率相关。

Effective aperture is directly related toantenna directivity, which in turn is related to antenna gain and efficiency.

对于大多数天线,天线效率几乎都差不多,有效孔径与增益之间的关系如下:

For most antennas, the efficiency is near unityand the effective aperture and gain are related by (Balanis, 2005)

在这里插入图片描述

天线相前(或波前)和相位中心是两个非常有用的概念。

Two more useful antenna concepts are theantenna phase front (or wave front) and phase center (Balanis, 2005; Sherman,1984).

辐射天线的相前是指场相位恒定为常数的任何表面区域。

A phase front of a radiating antenna is anysurface on which the phase of the field is a constant.

在远场条件下,至少在局部区域内,电磁波的相前通常近似为球形。

In the far-field, the phase fronts areusually approximately spherical, at least over localized regions.

天线的相位中心就是指相前曲面的中心位置。

The phase center of the antenna is thecenter of curvature of the phase fronts.

换句话说,如果将全向辐射器放置在相位中心,则产生的相前与真实使用的天线相前具有最优匹配度。

Put another way, the phase center is thepoint at which an isotropic radiator should be located so that the resultingphase fronts best match those of the actual antenna.

——本文译自Mark A. Richards所著的《Fundamentals of Radar Signal Processing(Second edition)》

更多精彩文章请关注微信号:在这里插入图片描述

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
MATLAB中,NURBS(非均匀有理B样条)是一种强大的数学工具,用于表示和处理复杂的曲线和曲面。NURBS在计算机图形学、CAD(计算机辅助设计)、CAM(计算机辅助制造)等领域有着广泛的应用。下面将详细探讨MATLAB中NURBS的绘制方法以及相关知识点。 我们需要理解NURBS的基本概念。NURBS是B样条(B-Spline)的一种扩展,其特殊之处在于引入了权重因子,使得曲线和曲面可以在不均匀的参数空间中进行平滑插值。这种灵活性使得NURBS在处理非均匀数据时尤为有效。 在MATLAB中,可以使用`nurbs`函数创建NURBS对象,它接受控制点、权值、 knot向量等参数。控制点定义了NURBS曲线的基本形状,而knot向量决定了曲线的平滑度和分布。权值则影响曲线通过控制点的方式,大的权值会使曲线更靠近该点。 例如,我们可以使用以下代码创建一个简单的NURBS曲线: ```matlab % 定义控制点 controlPoints = [1 1; 2 2; 3 1; 4 2]; % 定义knot向量 knotVector = [0 0 0 1 1 1]; % 定义权值(默认为1,如果未指定) weights = ones(size(controlPoints,1),1); % 创建NURBS对象 nurbsObj = nurbs(controlPoints, weights, knotVector); ``` 然后,我们可以用`plot`函数来绘制NURBS曲线: ```matlab plot(nurbsObj); grid on; ``` `data_example.mat`可能包含了一个示例的NURBS数据集,其中可能包含了控制点坐标、权值和knot向量。我们可以通过加载这个数据文件来进一步研究NURBS的绘制: ```matlab load('data_example.mat'); % 加载数据 nurbsData = struct2cell(data_example); % 转换为cell数组 % 解析数据 controlPoints = nurbsData{1}; weights = nurbsData{2}; knotVector = nurbsData{3}; % 创建并绘制NURBS曲线 nurbsObj = nurbs(controlPoints, weights, knotVector); plot(nurbsObj); grid on; ``` MATLAB还提供了其他与NURBS相关的函数,如`evalnurbs`用于评估NURBS曲线上的点,`isoparm`用于生成NURBS曲面上的等参线,以及`isocurve`用于在NURBS曲面上提取特定参数值的曲线。这些工具对于分析和操作NURBS对象非常有用。 MATLAB中的NURBS功能允许用户方便地创建、编辑和可视化复杂的曲线和曲面。通过对控制点、knot向量和权值的调整,可以精确地控制NURBS的形状和行为,从而满足各种工程和设计需求。通过深入理解和熟练掌握这些工具,可以在MATLAB环境中实现高效的NURBS建模和分析。
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值