diff options
Diffstat (limited to '1979/CH10/EX10.10/Ex10_10.sce')
-rwxr-xr-x | 1979/CH10/EX10.10/Ex10_10.sce | 17 |
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===============================
|