diff options
Diffstat (limited to '1997/CH3/EX3.5/example5.sce')
-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);
|