summaryrefslogtreecommitdiff
path: root/1223/CH12/EX12.16/Ex12_16.sce
diff options
context:
space:
mode:
Diffstat (limited to '1223/CH12/EX12.16/Ex12_16.sce')
-rwxr-xr-x1223/CH12/EX12.16/Ex12_16.sce22
1 files changed, 22 insertions, 0 deletions
diff --git a/1223/CH12/EX12.16/Ex12_16.sce b/1223/CH12/EX12.16/Ex12_16.sce
new file mode 100755
index 000000000..067c17d40
--- /dev/null
+++ b/1223/CH12/EX12.16/Ex12_16.sce
@@ -0,0 +1,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)