blob: b46dd965f6e9f263c625ec1e1d06077a4e3f06f5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
//chapter 5
//example 5.1
//page 182
printf("\n")
printf("given")
Rc=12*10^3;Vcc=20;
disp(" When Ic=0")
Ic=0;
Vce=Vcc-Ic*Rc
disp(" At point A Ic=0 nad Vce=20")
disp("When Vce=0")
Vce=0;
Ic=Vcc/Rc
disp(" At point B Ic=1.7mA and Vce=0")
|