blob: b08301db26154897053bdcde27acee0f5a380fab (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
//chapter11
//example11.3
//page205
alpha=0.9
Ie=1 //mA
// since alpha=Ic/Ie we get
Ic=alpha*Ie
// since Ie=Ic+Ib we get
Ib=Ie-Ic
printf("base current = %.3f mA \n",Ib)
|