blob: 082cceecb7983c3e627144b78bfd8f184810c91a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
//chapter11
//example11.6
//page205
alpha=0.95
V_Rc=2 // V
Rc=2 //kilo ohm
Ic=V_Rc/Rc // mA
// since alpha=Ic/Ie
Ie=Ic/alpha
// since Ie=Ib+Ic
Ib=Ie-Ic
printf("base current = %.3f mA \n",Ib)
|