summaryrefslogtreecommitdiff
path: root/1997/CH9/EX9.14/example14.sce
blob: 11833ce2e4d761f2dba4403d7eab1d7abeceb7d9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
//Chapter-9 example 14
//=============================================================================
clc;
clear;
//input data

HPBW  = 6;//Half power Beamwidth in degrees

//Calculations
NNBW  = 2*HPBW;//Null to Null beamwidth in degrees
//HPBW = 70*(lamda/Da);
//(70/HPBW)= (Da/lamda);
Gp    = 6.4*(70/HPBW)^2//gain of parabolic reflector
G     = 10*log10(Gp)//gain in dB


//Output
mprintf('Gain of parabolic reflector is %3.2f dB\n NNBW of the antenna is %g degrees',G,NNBW);

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