summaryrefslogtreecommitdiff
path: root/2492/CH5/EX5.9/ex5_9.sce
diff options
context:
space:
mode:
Diffstat (limited to '2492/CH5/EX5.9/ex5_9.sce')
-rwxr-xr-x2492/CH5/EX5.9/ex5_9.sce19
1 files changed, 19 insertions, 0 deletions
diff --git a/2492/CH5/EX5.9/ex5_9.sce b/2492/CH5/EX5.9/ex5_9.sce
new file mode 100755
index 000000000..adcfd15af
--- /dev/null
+++ b/2492/CH5/EX5.9/ex5_9.sce
@@ -0,0 +1,19 @@
+// Exa 5.9
+format('v',9)
+clc;
+clear;
+close;
+// Given data
+h_fe = 100;
+h_ie = 1;// in k ohm
+h_ie = h_ie * 10^3;// in ohm
+vo_by_I= -100*10^3;// in ohm
+vi_by_I= 1100+101*0.1*10^3;// in ohm
+Av= vo_by_I/vi_by_I;
+Av= round(Av);
+Av= abs(Av);
+disp(Av,"The mid-band voltage gain is");
+//Ri =Vi/Ii;
+Ri= vi_by_I;// in ohm
+Ri= Ri*10^-3;// in k ohm
+disp(Ri,"The input impedance in k ohm is");