summaryrefslogtreecommitdiff
path: root/1514/CH11/EX11.11
diff options
context:
space:
mode:
authorpriyanka2015-06-24 15:03:17 +0530
committerpriyanka2015-06-24 15:03:17 +0530
commitb1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch)
treeab291cffc65280e58ac82470ba63fbcca7805165 /1514/CH11/EX11.11
downloadScilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.gz
Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.bz2
Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.zip
initial commit / add all books
Diffstat (limited to '1514/CH11/EX11.11')
-rwxr-xr-x1514/CH11/EX11.11/11_11.sce27
1 files changed, 27 insertions, 0 deletions
diff --git a/1514/CH11/EX11.11/11_11.sce b/1514/CH11/EX11.11/11_11.sce
new file mode 100755
index 000000000..5285218bf
--- /dev/null
+++ b/1514/CH11/EX11.11/11_11.sce
@@ -0,0 +1,27 @@
+//chapter 11
+//example 11.11
+//page 334
+clear all;
+clc ;
+//given
+Rl=0.100;//load resistance in kohm
+R1=68;R2=27;R3=5.6;R5=3.3;//kohm
+hie=0.5;hic=hie;
+hfe=50;
+hfe1=50;
+hfc=1+hfe;
+Zi=round(1000/(1/R1+1/R2+1/hie));
+printf("\ninput impedance(Zi)=%d ohm",Zi)
+
+Zo1=((hic+R3)/hfc);
+Zo=1000*(Zo1*R5)/(Zo1+R5);
+printf("\noutput impedance(Zo)=%d ohm",Zo);
+
+Zi2=((R5*Rl)/(R5+Rl))*hfc+hic;
+
+Av1=-(hfe1*((R3*Zi2)/(R3+Zi2)))/hie;
+Av2=1;
+Av=Av1*Av2;
+printf("\noverall voltage gain(Av)=%d",Av);
+
+