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 /2702/CH2/EX2.17/Ex_2_17.sce | |
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 '2702/CH2/EX2.17/Ex_2_17.sce')
-rw-r--r-- | 2702/CH2/EX2.17/Ex_2_17.sce | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/2702/CH2/EX2.17/Ex_2_17.sce b/2702/CH2/EX2.17/Ex_2_17.sce new file mode 100644 index 000000000..6052e225f --- /dev/null +++ b/2702/CH2/EX2.17/Ex_2_17.sce @@ -0,0 +1,19 @@ +// Exa 2.17
+clc;
+clear;
+close;
+// Given data
+V_D= 3.5;// in V
+I_D= 115*10^-6;//in A
+upCox= 60;// in µA/V^2
+upCox= upCox*10^-6;// in A/V^2
+L= 0.8;//in µm
+V_GS= -1.5;// in V
+Vt= 0.7;// in V
+R= V_D/I_D;// in Ω
+disp(R*10^-3,"The value required for R in kΩ is : ")
+// Formul I_D= 1/2*upCox*W/L*(V_GS-Vt)^2
+W= 2*I_D*L/(upCox*(V_GS-Vt)^2)
+disp(W,"The value required for W in µm is : ")
+
+// Note: Calculation of evaluating the value of W in the book is wrong , so the Answer of the book is wrong
|