diff options
author | priyanka | 2015-06-24 15:03:17 +0530 |
---|---|---|
committer | priyanka | 2015-06-24 15:03:17 +0530 |
commit | b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch) | |
tree | ab291cffc65280e58ac82470ba63fbcca7805165 /3492/CH6/EX6.11/Ex6_11.sce | |
download | Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.gz Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.bz2 Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.zip |
initial commit / add all books
Diffstat (limited to '3492/CH6/EX6.11/Ex6_11.sce')
-rw-r--r-- | 3492/CH6/EX6.11/Ex6_11.sce | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/3492/CH6/EX6.11/Ex6_11.sce b/3492/CH6/EX6.11/Ex6_11.sce new file mode 100644 index 000000000..efa618f69 --- /dev/null +++ b/3492/CH6/EX6.11/Ex6_11.sce @@ -0,0 +1,18 @@ +clc
+//Chapter6
+//Ex_11
+//Given
+Z=50*10^-6 //in m
+L=10*10^-6 //in m
+t_ox=450*10^-10 //in m
+V_GS=8//in V
+V_th=4//in V
+V_DS=20//in V
+lambda=0.01
+ue=750*10^-4 //in m2/V/s
+epsilon_r=3.9
+epsilon_o=8.85*10^-12//F/m2
+epsilon=epsilon_r*epsilon_o
+K=(Z*ue*epsilon)/(2*L*t_ox)
+I_DS=K*(V_GS-V_th)^2*(1+lambda*V_DS)
+disp(I_DS*10^3,"drain current in mA is")
|