summaryrefslogtreecommitdiff
path: root/2702/CH2/EX2.17/Ex_2_17.sce
diff options
context:
space:
mode:
Diffstat (limited to '2702/CH2/EX2.17/Ex_2_17.sce')
-rw-r--r--2702/CH2/EX2.17/Ex_2_17.sce19
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