diff options
author | prashantsinalkar | 2017-10-10 12:27:19 +0530 |
---|---|---|
committer | prashantsinalkar | 2017-10-10 12:27:19 +0530 |
commit | 7f60ea012dd2524dae921a2a35adbf7ef21f2bb6 (patch) | |
tree | dbb9e3ddb5fc829e7c5c7e6be99b2c4ba356132c /3515/CH2/EX2.14 | |
parent | b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (diff) | |
download | Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.tar.gz Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.tar.bz2 Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.zip |
initial commit / add all books
Diffstat (limited to '3515/CH2/EX2.14')
-rw-r--r-- | 3515/CH2/EX2.14/Ex_2_14.sce | 24 |
1 files changed, 24 insertions, 0 deletions
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 : ")
|