summaryrefslogtreecommitdiff
path: root/3773/CH8/EX8.4/Ex8_4.sce
diff options
context:
space:
mode:
authorprashantsinalkar2017-10-10 12:27:19 +0530
committerprashantsinalkar2017-10-10 12:27:19 +0530
commit7f60ea012dd2524dae921a2a35adbf7ef21f2bb6 (patch)
treedbb9e3ddb5fc829e7c5c7e6be99b2c4ba356132c /3773/CH8/EX8.4/Ex8_4.sce
parentb1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (diff)
downloadScilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.tar.gz
Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.tar.bz2
Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.zip
initial commit / add all books
Diffstat (limited to '3773/CH8/EX8.4/Ex8_4.sce')
-rw-r--r--3773/CH8/EX8.4/Ex8_4.sce21
1 files changed, 21 insertions, 0 deletions
diff --git a/3773/CH8/EX8.4/Ex8_4.sce b/3773/CH8/EX8.4/Ex8_4.sce
new file mode 100644
index 000000000..ea4a96700
--- /dev/null
+++ b/3773/CH8/EX8.4/Ex8_4.sce
@@ -0,0 +1,21 @@
+//Chapter 8: Helical Antennas
+//Example 8-16.1
+clc;
+
+//Variable Initialization
+gain = 24.0 //Gain (dB)
+alpha = 12.7 //Pitch angle (degrees)
+c_lambda = 1.05 //Circumference (lambda)
+s_lambda = 0.236 //Spacing between turns (lambda)
+
+//Calculation
+D = 10**(gain/10) //Directivity (unitless)
+L = D/(12*(c_lambda**2)) //Helix length (lambda)
+n = L/s_lambda //Number of turns (unitless)
+D = D/4 //Directivity for four 20-turn helixes(unitless)
+Ae = D/(4*%pi) //Effective aperture of each helix (lambda^2)
+
+//Result
+mprintf("The Axial length is %.0f lambda",L)
+mprintf("\nThe number of turns for the axial length is %d",n)
+mprintf("\nThe effective aperture for 20 turns is %.0f lambda square",Ae)