[go: up one dir, main page]

0% found this document useful (0 votes)
24 views6 pages

Matlab

The document outlines a MATLAB program designed to calculate and visualize the radiation patterns of dipole antennas at various lengths (λ/2, λ/4, 3λ/4, λ, and 2λ). It includes equations for the electric field components and provides sample plots for each dipole configuration. The program prompts the user for operating frequency, radial distance, and constant current to generate the corresponding radiation patterns.
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
24 views6 pages

Matlab

The document outlines a MATLAB program designed to calculate and visualize the radiation patterns of dipole antennas at various lengths (λ/2, λ/4, 3λ/4, λ, and 2λ). It includes equations for the electric field components and provides sample plots for each dipole configuration. The program prompts the user for operating frequency, radial distance, and constant current to generate the corresponding radiation patterns.
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
You are on page 1/ 6

RADIATION PATTERN OF DIPOLES

STATEMENT : To find the radiation pattern of λ/2, λ/4, 3λ/4, λ, and 2 λ using mat lab.

EQUATION :

Where
E = J η I0
− jkr
e
2 πr (
SINθ
E =Far zone Electric field component
cos ( KL2 COSθ)−cos KL2 )
η=¿Intrinsic impedence
Io = constant current
r = radial distance
L=length of the dipole

PROGRAM :
η =120*pi;

F=input('Please Enter Operating Frequency F(Hz)=\n'); %% where F=1Ghz


disp('----------------')
lambda=(3e8/F)
r=input('Please Enter radial distance =\n'); %%where r=10
disp('----------------')
L=lambda/n; %%where n=1, 1/2, 3/4,2,...
disp('----------------')
Io=input('Please Enter Constant Current ='); %%where Io=1
disp('----------------')
k=2*pi/lambda;
theta=0:0.01:2*pi;
E= j*η *Io*exp(-j*k*r)*(1/2*pi*r)*(cos(k*L*cos(theta)/2)-cos(k*L/2))./sin(theta);
polar(theta,abs(E))
title(' Radiation Pattern ')
HALF WAVE DIPOLE(λ/2)

Rectangular plot of lambda/2 Dipole Antenna


6000

5000

4000

3000

2000

1000

0
0 1 2 3 4 5 6 7

Radiation plot of lambda/2 Dipole Antenna


90 6000
120 60

4000
150 30
2000

180 0

210 330

240 300
270
QUARTER WAVE DIPOLE(λ /4)
Rectangular plot of lambda/4 Dipole Antenna
1800

1600

1400

1200

1000

800

600

400

200

0
0 1 2 3 4 5 6 7

Radiation plot of lambda/4 Dipole Antenna


90
2000
120 60
1500

150 1000 30

500

180 0

210 330

240 300
270
3λ/4 DIPOLE ANTENNA

Rectangular plot of 3lambda/4 Dipole Antenna


12000

10000

8000

6000

4000

2000

0
0 1 2 3 4 5 6 7

Radiation plot of 3lambda/4 Dipole Antenna


90 15000
120 60

10000
150 30
5000

180 0

210 330

240 300
270
λ DIPOLE ANTENNA

Rectangular plot of lambda Dipole Antenna


12000

10000

8000

6000

4000

2000

0
0 1 2 3 4 5 6 7

Radiation plot of lambda Dipole Antenna


90 15000
120 60

10000
150 30
5000

180 0

210 330

240 300
270
2λ DIPOLE ANTENNA
Rectangular plot of 2lambda Dipole Antenna
14000

12000

10000

8000

6000

4000

2000

0
0 1 2 3 4 5 6 7

Radiation plot of 2 lambda Dipole Antenna


90 15000
120 60

10000
150 30
5000

180 0

210 330

240 300
270

You might also like