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 --- 3515/CH5/EX5.11/Ex_5_11.sce | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 3515/CH5/EX5.11/Ex_5_11.sce (limited to '3515/CH5/EX5.11') diff --git a/3515/CH5/EX5.11/Ex_5_11.sce b/3515/CH5/EX5.11/Ex_5_11.sce new file mode 100644 index 000000000..3ff58199d --- /dev/null +++ b/3515/CH5/EX5.11/Ex_5_11.sce @@ -0,0 +1,25 @@ +// Exa 5.11 +format('v',5); +clc; +clear; +close; +// Given data +gm=2;// in mA/V +gm=gm*10^-3;// in A/V +r_d= 40;// in kohm +r_d= r_d*10^3;// in ohm +Rs= 3;// in kohm +Rs= Rs*10^3;// in ohm +miu= gm*r_d; +Bita=1; +Av= miu*Rs/(r_d+Rs); +D= 1+Bita*Av; +Avf= Av/D; +// Ri=infinite, so R_if = Ri*D = infinite +Rof= r_d/D;// in ohm +disp(Av,"Value of Av is : ") +disp(D,"Value of D is ") +disp(Avf,"Value of Avf is : ") +disp("Value of R_if is ") +disp("infinite") +disp(Rof,"Value of Rof in ohm is : ") -- cgit