summaryrefslogtreecommitdiff
path: root/2219/CH7/EX7.13/Ex7_13.sce
diff options
context:
space:
mode:
authorpriyanka2015-06-24 15:03:17 +0530
committerpriyanka2015-06-24 15:03:17 +0530
commitb1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch)
treeab291cffc65280e58ac82470ba63fbcca7805165 /2219/CH7/EX7.13/Ex7_13.sce
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/CH7/EX7.13/Ex7_13.sce')
-rwxr-xr-x2219/CH7/EX7.13/Ex7_13.sce22
1 files changed, 22 insertions, 0 deletions
diff --git a/2219/CH7/EX7.13/Ex7_13.sce b/2219/CH7/EX7.13/Ex7_13.sce
new file mode 100755
index 000000000..8cd772783
--- /dev/null
+++ b/2219/CH7/EX7.13/Ex7_13.sce
@@ -0,0 +1,22 @@
+// chapter 7 example 13
+//-----------------------------------------------------------------------------
+clc;
+clear;
+// given data
+f = 60*10^6; // frequency in Hz
+c = 3*10^8 // velocity of EM wave in m/s
+
+// Calculations
+lamda = c/f; // wavelength in m
+l_dipole= lamda/2 // length of diplole
+// Physical length of antenna is made 5% shorter than desired length as per rule of thumb
+L = l_dipole - (5/100)*l_dipole; // actual physical length
+L_D = L - (4/100)*L; // length of director
+L_R = L + (4/100)*L; // length of reflector
+DDS = 0.12*lamda; // director dipole spacing
+RDS = 0.2*lamda; // Reflector dipole spacing
+
+// Output
+mprintf('Length of dipole = %3.3f m\n length of Director = %3.2f m\n length of Reflector = %3.2f m\n director dipole spacing = %3.1f m\n Reflector dipole spacing = %3.1f m',L,L_D,L_R,DDS,RDS);
+//------------------------------------------------------------------------------
+