主要内容

线性arraray

Create linear antenna array

描述

线性arraray类在X-Y平面中创建线性天线阵列。默认情况下,线性阵列是一个两元素偶极阵列。偶极子是中心的。隔离时,每个偶极子在70 MHz之间均匀。

Creation

描述

example

大批= linearArraycreates a linear antenna array in the X-Y plane.

example

大批= linearArray(Name,Value)class to create a linear antenna array, with additional properties specified by one, or more name-value pair arguments.Nameis the property name and价值is the corresponding value. You can specify several name-value pair arguments in any order asName1,Value1,...,纳梅,valuen. Properties not specified retain their default values.

Output Arguments

expand all

Linear array, returned as an线性arraray目的。

Properties

expand all

单个天线元件或数组元件,指定为天线或阵列对象。

例子:'Element',monopole

阵列中的天线元件数,指定为标量。

例子:'NumElements',4

天线元件之间的间距,指定为标量或矢量为米。默认情况下,偶极子元素间隔2 mapart.

例子:“ elementspacing”,3

Data Types:double

天线元件的激发幅度,指定为标量或矢量。将属性值设置为0to model dead elements. This value corresponds to the excitation voltages for the elements in the array.

例子:'AmplitudeTaper',3

Data Types:double

Phase shift for antenna elements, specified as a scalar or vector in degrees. This value corresponds to the excitation voltages for the elements in the array.

例子:'PhaseShift',[3 3 0 0]

Data Types:double

Tilt angle of the array specified as a scalar or vector with each element unit in degrees. For more information, seeRotate Antennas and Arrays.

例子:“倾斜”,90,

例子:'Tilt',[90 90],'TiltAxis',[0 1 0;0 1 1]tilts the array at 90 degrees about the two axes, defined by vectors.

Data Types:double

Tilt axis of the array, specified as:

  • 笛卡尔坐标的三元素矢量为米。在这种情况下,每个矢量始于原点,并沿着x,y-和z轴上的指定点位于。

  • 空间中的两个点,每个点指定为笛卡尔坐标的三元素向量。在这种情况下,阵列围绕线路旋转,将两个点连接在太空中。

  • A string input describing simple rotations around one of the principal axes, 'X', 'Y', or 'Z'.

有关更多信息,请参阅Rotate Antennas and Arrays.

例子:'tiltaxis',[0 1 0]

例子:'tiltaxis',[0 0 0; 0 1 0]

例子:array.tiltaxis ='z'

Data Types:double

Object Functions

show Display antenna or array structure; display shape as filled patch
info Display information about antenna or array
梁宽 天线的光束宽度
charge 金属或介电天线或阵列表面的电荷分布
correlation Correlation coefficient between two antennas in array
current Current distribution on metal or dielectric antenna or array surface
设计 设计原型天线或阵列,以共振围绕指定频率
efficiency Radiation efficiency of antenna
埃菲尔德 Electric and magnetic fields of antennas; Embedded electric and magnetic fields of antenna element in arrays
impedance Input impedance of antenna; scan impedance of array
layout Display array or PCB stack layout
金属或介电天线或阵列结构的网格性能
优化 使用SADEA优化器优化天线或阵列
图案 辐射模式和天线或阵列的相;阵列中天线元件的嵌入式图案
图案Azimuth 天线或阵列的方位角图案
模式增长 Elevation pattern of antenna or array
rcs 平台,天线或阵列的计算和图雷达横截面(RCS)
returnloss Return loss of antenna; scan return loss of array
sparameters 计算天线和天线阵列对象的S参数

例子

全部收缩

Create a linear array of four dipoles and plot the layout of the array.

la = linearArray; la.NumElements = 4; layout(la);

图包含一个坐标轴对象。的axes object with title Array layout contains 5 objects of type scatter, text.

Plot the radiation pattern of a four element linear array of dipoles at a frequency 70MHz.

la = linearArray('NumElements',4);图案(LA,70E6);

图包含一个轴对象和类型Uicontrol的其他对象。轴对象包含12个类型补丁的对象。

Create a linear array of two monopoles.

M1 =单子;m2 =单子('高度',0.5); mla = linearArray
MLA =属性属性的线性ARARARRAY:元素:[1x1偶极子]数字:2个elementsPacing:2 AmplitudEtaper:1 phaseShift:0 tilt:0 tilt:0 tiltaxis:[1 0 0]
mla.element = [m1,m2];表演(MLA);

图包含一个坐标轴对象。的axes object with title linearArray of monopole antennas contains 8 objects of type patch, surface. These objects represent PEC, feed.

Create an array of discones with element spacing of 3 m.

la = linearArray('Element',Discone);la.elementspacing = 3;表演(洛杉矶)

图包含一个坐标轴对象。带有标题线性的轴对象,圆点天线包含6个类型贴片的对象。这些对象代表pec,feed。

创建线性阵列的矩形。

ra =矩形arraray("Element",洛杉矶)
ra = rectangularArray with properties: Element: [1x1 linearArray] Size: [2 2] RowSpacing: 2 ColumnSpacing: 2 Lattice: 'Rectangular' AmplitudeTaper: 1 PhaseShift: 0 Tilt: 0 TiltAxis: [1 0 0]
show(ra)

图包含一个坐标轴对象。的axes object with title rectangularArray of linearArray antennas contains 24 objects of type patch, surface. These objects represent PEC, feed.

创建线性阵列并绘制模式。

la = linararray('Element',linearArray(“ elementspacing',1)); show(la)

图包含一个坐标轴对象。带有线性天线的标题线性的轴对象包含12个类型贴片的对象。这些对象代表pec,feed。

图案(LA,70E6);

图包含一个轴对象和类型Uicontrol的其他对象。轴对象包含12个类型补丁的对象。

参考

[1] Balanis, C.A.Antenna Theory. Analysis and Design,第三版。纽约:威利,2005年。

Version History

在R2015a中引入