summaryrefslogtreecommitdiff
path: root/1223/CH11/EX11.9/Ex11_9.sce
blob: 4deb8ba6f68d2013f6d05ef6086d8493787af2ac (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
clear;
clc;
//Example 11.9
b=100;
Vbe=0.7;
Va=100;
Vt=0.026;
Iref=0.5;
Iq=Iref;
I1=Iq/2
Icq=I1;
r=b*Vt/Icq;
printf('\nsmall signal parameter=%.2f KOhm\n',r)
ro=Va/Icq;
printf('\nro=%.2f KOhm\n',ro)
Ro=Va/Iq;
printf('\noutput resistance of Q4=%.2f KOhm\n',Ro)
Rid=2*r;
printf('\ndifferential mode input resistance =%.2fKOhm\n',Rid)
Ricm=(1+b)*(Ro*ro/2)/(Ro+ro/2);
Ricm=Ricm*0.001;//Mohm
printf('\ncommon mode input resistance=%.2f MOhm\n',Ricm)