summaryrefslogtreecommitdiff
path: root/2219/CH7/EX7.16/Ex7_16.sce
diff options
context:
space:
mode:
Diffstat (limited to '2219/CH7/EX7.16/Ex7_16.sce')
-rwxr-xr-x2219/CH7/EX7.16/Ex7_16.sce19
1 files changed, 19 insertions, 0 deletions
diff --git a/2219/CH7/EX7.16/Ex7_16.sce b/2219/CH7/EX7.16/Ex7_16.sce
new file mode 100755
index 000000000..e5c811dab
--- /dev/null
+++ b/2219/CH7/EX7.16/Ex7_16.sce
@@ -0,0 +1,19 @@
+// chapter 7 example 16
+//-----------------------------------------------------------------------------
+clc;
+clear;
+// given data
+D = 3; // Mouth diameter in m
+//f = 2; // focal length in m
+bw3db = 63; // 3dB beam width
+k = 0.9; // beam width is k times subtended angle
+
+// Calculations
+theta = bw3db/k; // subtended angle
+theta_r = theta
+//theta = 4*atan(1/(4*f/D));
+f = D/(4*tan((theta_r/4)*(%pi/180)));
+
+// Output
+mprintf('Distance of feed from the point of intersection of antenna axis and the reflector surface = %3.2f m',f);
+//------------------------------------------------------------------------------