summaryrefslogtreecommitdiff
path: root/1997/CH11/EX11.16/example16.sce
blob: 55f52cbeea2dbd2ad9050d9722f1271664e6ffdb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//Chapter-11 example 16
//=============================================================================
clc;
clear;
//input data
F     = 10*10^9;//operating frequency of radar in Hz
Vo    =  3*10^8;//Velocity of EM wave in m/s
Vr    =  100;//velocity of car in kmph
//Calculations
lamda = Vo/F;//wavelength in m
Vc    = Vr*(5/18);//velocity of car in m/s
Fd    = (2*Vc)/lamda;//doppler shift in Hz
//Output
mprintf('Doppler Shift is %g KHz\n Frequency of the Received echo when car is approaching radar is %g Ghz + %g Khz\n Frequency of the Received echo when car is moving away from radar is %g Ghz - %g Khz',Fd/1000,F/10^9,Fd/1000,F/10^9,Fd/1000);

//=================end of program==============================================