summaryrefslogtreecommitdiff
path: root/1997/CH3/EX3.7/example7.sce
diff options
context:
space:
mode:
Diffstat (limited to '1997/CH3/EX3.7/example7.sce')
-rwxr-xr-x1997/CH3/EX3.7/example7.sce25
1 files changed, 25 insertions, 0 deletions
diff --git a/1997/CH3/EX3.7/example7.sce b/1997/CH3/EX3.7/example7.sce
new file mode 100755
index 000000000..2d9939ed9
--- /dev/null
+++ b/1997/CH3/EX3.7/example7.sce
@@ -0,0 +1,25 @@
+//Chapter-3, Problem 3.7 , Page106
+//===========================================================================
+clc;
+clear;
+
+//INPUT DATA
+
+n1 = 1 ;//since first blindspeed
+n3 = 3 ;//since third blindspeed
+
+//Calculations
+
+
+// blind speed Vb1 = n1*(lamda_1/2)*PRF1 in m/s
+// blind speed Vb3 = n3*(lamda-2/2)*PRF2 in m/s
+//here PRF1 = PRF2 = PRF
+//if Vb1=Vb3 then
+//1*(lamda_1/2)*PRF = 3*(lamda_2/2)*PRF
+//lamda_1/lamda_2 = 3/1;
+//lamda = C/F;
+//therefore F1/F2 = 1/3 ;
+
+
+//Output
+mprintf('Ratio of Operating Frequencies of two Radars are (F1/F2) = 1/3');