blob: 149092ce9c9c6ac53e374b5706171a7396815da6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
clc
disp("Example 3.77")
printf("\n")
disp("Design a Voltage divider bias circuit")
printf("Given\n")
//given
Vce=3
Ve=5
Ic=10^-3
Vcc=12
Vbe=0.7
//emitter resistance
Re=Ve/Ic
//collector resistance
Rc=(Vcc-Vce-Ve)/Ic
//current through resistor R2
I2=Ic/10
//base voltage
Vb=Vbe+Ve
//resistance 1
R1=(Vcc-Vb)/I2
//resistance 2
R2=Vb/I2
printf("Collector resistance %f ohm \n",Rc)
printf("emitter resistance %f ohm \n",Re)
printf("base voltage %f volt \n",Vb)
printf("voltage divider resistance R1 & R2 %f ohm\n %f ohm\n",R1,R2)
|