blob: 35396e07dfd9b05556b3f0e2818033a6da298862 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
clc;
re=19.8; //Ohm
Hfe=200;
Zbase=Hfe*re; //Ohm
R5=15000; //Ohm
R6=2500; //Ohm
Req=(R5*R6)/(R5+R6);//Ohm
Zin=(Req*Zbase)/(Req+Zbase); //Ohm
R3=5000; //Ohm
rc=(R3*Zin)/(R3+Zin); //Ohm
Av=rc/re;
disp(' ',Av,"Av=");//The answers vary due to round off error
|