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 --- 3515/CH5/EX5.12/Ex5_12.sce | 33 +++++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100644 3515/CH5/EX5.12/Ex5_12.sce (limited to '3515/CH5/EX5.12') diff --git a/3515/CH5/EX5.12/Ex5_12.sce b/3515/CH5/EX5.12/Ex5_12.sce new file mode 100644 index 000000000..87af61c7a --- /dev/null +++ b/3515/CH5/EX5.12/Ex5_12.sce @@ -0,0 +1,33 @@ +// Exa 5.12 +format('v',7); +clc; +clear; +close; +// Given data +gm=75;// in A/V +Rs= 1;// in kohm +Rs= Rs*10^3;// in ohm +R_E= 1;// in kohm +R_E= R_E*10^3;// in ohm +rpi= 1;// in kohm +rpi= rpi*10^3;// in ohm +hie=rpi; + +Io= -gm; +Vi= Rs+R_E+rpi; +Gm= Io/Vi; +disp(Gm,"Value of Gm is : ") +Bita=-R_E; +disp(Bita,"Value of Bita is : ") +D= 1+Bita*Gm; +disp(D,"Value of D is : ") +Gmf= Gm/D; +disp(Gmf,"Value of Gmf is : ") +Ri= Rs+R_E+hie;// in ohm +Rif= Ri*D;// in ohm +Rif=Rif*10^-3;// in kohm +disp(Rif,"Value of Rif in kohm is : ") +// Ro=infinite, so R_of = Ro*D = infinite +disp("Value of R_of is ") +disp("infinite") + -- cgit