blob: 42df577c727cd775df333f809cba6d1cfa824184 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
//chapter11
//example11.16
//page219
Vcc=10
Ic=1 // mA
Rc1=4 // kilo ohm
Rc2=5 // kilo ohm
Vce1=Vcc-Ic*Rc1
Vce2=Vcc-Ic*Rc2
printf("for collector load = 4 kilo ohm, operating point is %.3f V,%.3f mA \n",Vce1,Ic)
printf("for collector load = 5 kilo ohm, operating point is %.3f V,%.3f mA \n",Vce2,Ic)
|