blob: 8787cd92f53765b9c72f9bb37037e4bab93e0eca (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
//Ex 1.10
clc;
clear;
close;
format('v',5);
Vout=5;//V
Beta=180;//unitless
R=22;//kohm
VCC=10;//V
VBE=0.7;//V
IREF=(VCC-VBE)/R;//mA
IC=(IREF-VBE/R)/(1+2/Beta);//mA
RC=(VCC-Vout)/IC;//kohm
disp(IC,"IC1 & IC2 in mA are ");
disp(RC,"RC in kohm is ");
//Answer in the book is wrong.
|