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 /284/CH12/EX12.7 | |
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 '284/CH12/EX12.7')
-rwxr-xr-x | 284/CH12/EX12.7/ex7.sce | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/284/CH12/EX12.7/ex7.sce b/284/CH12/EX12.7/ex7.sce new file mode 100755 index 000000000..abd761d28 --- /dev/null +++ b/284/CH12/EX12.7/ex7.sce @@ -0,0 +1,16 @@ +// Chapter 12_The junction field effect transistor
+//Caption_The MESFET
+//Ex_7//page 570
+e=1.6*10^-19
+eps=8.85*10^-14*13.1
+T=300
+ni=1.8*10^6
+L=1.2*10^-4
+mun=8000
+a=0.70*10^-4
+Idi=75*10^-6
+VGS=0.5
+Vt=0.24
+kn=Idi/(VGS-Vt)^2 //conduction parameter
+W=10^4*kn*2*a*L/(mun*eps)
+printf('The required channel width is %1.2f micrometer',W)
\ No newline at end of file |