summaryrefslogtreecommitdiff
path: root/2198/CH5/EX5.6.1
diff options
context:
space:
mode:
authorpriyanka2015-06-24 15:03:17 +0530
committerpriyanka2015-06-24 15:03:17 +0530
commitb1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch)
treeab291cffc65280e58ac82470ba63fbcca7805165 /2198/CH5/EX5.6.1
downloadScilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.gz
Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.bz2
Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.zip
initial commit / add all books
Diffstat (limited to '2198/CH5/EX5.6.1')
-rwxr-xr-x2198/CH5/EX5.6.1/Ex5_6_1.sce17
1 files changed, 17 insertions, 0 deletions
diff --git a/2198/CH5/EX5.6.1/Ex5_6_1.sce b/2198/CH5/EX5.6.1/Ex5_6_1.sce
new file mode 100755
index 000000000..9b9fe1cb9
--- /dev/null
+++ b/2198/CH5/EX5.6.1/Ex5_6_1.sce
@@ -0,0 +1,17 @@
+//Ex 5.6.1
+clc;clear;close;
+format('v',6);
+
+//Given :
+VTN=0.7;//V
+W=45;//micro m
+L=4;//micro m
+mu_n=700;//cm^2/V-s
+t_ox=450;//Angstrum
+epsilon_ox=3.9*8.85*10^-14;//F/cm
+VGS=2*VTN;//V
+Kn=(W*10^-4)*mu_n*epsilon_ox/(2*(L*10^-4)*(t_ox*10^-8));//A/V^2
+Kn=Kn*10^3;//mA/V^2
+ID=Kn*(VGS-VTN)^2;//A
+disp(ID,"Current in mA : ");
+//Answer is wrong in the book. Calculation mistake whle calculating value for Kn.