summaryrefslogtreecommitdiff
path: root/1511/CH4/EX4.17
diff options
context:
space:
mode:
authorpriyanka2015-06-24 15:03:17 +0530
committerpriyanka2015-06-24 15:03:17 +0530
commitb1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch)
treeab291cffc65280e58ac82470ba63fbcca7805165 /1511/CH4/EX4.17
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 '1511/CH4/EX4.17')
-rwxr-xr-x1511/CH4/EX4.17/ex4_17.sce12
1 files changed, 12 insertions, 0 deletions
diff --git a/1511/CH4/EX4.17/ex4_17.sce b/1511/CH4/EX4.17/ex4_17.sce
new file mode 100755
index 000000000..11d683fe5
--- /dev/null
+++ b/1511/CH4/EX4.17/ex4_17.sce
@@ -0,0 +1,12 @@
+// Example 4.17 page no-231
+clear
+clc
+
+a=3*10^-4 //cm
+nd=10^15 //electrons/cm^3
+e=1.6*10^-19 //C
+eps=12/(36*%pi*10^11)
+vp=e*nd*a^2/(2*eps)
+printf("\n(a)\nVp = %.1f V",vp)
+b=a*(1-(1/2)^(1/2))
+printf("\n\n(b)Vgs=Vp/2\nb = %.2f * 10^-4 cm",b*10^4)