blob: 659fbc01aeb6e0b9df2512e43f53c6fce0b1d63c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
//Chapter-9 example 11
//=============================================================================
clc;
clear;
//input data
F = 10*10^9;//radar operating frequency in hz
Vo = 3*10^8;//velocity of EM wave in m/s
IE =0.6;//illumination efficiency
Da =12;//diameter of antenna
//Calculations
lamda = Vo/F;//wavelength
Gp = IE*(Da/lamda)^2//gain of parabolic reflector
G = 10*log10(Gp)//gain in dB
//Output
mprintf(' Gain of parabolic reflector is %3.2f dB',G);
//=============end of the program==============================================
|