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.9/example9.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.9/example9.sce')
-rwxr-xr-x | 1997/CH3/EX3.9/example9.sce | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/1997/CH3/EX3.9/example9.sce b/1997/CH3/EX3.9/example9.sce new file mode 100755 index 000000000..5cb26adb4 --- /dev/null +++ b/1997/CH3/EX3.9/example9.sce @@ -0,0 +1,25 @@ +//Chapter-3, Problem 3.9 , Page107
+//===========================================================================
+clc;
+clear;
+
+//INPUT DATA
+F = 6*10^9; //operating frequency in Hz
+PRF= 1000; //pulse repetitive frequency in Hz
+Vo = 3*10^8; //velocity in m/s;
+n2 = 2; // n value for second blind speed
+n3 = 3; // n value for third blind speed
+//Calculations
+
+lamda = Vo/F//Wavelength in m
+
+// blind speed Vb = n*(lamda/2)*PRF in m/s
+
+Vb2 = n2*(lamda/2)*PRF //second blind speed in m/s;
+Vb21 = Vb2*18/5 ; //second blind speed in kmph;
+Vb3 = n3*(lamda/2)*PRF //third blind speed in m/s;
+Vb31 = Vb3*18/5; //third blind speed in kmph;
+
+//Output
+mprintf('Second Blind Speed is %g kmph\n Third Blind Speed is %g kmph\n',Vb21,Vb31);
+
|