summaryrefslogtreecommitdiff
path: root/1997/CH9/EX9.10/example10.sce
diff options
context:
space:
mode:
Diffstat (limited to '1997/CH9/EX9.10/example10.sce')
-rwxr-xr-x1997/CH9/EX9.10/example10.sce24
1 files changed, 24 insertions, 0 deletions
diff --git a/1997/CH9/EX9.10/example10.sce b/1997/CH9/EX9.10/example10.sce
new file mode 100755
index 000000000..e7ce44eb6
--- /dev/null
+++ b/1997/CH9/EX9.10/example10.sce
@@ -0,0 +1,24 @@
+//Chapter-9 example 10
+//=============================================================================
+clc;
+clear;
+//input data
+F = 10*10^9;//radar operating frequency in hz
+Vo = 3*10^8;//velocity of EM wave in m/s
+Da = 5;//antenna diameter in m
+
+//Calculations
+lamda = Vo/F;//wavelength
+Gp = 6.4*(Da/lamda)^2//gain of parabolic reflector
+G = 10*log10(Gp)//gain in dB
+
+BWFN = 140*(lamda/Da);//beam width b/n nulls
+HPBW = 70*(lamda/Da);//half power beamwidth in deg
+
+
+//Output
+mprintf('BWFN of parabolic reflector is %g degrees\n HPBW of parabolic reflector is %g degrees\n',BWFN,HPBW);
+
+mprintf(' Gain of parabolic reflector is %g dB ',G);
+
+//=============end of the program==============================================