summaryrefslogtreecommitdiff
path: root/2219/CH10/EX10.15
diff options
context:
space:
mode:
authorpriyanka2015-06-24 15:03:17 +0530
committerpriyanka2015-06-24 15:03:17 +0530
commitb1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch)
treeab291cffc65280e58ac82470ba63fbcca7805165 /2219/CH10/EX10.15
downloadScilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.gz
Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.bz2
Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.zip
initial commit / add all books
Diffstat (limited to '2219/CH10/EX10.15')
-rwxr-xr-x2219/CH10/EX10.15/Ex10_15.sce20
1 files changed, 20 insertions, 0 deletions
diff --git a/2219/CH10/EX10.15/Ex10_15.sce b/2219/CH10/EX10.15/Ex10_15.sce
new file mode 100755
index 000000000..48f272586
--- /dev/null
+++ b/2219/CH10/EX10.15/Ex10_15.sce
@@ -0,0 +1,20 @@
+// Chapter 10 example 15
+//------------------------------------------------------------------------------
+clc;
+clear;
+//Given data
+f = 10*10^9; // operating freq in Hz
+c = 3*10^8; // vel. of EM waves in m/s
+Ae = 2; // Antenna aperture in m
+R = 10*10^3; // Target Range in m
+
+// Calculations
+lamda = c/f; // Wavelength in m
+bw3db = lamda/2; // 3dB beamwidth in radian
+Leff = bw3db * R; // effective length
+Xs = (R*lamda)/(2*Leff); // Cross range resolution
+
+// Output
+mprintf('Effective Length = %d m\n',Leff);
+mprintf('Cross range resolution = %d m',Xs);
+//------------------------------------------------------------------------------