diff options
Diffstat (limited to '3515/CH2/EX2.17/Ex_2_17.sce')
-rw-r--r-- | 3515/CH2/EX2.17/Ex_2_17.sce | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/3515/CH2/EX2.17/Ex_2_17.sce b/3515/CH2/EX2.17/Ex_2_17.sce new file mode 100644 index 000000000..2e11262be --- /dev/null +++ b/3515/CH2/EX2.17/Ex_2_17.sce @@ -0,0 +1,21 @@ +// Exa 2.17
+format('v',5);
+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 Ω
+R= R*10^-3;// in kΩ
+disp(R,"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
|