summaryrefslogtreecommitdiff
path: root/1997/CH9/EX9.1/example1.sce
blob: 28d39e0a2ada11243b8814de48b0ea0ca0673a64 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
//Chapter-9 example 1
//=============================================================================
clc;
clear;
//input data
Da    = 2.5;//diameter of parabolic antenna in m
F     = 5*10^9;//radar operating frequency in hz
Vo    = 3*10^8;//velocity of EM wave in m/s

//Calculations
lamda = Vo/F;//wavelength
NNBW  = 140*(lamda/Da);
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',NNBW,HPBW);

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