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/CH2/EX2.14/Ex_2_14.sce | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 3515/CH2/EX2.14/Ex_2_14.sce (limited to '3515/CH2/EX2.14') diff --git a/3515/CH2/EX2.14/Ex_2_14.sce b/3515/CH2/EX2.14/Ex_2_14.sce new file mode 100644 index 000000000..09845639e --- /dev/null +++ b/3515/CH2/EX2.14/Ex_2_14.sce @@ -0,0 +1,24 @@ +// Exa 2.14 +format('v',7); +clc; +clear; +close; +// Given data +V_GS1= 1.5;// in V +Vt= 1;// in V +r_DS1= 1;// in kΩ +r_DS1= r_DS1*10^3;// in Ω +r_DS2= 200;// in kΩ +// r_DS1= 1/(KnWbyL*(V_GS1-Vt)) (i) +// r_DS2= 1/(KnWbyL*(V_GS2-Vt)) (i) +// dividing equation (i) by (ii) +V_GS2= (r_DS1/r_DS2)*(V_GS1-Vt)+Vt;// in V +disp(V_GS2,"To Optain rDS= 200, The value of V_GS should be (in volt)") +// For V_GS= 1.5 ;// V +// W2= 2*W1; +// r_DS1/r_DS2= 2 +r_DS2= r_DS1/2;// in Ω +disp(r_DS2,"For V_GS= 1.5 V , the value of r_DS2 in Ω is : ") +// For V_GS= 3.5 V +r_DS2= 200/2;// in Ω +disp(r_DS2,"For V_GS= 3.5 V , the value of r_DS2 in Ω is : ") -- cgit