summaryrefslogtreecommitdiff
path: root/275/CH3/EX3.3.67/Ch3_3_67.sce
blob: 6cd3df93199c5b0e3a97d8303d160a3febbbb417 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
clc
disp("Example 3.67")
printf("\n")
disp("Design a Collector to base bias circuit")
printf("Given\n")
//Given
Vce=10
Ic=3*10^-3
Vbe=0.7
Vcc=25
hFE=80
//base current
Ib=Ic/hFE
//collector resistance
Rc=(Vcc-Vce)/(Ic+Ib)
//base current
Rb=(Vce-Vbe)/Ib
printf("base current %f ampere \n",Ib)
printf("Collector resistance %f ohm \n",Rc)
printf("base resistance %f ohm \n",Rb)