summaryrefslogtreecommitdiff
path: root/991/CH14/EX14.5/Example14_5.sce
blob: 17d41180653e4be97c7fcc360b3beb36dd61fc2f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//Example 14.5
clc
format(6)
A=500
Ri=3*10^3
Ro=20*10^3
beta=0.01
format(6)
Af=A/(1+(A*beta))
disp(Af,"Voltage gain,      Af = A / (1+A*beta) =")
Rif=(1+(A*beta))*Ri
x1=Rif*10^-3
disp(x1,"Input resistance,  Rif(k-ohm) = (1+(A*beta))*Ri =")
Rof=Ro/(1+(A*beta))
x2=Rof*10^-3
format(5)
disp(x2,"Output resistance, Rof(k-ohm) = Ro / (1+A*beta) =")