diff options
Diffstat (limited to '2444/CH8/EX8.5/ex8_5.sce')
-rwxr-xr-x | 2444/CH8/EX8.5/ex8_5.sce | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/2444/CH8/EX8.5/ex8_5.sce b/2444/CH8/EX8.5/ex8_5.sce new file mode 100755 index 000000000..873223717 --- /dev/null +++ b/2444/CH8/EX8.5/ex8_5.sce @@ -0,0 +1,28 @@ +// Exa 8.5
+clc;
+clear;
+close;
+format('v',6)
+// Given data
+R1 = 10;// in k ohm
+R2 = 5;// in k ohm
+Zb = 1;// in k ohm
+Zin = (R1*R2*Zb)/( (R1*R2)+(R2*Zb)+(Zb*R1) );// in k ohm
+disp(Zin,"The input impedance in k ohm is");
+R_C1 = 2;// in k ohm
+R_E1 = 2;// in k ohm
+R_C2 = 2;// in k ohm
+R_E2 = 2;// in k ohm
+h_oe = 0;// unit less
+Q2 = %inf;// output impedance of transistor
+//Zout= 1/h_oe || R_C2
+Zout = R_C2;// in k ohm
+disp(Zout,"The output impedance in k ohm is");
+h_fe = 100;// unit less
+h_ie = 1;// in k ohm
+R_ac=0.222;// in k ohm
+Av2= -h_fe/h_ie*R_C2;// voltage gain of second stage
+Rac1= 1/(1/R_C1+1/R1+1/R2+1/h_ie);// in k ohm
+Av1= -h_fe/h_ie*R_ac;// voltage gain of first stage
+Av= Av1*Av2;// overall voltage gain
+disp(Av,"The overall voltage gain is : ")
|