summaryrefslogtreecommitdiff
path: root/2702/CH2/EX2.4
diff options
context:
space:
mode:
authorprashantsinalkar2017-10-10 12:27:19 +0530
committerprashantsinalkar2017-10-10 12:27:19 +0530
commit7f60ea012dd2524dae921a2a35adbf7ef21f2bb6 (patch)
treedbb9e3ddb5fc829e7c5c7e6be99b2c4ba356132c /2702/CH2/EX2.4
parentb1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (diff)
downloadScilab-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.4')
-rw-r--r--2702/CH2/EX2.4/Ex_2_4.sce27
1 files changed, 27 insertions, 0 deletions
diff --git a/2702/CH2/EX2.4/Ex_2_4.sce b/2702/CH2/EX2.4/Ex_2_4.sce
new file mode 100644
index 000000000..ffbd80b9c
--- /dev/null
+++ b/2702/CH2/EX2.4/Ex_2_4.sce
@@ -0,0 +1,27 @@
+// Exa 2.4
+clc;
+clear;
+close;
+// Given data
+I_D= 0.4;// in mA
+I_D=I_D*10^-3;// in A
+Vt= 0.7;// in V
+V_SS= -2.5;// in V
+V_DD= 2.5;// in V
+unCox= 100;// in µA/V^2
+unCox= unCox*10^-6;// in A/V^2
+W= 32;// in m
+L= 1;// in m
+// V_GS-Vt= V_OV
+// I_D= unCox*W/(2*L)*(V_OV)^2
+V_OV= sqrt(I_D/(unCox*W/(2*L)));// in V
+V_GS= V_OV+Vt;// in V
+disp(V_GS,"The value of V_GS in volt is : ")
+V_G= 0;
+// Formula V_GS= V_G-V_S
+V_S= V_G-V_GS;// in V
+R_S= (V_S-V_SS)/I_D// in Ω
+disp(R_S*10^-3,"The value of R_S in kΩ is : ")
+V_D= 0.5;// in V
+R_D= (V_DD-V_D)/I_D;//in Ω
+disp(R_D*10^-3,"The value of R_D in kΩ is : ")