diff options
Diffstat (limited to '1997/CH11/EX11.3/example3.sce')
-rwxr-xr-x | 1997/CH11/EX11.3/example3.sce | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/1997/CH11/EX11.3/example3.sce b/1997/CH11/EX11.3/example3.sce new file mode 100755 index 000000000..8fb9d67bd --- /dev/null +++ b/1997/CH11/EX11.3/example3.sce @@ -0,0 +1,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=====================================================
+
|