diff options
Diffstat (limited to '506/CH10/EX10.1.a/Example10_1a.sce')
-rwxr-xr-x | 506/CH10/EX10.1.a/Example10_1a.sce | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/506/CH10/EX10.1.a/Example10_1a.sce b/506/CH10/EX10.1.a/Example10_1a.sce new file mode 100755 index 000000000..ae264791d --- /dev/null +++ b/506/CH10/EX10.1.a/Example10_1a.sce @@ -0,0 +1,17 @@ +clear;
+clc;
+
+//Caption: Pinch off V and channel half width of silicon FET
+
+//Given Values
+a=3*(10^-4);//in cm
+Nd=10^15;//in electrons/cm^3
+q=1.6*(10^-19)//in C
+eo=8.85*(10^-12);//Permittivity of free space
+e=12*eo;//Relative Permittivity
+
+Vp=(q*Nd*a*a*10^6*10^-4)/(2*e);//in V
+//a is in cm so 10^-4 is multiplied and Nd is in electrons/cm^3 so 10^6 is multiplied
+disp('V',Vp,'Pinch off Voltage =');
+
+//end
\ No newline at end of file |