Continue to Site

Welcome to EDAboard.com

Welcome to our site! EDAboard.com is an international Electronics Discussion Forum focused on EDA software, circuits, schematics, books, theory, papers, asic, pld, 8051, DSP, Network, RF, Analog Design, PCB, Service Manuals... and a whole lot more! To participate you need to register. Registration is free. Click here to register now.

What is the reason for minor lobes being formed in a directional pattern?

Status
Not open for further replies.

suhasd90

Newbie level 6
Joined
Feb 25, 2013
Messages
14
Helped
0
Reputation
0
Reaction score
1
Trophy points
1,283
Activity points
1,374
What is the reason for side lobes and back lobes being formed in a directional pattern? OR why does SLL increase when beamwidth decreases?
 

If you read an antenna theory text book and study how directional patterns are created (by superimposing the characteristic of multiple elementary antenna elements), you see that they are hard to avoid.
 

That is a bit like asking Why is there air. Minor lobes are a natural occurrence of practical distributions. There are strong correlations to Fourier transforms. A binomial aperture distribution does not form minor lobes but it is relatively impractical to produce. High gain/directivity arrays actually produce the highest gain when sidelobes are present. Reducing sidelobes actually generally spreads the main beam and thus usually degrades peak performance. Phase and amplitude disturbances in an aperture generally also lead to the appearance of minor lobes. The other thing that minor lobes do is give antenna engineers something interesting to do.
 
  • Like
Reactions: FvM

    FvM

    Points: 2
    Helpful Answer Positive Rating
Simple array antenna feeding network provides equal phase delays from each element to a common antenna port. Let's put some signal source in front of antenna. In this case each antenna element will receive signal with almost equal phases and amplitudes, thus each individual signals will sum up to a maximum possible amplitude. If we start to move signal source away from initial position, then each array antenna element start to receive the same signal, but with shifted phase. If relative phase shift between received signals become close to +-180 degrees, then it is almost cancelled out. Minor lobes appear because significant part of antenna element phases are not cancelled out.

Basic understanding of side lobe phenomenon does not require any knowledge about antennas. You only must know that each antenna element have some position in space, and that received signal phase may be calculated based on that position and incoming/outgoing signal direction using Array Factor formulas (considering only reciprocal antennas). Here is an example I made some time ago to learn Array Factor:
Code:
F(theta,phi,x,y)=Exp(i*2*Pi*x*Sin(theta)*Cos(phi)) *Exp(i*2*Pi*y*Sin(theta)*Sin(phi));
fld(t,p,dx,dy)=F(t,p,0*dx,0)+F(t,p,1*dx,0)+F(t,p,2*dx,0)+F(t,p,3*dx,0)
+F(t,p,4*dx,0)+F(t,p,5*dx,0)+F(t,p,6*dx,0)+F(t,p,7*dx,0)
+F(t,p,8*dx,0)+F(t,p,9*dx,0)+F(t,p,10*dx,0)+F(t,p,11*dx,0)
+F(t,p,12*dx,0)+F(t,p,13*dx,0);
Theta,Phi - direction vector angles.
This formulas describe antenna consisting of 14 elements (n=0 to 13). DX is spacing between elements. For example, it may be patch array antenna with single row of 14 patches.
Then I plot array factor for two different element spacing's: DX=1.2 of wavelength and DX=0.72 of wavelength:
Code:
Plot(20*Log10(Abs(Cos(x)*fld(x,0,1.2,1))),xMin=-90,xMax=90)
Plot(20*Log10(Abs(Cos(x)*fld(x,0,0.72,1))),xMin=-90,xMax=90)
Plotted vs angle Theta=-90 to +90 degrees (in my case it was H-plane of patch antenna array radiation pattern). Also I multiplied by Cos(x) as a simple approximation of single patch radiation pattern.

As you can see, for DX=1.2 wavelength spacing there are huge grating lobes appear (blue plot). For DX=0.72 grating lobes are fully disappeared (green plot), but main lobe became wider:
radiation-pattern.png

One way to eliminate unwanted lobes is to use radiating elements which have low radiation pattern in side lobe direction. There are even cases when main lobe must be eliminated to form double-beam antenna using grating lobes. There are good articles on this topic:
1) DUAL-BEAM ARRAY ANTENNA BASED ON CIRCULAR PATCH ELEMENTS WITH CONICAL BEAM PATTERN
https://www.jpier.org/PIERM/pier.php?paper=14032601
2) Synthesis of unequally spaced printed antenna arrays by modeling of the feed network


And some other useful links:
https://en.wikipedia.org/wiki/Passive_electronically_scanned_array
The individual wavefronts are spherical, but they combine (superpose) in front of the antenna to create a plane wave, a beam of radio waves traveling in a specific direction.

Very good online articles on this topic:
https://www.antenna-theory.com/arrays/main.php
https://www.antenna-theory.com/arrays/arrayfactor.php
 
Status
Not open for further replies.

Part and Inventory Search

Welcome to EDABoard.com

Sponsor

Back
Top