blob: f92252b0dd1da03265b2517a81065f60442661db (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
|
//Example 7.11
clear;
clc;
ft=16*10^6;
enw=4.5*10^(-9);
fce=100;
IB=1*10^(-12);
fL=0.01;
R1=100*10^(9);
C1=45*10^(-12);
R2=10*10^6;
C2=0.5*10^(-12);
b0rec=1;
binfrec=91;
fz=350;
fp=31.8*10^3;
fx=176*10^3;
k=1.38*10^(-23);
T=25+273;
iR2=sqrt((4*k*T)/R2);
q=1.602*10^(-19);
in=sqrt(2*q*IB);
Enoe=binfrec*enw*sqrt(((%pi/2)*fx)-fp);
EnoR=R2*iR2*sqrt((%pi/2)*fp);
Eno=sqrt((Enoe^2)+(EnoR^2));
printf("Total Output Noise=%.f uV",Eno*10^6);
|