blob: 87a9466c5d5d9ba7b4787af0b1bbe76bae753454 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
//Chapter-3, Problem 3.2 , Page105
//===========================================================================
clc;
clear;
//INPUT DATA
PRF= 1000;//pulse repetitive frequency in Hz
Fd = 1000;//doppler frequency in Hz;
F = 10*10^9;//operating frequency of radar in Hz;
Vo = 3*10^8;//velocity in m/s
//Calculations
lamda = Vo/F;
Va = (Fd*lamda)/2;//speed of automobile in m/s
Va1 = Va*18/5; //speed of automobile in kmph
//Output
mprintf('Speed of automobile is %g m/s or %g kmph\n',Va,Va1 );
|