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