summaryrefslogtreecommitdiff
path: root/1997/CH11/EX11.63/example63.sce
blob: 0dd002ba52069776f487fd4dfaf72881b29929cd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
//Chapter-11 example 63
//=============================================================================
clc;
clear;
//Given data
Vr      = 300;          // Velocity of radar in m/s
Vair    = 200;          // velocty of aircraft in m/s
f       = 10*10^9;      // Radar operating frequency
Vo      = 3*10^8;       //vel of Em wave in m/s;

//Calculations

lamda   = Vo/f;         // wavelength in m
Vrel    = Vr+Vair;      //relative radial vel. b/w radar and aircraft when approaching each other
fd      = (2*Vrel)/lamda// Doppler frequency

//Output
mprintf('Doppler frequency = %3.2f KHz',fd/1000);
//==============================================================================