summaryrefslogtreecommitdiff
path: root/226/CH6/EX6.6/example6_sce.sce
diff options
context:
space:
mode:
Diffstat (limited to '226/CH6/EX6.6/example6_sce.sce')
-rwxr-xr-x226/CH6/EX6.6/example6_sce.sce14
1 files changed, 14 insertions, 0 deletions
diff --git a/226/CH6/EX6.6/example6_sce.sce b/226/CH6/EX6.6/example6_sce.sce
new file mode 100755
index 000000000..e6de0c5a6
--- /dev/null
+++ b/226/CH6/EX6.6/example6_sce.sce
@@ -0,0 +1,14 @@
+//chapter 6
+//example 6.6
+//page 258
+printf("\n")
+printf("given")
+hie=2.1*10^3;hfe=75;hoe=1*10^-6;R1=68*10^3;R2=56*10^3;Rc=3.9*10^3;Rl=82*10^3;
+disp(" input impedance Zi=R1||R2||hie")
+Zi=((R1*R2*hie)/(R1+R2+hie))*10^-3;
+printf(" input impedance is %3.2fKohm\n",Zi)
+disp("output impedance is Zo=Rc||(1/hoe)")
+Zo=((Rc*(1/hoe))/(Rc+(1/hoe)))*10^-3;
+printf(" output impadance is %f3.2fKohm\n",Zo)
+Av=-(hfe*((Rc*Rl)/(Rc+Rl)))/hie;
+printf(" voltage gain is %d\n",Av) \ No newline at end of file