summaryrefslogtreecommitdiff
path: root/752/CH4/EX4.19.1/4_19_1.sce
blob: 1568843466950a3bda45e492b06096bc9ad653aa (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
clc;
// page no 146
// prob no 4_19_1
//An avalanche diode source is given with excess noise ratio is 14 dB
enr=14;
To=290;//Room temp in K
y=9;//Y-factor  is 9 dB
//converting dB in power ratio
ENR=10^(enr/10);
Y=10^(y/10);
//From def of ENR the hot temp is
Th=To*(ENR+1);
disp('K',Th,'The value of hot temp Th is '); 
//Determination of equivalent noise temp
Te=(Th-(Y*To))/(Y-1);
disp('K',Te,'The value of equivalent noise temp Te is ');