diff options
Diffstat (limited to '1997/CH9/EX9.12/example12.sce')
-rwxr-xr-x | 1997/CH9/EX9.12/example12.sce | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/1997/CH9/EX9.12/example12.sce b/1997/CH9/EX9.12/example12.sce new file mode 100755 index 000000000..f598ccf84 --- /dev/null +++ b/1997/CH9/EX9.12/example12.sce @@ -0,0 +1,19 @@ +//Chapter-9 example 12
+//=============================================================================
+clc;
+clear;
+//input data
+
+F = 4*10^9;//radar operating frequency in hz
+Vo = 3*10^8;//velocity of EM wave in m/s
+NNBW = 8;//Null to Null beamwidth in degrees
+//Calculations
+lamda = Vo/F;//wavelength
+Da = (140*lamda)/NNBW;
+A = (%pi*Da*Da)/4;//Area of antenna
+Ac = 0.65*A;//capture area
+
+//Output
+mprintf('\n Mouth diameter of parabolic reflector is %3.3f m \n Capture area is %3.2f m^2',Da,Ac);
+
+//=============end of the program==============================================
|