diff options
Diffstat (limited to '1997/CH11/EX11.13/example13.sce')
-rwxr-xr-x | 1997/CH11/EX11.13/example13.sce | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/1997/CH11/EX11.13/example13.sce b/1997/CH11/EX11.13/example13.sce new file mode 100755 index 000000000..ee1f39760 --- /dev/null +++ b/1997/CH11/EX11.13/example13.sce @@ -0,0 +1,21 @@ +//Chapter-11 example 13
+//=============================================================================
+clc;
+clear;
+//input data
+PRF = 1000;//pulse repetition frequency per second
+PW = 0.8*10^-6;//pulse width in sec
+Pp = 10*10^6;//Peak power in watts
+Vo = 3*10^8;//velocity of EM wave in m/s;
+
+//Calculations
+Dc = PW*PRF;//Duty Cycle
+Pav = Pp*Dc;//average power in watts
+Rmax = Vo/(2*PRF);
+
+
+//Output
+
+mprintf('Average power is %g KW\n Maximum Radar Range is %g Km',Pav/1000,Rmax/1000);
+
+//=============end of the program==============================================
|