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

F     = 4*10^9;//radar operating frequency in hz
Vo    = 3*10^8;//velocity of EM wave in m/s
NNBW  = 8;//Null to Null beamwidth in degrees 
//Calculations
lamda = Vo/F;//wavelength
Da    = (140*lamda)/NNBW;
A     = (%pi*Da*Da)/4;//Area of antenna
Ac    = 0.65*A;//capture area

//Output
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==============================================