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 /1511/CH4/EX4.17/ex4_17.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 '1511/CH4/EX4.17/ex4_17.sce')
-rwxr-xr-x | 1511/CH4/EX4.17/ex4_17.sce | 12 |
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)
|