summaryrefslogtreecommitdiff
path: root/1997/CH11/EX11.57/example57.sce
blob: 09e3d8630728a11951ae80ef8141cc8f7040400c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
//Chapter-11 example 57
//=============================================================================
clc;
clear;
//input data
f       = 10*10^9;       // operating freq. of radar in Hz
Vr      = 800;           // radial ve. of of aircraft in kmph
Vo      = 3*10^8;       //vel of Em wave in m/s;

//calculations

lamda   = Vo/f;        // Wavelength in m
Vr1     = Vr*5/18      // kmph to m/s conversion
fd      = 2*Vr1/lamda;  // Doppler shift freq, in Hz

//Output
mprintf('Doppler shift frequency fd = %3.2e Hz',fd);

//==============================================================================