diff options
author | priyanka | 2015-06-24 15:03:17 +0530 |
---|---|---|
committer | priyanka | 2015-06-24 15:03:17 +0530 |
commit | b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch) | |
tree | ab291cffc65280e58ac82470ba63fbcca7805165 /1997/CH3/EX3.7/example7.sce | |
download | Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.gz Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.bz2 Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.zip |
initial commit / add all books
Diffstat (limited to '1997/CH3/EX3.7/example7.sce')
-rwxr-xr-x | 1997/CH3/EX3.7/example7.sce | 25 |
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');
|