diff options
Diffstat (limited to '1997/CH9/EX9.5/example5.sce')
-rwxr-xr-x | 1997/CH9/EX9.5/example5.sce | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/1997/CH9/EX9.5/example5.sce b/1997/CH9/EX9.5/example5.sce new file mode 100755 index 000000000..dfa514821 --- /dev/null +++ b/1997/CH9/EX9.5/example5.sce @@ -0,0 +1,23 @@ +//Chapter-9 example 5
+//=============================================================================
+clc;
+clear;
+//input data
+F = 6*10^9;//radar operating frequency in hz
+Vo = 3*10^8;//velocity of EM wave in m/s
+NNBW = 5;//Null to Null beamwidth
+
+//Calculations
+lamda = Vo/F;//wavelength
+
+Da = 140*(lamda/NNBW);
+HPBW = 70*(lamda/Da);//half power beamwidth in deg
+Gp = 6.4*(Da/lamda)^2//gain of parabolic reflector
+G = 10*log10(Gp)//gain in dB
+
+//Output
+mprintf('Mouth Diameter of paraboloid is %g m\n HPBW of parabolic reflector is %g degrees\n',Da,HPBW);
+
+mprintf(' Gain of parabolic reflector is %g dB\n Gain of parabolic reflector is %g ',G,Gp);
+
+//=============end of the program==============================================
|