summaryrefslogtreecommitdiff
path: root/1997/CH11/EX11.8/example8.sce
blob: 8a5a725418cfc7b8a545d3cfe14144a940e2ed99 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//Chapter-11 example 8
//=============================================================================
clc;
clear;
//input data
Tvel  = 1000;//target speed in kmph
F     = 10*10^9;//radar operating frequency in hz
Vo    = 3*10^8;//velocity of EM wave in m/s

//Calculations
Vr    = 1000*(5/18);//target speed in m/s
Fd    = (2*Vr*F)/Vo;//Doppler Frequency shift in Hz

//Output
mprintf('Doppler Frequency shift Caused by aircraft is %3.2f KHz',Fd/1000);

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