blob: fe4395ad01a53af43534171e23cf9a96bce2bace (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
clc;
VEE=10;
RE=10*10**3;
RB=100*10**3;
B=50;
VBE=0.7;
IE=(VEE-VBE)/(RE+(RB/B));
re=25/IE*10**-3;
Ri=B*(RE+re);
disp('Kohm',Ri*10**-3,"Ri=");
Ris=(RB*Ri)/(RB+Ri);
Rs=0;
Ro=re+((RB*Rs)/(RB+Rs))/B;
disp('ohm',Ro,"Ro=");
Av=RE/(re+RE);
disp(Av);
|