summaryrefslogtreecommitdiff
path: root/147/CH8/EX8.20/Example8_20.sce
blob: f155fbe174cbff12619aba75785162c0464f4fe2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
//input resistance hie, reverse voltage ratio hre
//forward current gain hfe, output admittance hoe
close();
clear;
clc;
Rc = 800;//ohm
Rl = Rc;
Ri = 0;
R1 = 1200;//ohm
R2 = 2700;
hre = 0;
hoe = 100*10^(-6);//s
hfe = 90;
hie = 200;
Rb = R1*R2/(R1+R2);
syms ib;
il = -(Rc/hoe)/(Rc/hoe+Rl/hoe+Rl*Rc)*hfe*ib;
Av = dbl(Rl*il/(hie*ib));
//Current gain 'Ai'
Ai = dbl(Rb/(Rb+hie)*il/ib);
mprintf('Voltage gain Av = %0.2f\nCurrent gain Ai = %0.2f',Av,Ai);