summaryrefslogtreecommitdiff
path: root/1997/CH9/EX9.25/example25.sce
blob: d0560a020ed787226596695b43005aff71dbc1ae (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//Chapter-9 example 25
//=============================================================================
clc;
clear;
//input data
F     = 200*10^6;//radar operating frequency in hz
Vo    = 3*10^8;//velocity of EM wave in m/s
D     = 1.5;//Directivity of the Hertzian dipole
//Calculations
lamda = Vo/F;//wavelength
Ae    = (lamda^2*D)/(4*%pi);//effective area of antenna
//Output
mprintf('Effective Area of the antenna is %3.4f m^2',Ae);

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