blob: 5e1e501229d06ab465b278f29e687d362a5a33d3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
//Chapter-9 example 13
//=============================================================================
clc;
clear;
//input data
F = 4*10^9;//radar operating frequency in hz
Vo = 3*10^8;//velocity of EM wave in m/s
NNBW = 2;//Null to Null Beamwidth in degrees
//Calculations
lamda = Vo/F;//wavelength
Da = (140*lamda)/2;//diameter of antenna in m
Gp = 6.4*(Da/lamda)^2//gain of parabolic reflector
G = 10*log10(Gp)//gain in dB
//Output
mprintf('Gain of parabolic reflector is %g dB\n mouth diameter of the antenna is %g m ',G,Da);
//=============end of the program==============================================
|