From b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b Mon Sep 17 00:00:00 2001 From: priyanka Date: Wed, 24 Jun 2015 15:03:17 +0530 Subject: initial commit / add all books --- 1997/CH3/EX3.5/example5.sce | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100755 1997/CH3/EX3.5/example5.sce (limited to '1997/CH3/EX3.5') 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); -- cgit