summaryrefslogtreecommitdiff
path: root/1997/CH9/EX9.24
diff options
context:
space:
mode:
Diffstat (limited to '1997/CH9/EX9.24')
-rwxr-xr-x1997/CH9/EX9.24/example24.sce15
1 files changed, 15 insertions, 0 deletions
diff --git a/1997/CH9/EX9.24/example24.sce b/1997/CH9/EX9.24/example24.sce
new file mode 100755
index 000000000..bc0d5ebb1
--- /dev/null
+++ b/1997/CH9/EX9.24/example24.sce
@@ -0,0 +1,15 @@
+//Chapter-9 example 24
+//=============================================================================
+clc;
+clear;
+//input data
+F = 600*10^6;//radar operating frequency in hz
+Vo = 3*10^8;//velocity of EM wave in m/s
+D = 1.644;//Directivity of the half wave dipole
+//Calculations
+lamda = Vo/F;//wavelength
+Ae = (lamda^2*D)/(4*%pi);//effective area of antenna
+//Output
+mprintf('Effective Area of the antenna is %3.4f m^2',Ae);
+
+//=============end of the program==============================================