summaryrefslogtreecommitdiff
path: root/284/CH12/EX12.8/ex8.sce
diff options
context:
space:
mode:
authorprashantsinalkar2017-10-10 12:38:01 +0530
committerprashantsinalkar2017-10-10 12:38:01 +0530
commitf35ea80659b6a49d1bb2ce1d7d002583f3f40947 (patch)
treeeb72842d800ac1233e9d890e020eac5fd41b0b1b /284/CH12/EX12.8/ex8.sce
parent7f60ea012dd2524dae921a2a35adbf7ef21f2bb6 (diff)
downloadScilab-TBC-Uploads-f35ea80659b6a49d1bb2ce1d7d002583f3f40947.tar.gz
Scilab-TBC-Uploads-f35ea80659b6a49d1bb2ce1d7d002583f3f40947.tar.bz2
Scilab-TBC-Uploads-f35ea80659b6a49d1bb2ce1d7d002583f3f40947.zip
updated the code
Diffstat (limited to '284/CH12/EX12.8/ex8.sce')
-rwxr-xr-x284/CH12/EX12.8/ex8.sce38
1 files changed, 19 insertions, 19 deletions
diff --git a/284/CH12/EX12.8/ex8.sce b/284/CH12/EX12.8/ex8.sce
index c313f06da..7885266d1 100755
--- a/284/CH12/EX12.8/ex8.sce
+++ b/284/CH12/EX12.8/ex8.sce
@@ -1,19 +1,19 @@
-// Chapter 12_The junction field effect transistor
-//Caption_The MESFET-Channel length modulation
-//Ex_8//page 573
-Nd=3*10^15
-eps=8.85*10^-14*11.7
-L=10
-ID1=4
-VDSsat=0 //assume
-VDS1=VDSsat+2
-VDS2=VDSsat+2.5
-
-delL2=10^4*(2*eps*(VDS2-VDSsat)/(e*Nd))^0.5 //change in length
-delL1=10^4*(2*eps*(VDS1-VDSsat)/(e*Nd))^0.5 //change in length
-//drain currents are
-ID22=ID1*(L/(L-0.5*delL2))
-ID11=ID1*(L/(L-0.5*delL1))
-rds=(VDS2-VDS1)/(ID22-ID11)
-printf('The small signal output resistance at the drain terminal due to channel length modulation effects is %1.1f kohm',rds)
-
+// Chapter 12_The junction field effect transistor
+//Caption_The MESFET-Channel length modulation
+//Ex_8//page 573
+Nd=3*10^15
+eps=8.85*10^-14*11.7
+L=10;
+e = 1.6*10^-19;
+ID1=4
+VDSsat=0 //assume
+VDS1=VDSsat+2
+VDS2=VDSsat+2.5
+
+delL2=10^4*(2*eps*(VDS2-VDSsat)/(e*Nd))^0.5 //change in length
+delL1=10^4*(2*eps*(VDS1-VDSsat)/(e*Nd))^0.5 //change in length
+//drain currents are
+ID22=ID1*(L/(L-0.5*delL2))
+ID11=ID1*(L/(L-0.5*delL1))
+rds=(VDS2-VDS1)/(ID22-ID11)
+printf('The small signal output resistance at the drain terminal due to channel length modulation effects is %1.1f kohm',rds) \ No newline at end of file