Broad Array
Broad Array
In this section we are going to analyze the variation of number of elements (N)
while fixing the distance (d) between those elements.
MatLab Code:
lam=1/2;
N=input('Number of elements in array=');
d=lam/2;
theta=0:0.01:2*pi;
Bd=(2*pi/lam)*d*cos(theta);
num=sin(N*Bd/2);
den=sin(Bd/2);
F=abs(num./den);
polar(theta,F);
y=['N = ',num2str(N),'; Wavelength = 1/2'];
title(y);
2
0.5
1
1.5
2
30
210
60
240
90
270
120
300
150
330
180 0
N = 2; Wavelength = 1/2
2
4
6
8
30
210
60
240
90
270
120
300
150
330
180 0
N = 8; Wavelength = 1/2
3
5
10
15
30
210
60
240
90
270
120
300
150
330
180 0
N = 14; Wavelength = 1/2
5
10
15
20
30
210
60
240
90
270
120
300
150
330
180 0
N = 20; Wavelength = 1/2
4
Conclusion:
The above figures shows the radiation pattern at N=2, 8, 14 and20. From
the above figures we can conclude that as the number of elements N is
increased, decreases and consequently the Directivity increases.
In addition to that the numbers of side lobes are multiplying at the center
of the radiation pattern.
In order to avoid the appearance of grating side lobes in the radiation
pattern d should be
.
The code below shows that we have modified d to be
.
Matlab Code:
lam=1/2;
N=input('Number of elements in array=');
d=lam/4;
theta=0:0.01:2*pi;
Bd=(2*pi/lam)*d*cos(theta);
num=sin(N*Bd/2);
den=sin(Bd/2);
F=abs(num./den);
polar(theta,F);
y=['N = ',num2str(N),'; Wavelength = 1/4'];
title(y);
The simulation will be at N=8 and the figures below show the results.
5
The figure on the left shows that when we take d less than the wave length the side
lobes decrease, so as we decrease d the number of lobes decreases.
2
4
6
8
30
210
60
240
90
270
120
300
150
330
180 0
N = 8; Wavelength = 1/4
2
4
6
8
30
210
60
240
90
270
120
300
150
330
180 0
N = 8; Wavelength = 1/2
6
2. Broad Side Array 2:
In this section we have fixed the number of elements N and we vary
.
N=10 and
: 0.1-1.5
N=10;
d=input('Enter the distance between two elements=');
theta=0:0.01:2*pi;
Bd=(2*pi)*d*cos(theta);
num=sin(N*Bd/2);
den=N*sin(pi*d*cos(theta));
F=abs(num./den);
polar(theta,F);
y=['N = 10; Distance =',num2str(d)];
title(y);
0.5
1
1.5
2
30
210
60
240
90
270
120
300
150
330
180 0
N = 2; Wavelength = 1/2
7
0.2
0.4
0.6
0.8
1
30
210
60
240
90
270
120
300
150
330
180 0
N = 10; Distance =0.6
0.2
0.4
0.6
0.8
1
30
210
60
240
90
270
120
300
150
330
180 0
N = 10; Distance =0.1
8
0.2
0.4
0.6
0.8
1
30
210
60
240
90
270
120
300
150
330
180 0
N = 10; Distance =1.5
0.2
0.4
0.6
0.8
1
30
210
60
240
90
270
120
300
150
330
180 0
N = 10; Distance =1
9
Conclusion:
We can conclude from the above figures that as
In this section we are going to analyze the variation of the number of elements (N)
while fixing the distance between those elements.
MatLab Code:
lam=1/2;
N=input('Number of elements in array=');
d=lam/4;
theta=0:0.01:2*pi;
f=(2*pi/lam)*d*cos(theta)-(2*pi/lam)*d;
num=sin(N*f/2);
den=sin(f/2);
F=abs(num./den);
polar(theta,F);
y=['N = ',num2str(N),'; d = lam/4'];
title(y);
11
2
4
6
8
30
210
60
240
90
270
120
300
150
330
180 0
N = 8; d = lam/4
0.5
1
1.5
2
30
210
60
240
90
270
120
300
150
330
180 0
N = 2; d = lam/4
12
5
10
15
20
30
210
60
240
90
270
120
300
150
330
180 0
N = 20; d = lam/4
5
10
15
30
210
60
240
90
270
120
300
150
330
180 0
N = 15; d = lam/4
13
Conclusion:
The above figures shows the radiation pattern at N=2, 8, 15 and20. From
the above figures we can conclude that as the number of elements N is
increased, decrease and we observe huge amount of side lobes at the
center.
4. End-Fire Array 2:
In this section we have fixed the number of elements N and we have varied
.
N=10 and
: 0.1-1.5
N=10;
d=input('Enter the distance between two elements=');
theta=0:0.01:2*pi;
f=pi*d*(cos(theta)-1);
num=sin(N*f);
den=N*sin(f);
F=abs(num./den);
polar(theta,F);
y=['N = ',num2str(N),'; d/lam = ',num2str(d)];
title(y);
14
0.2
0.4
0.6
0.8
1
30
210
60
240
90
270
120
300
150
330
180 0
N = 10; d/lam = 0.1
0.2
0.4
0.6
0.8
1
30
210
60
240
90
270
120
300
150
330
180 0
N = 10; d/lam = 0.4
15
0.2
0.4
0.6
0.8
1
30
210
60
240
90
270
120
300
150
330
180 0
N = 10; d/lam = 1
0.2
0.4
0.6
0.8
1
30
210
60
240
90
270
120
300
150
330
180 0
N = 10; d/lam = 0.8
16
Conclusion:
Its clear that when we vary