blob: 3878aeb2fde5ab005f2dd2bd7a407b538c585f65 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
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
disp('kohm',Zin/1000,"Zin=");//The answers vary due to round off error
|