summaryrefslogtreecommitdiff
path: root/1997/CH11/EX11.54/example54.sce
blob: 0d1cd50cfd2014e94801490929c53ec8267d7984 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//Chapter-11 example 54
//=============================================================================
clc;
clear;
//input data
f       = 10*10^9;      // operating freq. of radar in Hz
Vo      = 3*10^8;       //vel of Em wave in m/s;
D       = 5;            //Diameter of antenna in m

//calculations
lamda   = Vo/f;         // wavelength in m
BW      = 70*(lamda/D)  // BeamWidth in degrees

//output
mprintf('Beamwidth  = %3.3f degrees',BW);
//==============================================================================