summaryrefslogtreecommitdiff
path: root/1997/CH9/EX9.9/example9.sce
blob: 3f8c3729ee4a8c73b8da63e94ab7787cbd6ae5f4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
//Chapter-9 example 9
//=============================================================================
clc;
clear;
//input data

F     = 9*10^9;//radar operating frequency in hz
Vo    = 3*10^8;//velocity of EM wave in m/s
Gp    = 100;//power gain of antenna in dB
//Calculations
lamda = Vo/F;//wavelength
//antilog calculation
//100 = 10log10(Gp);
//10  = log(Gp);
G     = 10^10;//gain of antenna
Da    = lamda*sqrt(G/6.4)//diameter of parabolic antenna in m
A     = (%pi*Da*Da)/4;//Area of antenna
Ac    = 0.65*A;//capture area
NNBW  = 140*(lamda/Da);//beamwidth b/w null to null
HPBW  = 70*(lamda/Da);//half power beamwidth in deg

//Output
mprintf('NNBW of parabolic reflector is %g degrees\n HPBW of parabolic reflector is %g degrees\n',NNBW,HPBW);

mprintf('\n Mouth diameter of parabolic reflector is %3.3f m\n Capture area is %3.2f m^2',Da,Ac);

//=============end of the program==============================================