summaryrefslogtreecommitdiff
path: root/1997/CH9/EX9.7/example7.sce
diff options
context:
space:
mode:
Diffstat (limited to '1997/CH9/EX9.7/example7.sce')
-rwxr-xr-x1997/CH9/EX9.7/example7.sce16
1 files changed, 16 insertions, 0 deletions
diff --git a/1997/CH9/EX9.7/example7.sce b/1997/CH9/EX9.7/example7.sce
new file mode 100755
index 000000000..b1b493e6d
--- /dev/null
+++ b/1997/CH9/EX9.7/example7.sce
@@ -0,0 +1,16 @@
+//Chapter-9 example 7
+//=============================================================================
+clc;
+clear;
+//input data
+Da = 5;//diameter of parabolic antenna in m
+F = 5*10^9;//radar operating frequency in hz
+Vo = 3*10^8;//velocity of EM wave in m/s
+
+//Calculations
+lamda = Vo/F;//wavelength
+R = (2*Da*Da)/lamda;//min distance b/w antennas
+//Output
+mprintf('Minimum distance Required is %g m',R);
+
+//=============end of the program==============================================