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.5 | |
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.5')
-rwxr-xr-x | 1997/CH3/EX3.5/example5.sce | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/1997/CH3/EX3.5/example5.sce b/1997/CH3/EX3.5/example5.sce new file mode 100755 index 000000000..dce5fa257 --- /dev/null +++ b/1997/CH3/EX3.5/example5.sce @@ -0,0 +1,20 @@ +//Chapter-3, Problem 3.5 , Page106
+//===========================================================================
+clc;
+clear;
+
+//INPUT DATA
+F = 10*10^9; //operating frequency in Hz
+Vo = 3*10^8; //velocity in m/s;
+Vb1 = 20;//lowest(first) blind speed in m/s
+n =1 ;//since first blindspeed
+//Calculations
+
+lamda = Vo/F;//Wavelength in m
+
+// blind speed Vb = n*(lamda/2)*PRF in m/s
+
+PRF = (2*Vb1)/(n*lamda);//pulse repetitive frequency in Hz
+
+//Output
+mprintf('Pulse Repetitive Frequency is %3.2f KHz',PRF/1000);
|