summaryrefslogtreecommitdiff
path: root/1997/CH9/EX9.6/example6.sce
diff options
context:
space:
mode:
Diffstat (limited to '1997/CH9/EX9.6/example6.sce')
-rwxr-xr-x1997/CH9/EX9.6/example6.sce25
1 files changed, 25 insertions, 0 deletions
diff --git a/1997/CH9/EX9.6/example6.sce b/1997/CH9/EX9.6/example6.sce
new file mode 100755
index 000000000..ea16d455b
--- /dev/null
+++ b/1997/CH9/EX9.6/example6.sce
@@ -0,0 +1,25 @@
+//Chapter-9 example 6
+//=============================================================================
+clc;
+clear;
+//input data
+F = 9*10^9;//radar operating frequency in hz
+Vo = 3*10^8;//velocity of EM wave in m/s
+NNBW = 5;//Null to Null beamwidth
+Da = 5;//diameter of antenna in m
+
+//Calculations
+lamda = Vo/F;//wavelength
+A = (%pi*Da*Da)/4;//actural area of antenna
+Ac = 0.65*A;//Capture Area
+
+D = 6.4*(Da/lamda)^2;//directivity of antenna
+D1 = 10*log10(D)//gain in dB
+HPBW = 70*(lamda/Da);//half power beamwidth in deg
+NNBW = 2*HPBW;//null to null beamwidth
+
+//Output
+mprintf('HPBW of parabolic reflector is %g degrees\n NNBW of parabolic reflector is %g degrees\n Directivity is %g dB\n Capture area is %g m^2',HPBW,NNBW,D1,Ac);
+
+
+//=============end of the program==============================================