diff options
Diffstat (limited to '752/CH16/EX16.7.2')
-rwxr-xr-x | 752/CH16/EX16.7.2/16_7_2.sce | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/752/CH16/EX16.7.2/16_7_2.sce b/752/CH16/EX16.7.2/16_7_2.sce new file mode 100755 index 000000000..81aa8441c --- /dev/null +++ b/752/CH16/EX16.7.2/16_7_2.sce @@ -0,0 +1,14 @@ +clc;
+//page no 590
+//prob no. 16.7.2
+//For the Hertzian dipole, the radiation pattern is described by g(x)=sin^2(x) and g(y)=1
+// Determination of -3dB beamwidth
+// from the polar diagram shown we have
+g_x=0.5;
+x=asind(sqrt(g_x));
+g_y=0.5;
+y1=asind(sqrt(g_y));
+y=y1+90;
+//Therefore
+z=y-x;
+disp('degree',z,'The -3dB beamwidth is');
\ No newline at end of file |