summaryrefslogtreecommitdiff
path: root/1997/CH11/EX11.37
diff options
context:
space:
mode:
Diffstat (limited to '1997/CH11/EX11.37')
-rwxr-xr-x1997/CH11/EX11.37/example37.sce27
1 files changed, 27 insertions, 0 deletions
diff --git a/1997/CH11/EX11.37/example37.sce b/1997/CH11/EX11.37/example37.sce
new file mode 100755
index 000000000..f831f195c
--- /dev/null
+++ b/1997/CH11/EX11.37/example37.sce
@@ -0,0 +1,27 @@
+//Chapter-11 example 37
+//=============================================================================
+clc;
+clear;
+//Given data
+lamda = 6*10^-2; //Wavelength in m
+PRF = 800; //Pulse Repetitive frequency in Hz
+n1 = 1 ; //n value for first blind speed
+n2 = 2 ; //n value for first blind speed
+n3 = 3 ; //n value for first blind speed
+
+//Calculations
+
+//Vb = (n*lamda/2)*PRF; Blind speed of the Radar
+
+//For n = 1
+
+Vb1 = (n1*lamda/2)*PRF; //Blind speed of the Radar in m/s
+Vb2 = (n2*lamda/2)*PRF; //Blind speed of the Radar in m/s
+Vb3 = (n3*lamda/2)*PRF; //Blind speed of the Radar in m/s
+
+//multiply by 18/5 to convert from m/s to kmph
+
+//Output
+mprintf('The lowest Blind speeds are %3.1f, %3.2f and %3.2f Km/hr',Vb1*(18/5),Vb2*(18/5),Vb3*(18/5));
+
+//=============end of program==================================================