From b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b Mon Sep 17 00:00:00 2001 From: priyanka Date: Wed, 24 Jun 2015 15:03:17 +0530 Subject: initial commit / add all books --- 2330/CH10/EX10.5/ex10_5.sce | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100755 2330/CH10/EX10.5/ex10_5.sce (limited to '2330/CH10/EX10.5/ex10_5.sce') diff --git a/2330/CH10/EX10.5/ex10_5.sce b/2330/CH10/EX10.5/ex10_5.sce new file mode 100755 index 000000000..6f11af733 --- /dev/null +++ b/2330/CH10/EX10.5/ex10_5.sce @@ -0,0 +1,22 @@ +// Example 10.5 +format('v',6) +clc; +clear; +close; +// given data +V_E= 1.43;// in V +R_E= 100;// in Ω +R_L= 100;// in Ω +R_C= 1*10^3;// in Ω +bita= 200; +Vt= 25*10^-3;// in V +I_E= V_E/R_E;// in A +I_CQ= I_E;// in A +Zin= bita*R_L;// in Ω +r_desh_e= Vt/I_CQ;// in Ω +// The voltage gain of the driver stage +A= (R_C*Zin/(R_C+Zin))/(R_E+r_desh_e); +disp(A,"The voltage gain of the driver stage is : ") +// On ignoring Zin and r_desh_e, +A= R_C/R_E; +disp(A,"On ignoring the value of Zin and r''e, the voltage gain is : ") -- cgit