summaryrefslogtreecommitdiff
path: root/1997/CH11/EX11.3/example3.sce
blob: 8fb9d67bd170213e42b60c6b72df1717e56f87ed (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//Chapter-11 example 3
//=============================================================================
clc;
clear;
Vo = 3*10^8;//velocity of EM wave in m/s
F  = 0.8*10^3;//pulse repetitive frequency
Tp = 1.2*10^-6;//pulse width in sec
//Calculations
Rmax = Vo/(2*F);//maximum Range of Radar in m
Rmin = (Vo*Tp)/2;//minimum Range of radar in m

//Output
mprintf('Maximum Range of Radar is %g Km\n Minimum Range of the Radar is %g m',Rmax/1000,Rmin);

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