summaryrefslogtreecommitdiff
path: root/1979/CH10/EX10.10/Ex10_10.sce
diff options
context:
space:
mode:
authorpriyanka2015-06-24 15:03:17 +0530
committerpriyanka2015-06-24 15:03:17 +0530
commitb1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch)
treeab291cffc65280e58ac82470ba63fbcca7805165 /1979/CH10/EX10.10/Ex10_10.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 '1979/CH10/EX10.10/Ex10_10.sce')
-rwxr-xr-x1979/CH10/EX10.10/Ex10_10.sce17
1 files changed, 17 insertions, 0 deletions
diff --git a/1979/CH10/EX10.10/Ex10_10.sce b/1979/CH10/EX10.10/Ex10_10.sce
new file mode 100755
index 000000000..60f0eef06
--- /dev/null
+++ b/1979/CH10/EX10.10/Ex10_10.sce
@@ -0,0 +1,17 @@
+//chapter-10 page 489 example 10.10
+//==============================================================================
+clc;
+clear;
+
+//For a parabolic antenna
+Gp=1500;//Power gain
+w=0.1;//wavelength in m
+
+//CALCULATION
+D=sqrt(Gp)*(w/(%pi));//Diameter of the circular mouth of a parabolic antenna in m
+HPBW=58*(w/D);//Half Power BeamWidth of the antenna in deg
+
+//OUTPUT
+mprintf('\nDiameter of the circular mouth of a parabolic antenna is D=%1.4f m \nHalf Power BeamWidth of the antenna is HPBW=%1.3f deg',D,HPBW);
+
+//=========================END OF PROGRAM===============================