blob: 067c17d40738848f6f6ff754a3a9b9d09c80f007 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
clear;
clc;
//Example 12.15
//Determine the loop gain fig12.45(a)
hFE=100;
Vbe=0.7;
Icq=0.492;
r=5.28;
gm=18.9;
Rs=10;
R1=51;
R2=5.5;
Re=0.500;
Rc=10;
Rf=82;
x=r*R2/(r+R2);
y=R1*x/(x+R1);
t=Rs*y/(y+Rs);
Req=t;
printf('\nequivalent resistance=%.2f KOhm\n',t)
T=gm*Rc*Req/(Rc+Rf+Req);
printf('\nthe loop gain=%.2f\n',T)
|