blob: 66561dca242bef77e15d852868a3709a5f8825ed (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
clc;
re=22.3; //Ohm
Hfe=200;
Zbase=Hfe*re; //Ohm
R1=18000; //Ohm
R2=4700; //Ohm
Req=(R1*R2)/(R1+R2); //Ohm
Zin=(Req*Zbase)/(Req+Zbase); //Ohm
rc=1150; //Ohm
RL=5000; //Ohm
Ai=Hfe*((Zin*rc)/(Zbase*RL));
disp(' ',Ai,"Ai=");//The answers vary due to round off error
|