summaryrefslogtreecommitdiff
path: root/1997/CH11/EX11.53/example53.sce
diff options
context:
space:
mode:
Diffstat (limited to '1997/CH11/EX11.53/example53.sce')
-rwxr-xr-x1997/CH11/EX11.53/example53.sce21
1 files changed, 21 insertions, 0 deletions
diff --git a/1997/CH11/EX11.53/example53.sce b/1997/CH11/EX11.53/example53.sce
new file mode 100755
index 000000000..93f567ed4
--- /dev/null
+++ b/1997/CH11/EX11.53/example53.sce
@@ -0,0 +1,21 @@
+//Chapter-11 example 53
+//=============================================================================
+clc;
+clear;
+//input data
+Pt = 500*10^3;//peal pulse power in watts
+Pmin = 1*10^-12;//minimum receivable power
+Ac = 5;//area of capture in m^s
+RCS = 20;//radar cross sectional area in m^2
+F = 10*10^9;//radar operating frequency
+Vo = 3*10^8;//vel of Em wave in m/s;
+lamda = 3*10^-2;//wavelength in cms
+
+//calculations
+
+Rmax = ((Pt*Ac*Ac*RCS)/(4*%pi*lamda*lamda*Pmin))^0.25;
+
+//output
+mprintf('Maximum Radar range of the Radar system is %g Kms',Rmax/1000);
+
+//==============end of the program=============================================