You are on page 1of 3

KONKAN GYANPEETH COLLEGE

1 OF ENGINEERING, KARJAT
Affiliated to University of Mumbai, Approved by A.I.C.T.E. , New Delhi
KonkanGyanpeethShaikshanikSankul, Vengaon Road, Dahivali Karjat, Dist: Raigad 410201

DEPARTMENT OF EXTC

Experiment4

AIM:- Write a program for Array Factor pattern of N Element amplitude


endfire array
Software :version Scilab 5.5.2
Theory:-
the phase-difference α between adjacent elements is equal to 2πdλ radians, the
co nditio n for a maximum of radiation is satisfied wh en φ = 90 °
a n d for this value only ,provided that d < λ/2. The maximum field intensity is
radiated in a direction along the line of the array, “off the end” rather than off the
side. Hence the name endfire array.
The maximum is toward only one of the ends of the array, rather than in both
the endfire directions. In terms of Fig, if the progressive phase change is a
retardation going in the direction of the positive y-axis by the amount α per element,
the beam will be in the φ = 90° direction. If the sign of α is changed, or its
a m o u n t i s i n c r e a s e d b y 1 8 0 d e g r e e s w i t h o u t c h a n g i n g t h e element
spacing, the beam will be in the direction
φ = 270°.Although the condition stated above for the value of α results in an endfire
array, it does not result in an endfire pattern with the maximum possible
directivity and
narrowest possible beam
KONKAN GYANPEETH COLLEGE
2 OF ENGINEERING, KARJAT
Affiliated to University of Mumbai, Approved by A.I.C.T.E. , New Delhi
KonkanGyanpeethShaikshanikSankul, Vengaon Road, Dahivali Karjat, Dist: Raigad 410201

SCILAB CODE FOR ARRAY FACTOR PATTERN OF N ELEMENT


UNIFORM AMPLITUD EENDFIRE ARRAY

clear ;
clc ;
n =10;
lambda =1;
d = lambda /4;
k =(2* %pi ) / lambda
theta =0.0001:0.01:2* %pi ; // t h e t a v a r i e s f rom 0 to 360
beta1 = -( k * d ) ; // 1 =−kd
psi = k * d .* cos( theta )+ beta1 ; //P r o g r e s s i v e Phase
AF =sin( n .* psi /2) ./( n * sin ( psi /2) ) ; //E x p r e s s i o n f o r A r ray F a c t o r
polarplot ( theta , AF ) ; // p l o t f o r =−kd
beta2 = k * d ; // 2 =kd
psi = k * d .* cos( theta )+ beta2 ; //P r o g r e s s i v e Phase
AF =sin( n .* psi /2) ./( n * sin ( psi /2) )
AF =sin( n .* psi /2) ./( n * sin ( psi /2) ) ; //E x p r e s s i o n f o r A r ray F a c t o r
// xset ( ' l i n e s t y l e ’ ,3);h1 = legend ( ’ =Kd ’ , ’ =−Kd ’ )
polarplot ( theta , AF ) ; // p l o t
title (”POLAR PLOT FOR ARRAY FACTOR PATTERN FOR NELEMENT
UNIFORM AMPLITUDE END FIRE ARRAY CASE ");
KONKAN GYANPEETH COLLEGE
3 OF ENGINEERING, KARJAT
Affiliated to University of Mumbai, Approved by A.I.C.T.E. , New Delhi
KonkanGyanpeethShaikshanikSankul, Vengaon Road, Dahivali Karjat, Dist: Raigad 410201

Result: Array factor pattern of N Element uniform Amplitudeend pattern array is


plotted .

You might also like