blob: 8beede8e42eac087c5be873d8f1f6ed48419b401 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
clear;
clc;
//Example 13.2
Iref=0.72;
Ic17=0.75*Iref;
printf('\ncollector currents in Q17=%.2f mA\n',Ic17)
b=200;
Ib17=Ic17/b;
Ie17=Ic17;
R8=0.100;
Vbe17=0.6;
R9=50;
Ic16=Ib17+(Ie17*R8+Vbe17)/R9;
Ic16=Ic16*1000;
printf('\ncollector current in Q16=%.2f microA\n',Ic16)
|