From 7f60ea012dd2524dae921a2a35adbf7ef21f2bb6 Mon Sep 17 00:00:00 2001 From: prashantsinalkar Date: Tue, 10 Oct 2017 12:27:19 +0530 Subject: initial commit / add all books --- 3754/CH25/EX25.6/25_6.sce | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 3754/CH25/EX25.6/25_6.sce (limited to '3754/CH25/EX25.6/25_6.sce') diff --git a/3754/CH25/EX25.6/25_6.sce b/3754/CH25/EX25.6/25_6.sce new file mode 100644 index 000000000..887f3fc6e --- /dev/null +++ b/3754/CH25/EX25.6/25_6.sce @@ -0,0 +1,22 @@ +clear// + +//Variables + +hib = 28.0 //hib (in ohm) +hfb = -0.98 //hfb +hrb = 5.0 * 10**-4 //hrb +hob = 0.34 * 10**-6 //hoh (in Siemen) +rL = 1.2 * 10**3 //a.c. load resistance (in ohm) +RS = 0.0 //Source resistance (in ohm) + +//Calculation + +Ai = -(hfb/(1 + hob * rL)) //Current gain +Ri = hib + hrb * Ai * rL //Input resistance (in ohm) +dh = hib * hob - hrb * hfb //change in h +Ro = (RS + hib)/(RS*hib + dh)//Output resistance (in ohm) +Av = Ai * rL / Ri //Voltage gain + +//Result + +printf("\n The value of input resistance is %0.1f ohm.\nThe value of output resistance is %0.0f kilo-ohm.\nThe value of current gain is %0.2f .\nThe value of voltage gain is %0.0f .",Ri,Ro*10**-3,Ai,Av) -- cgit