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 /2672/CH5/EX5.12/Ex5_12.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 '2672/CH5/EX5.12/Ex5_12.sce')
-rwxr-xr-x | 2672/CH5/EX5.12/Ex5_12.sce | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/2672/CH5/EX5.12/Ex5_12.sce b/2672/CH5/EX5.12/Ex5_12.sce new file mode 100755 index 000000000..19f107f20 --- /dev/null +++ b/2672/CH5/EX5.12/Ex5_12.sce @@ -0,0 +1,21 @@ +//Example 5_12
+clc;
+clear;
+close;
+format('v',6);
+//given data :
+A=5;//mm^2
+A=A*10^-2;//cm^2
+Ln=0.01;//cm
+Lp=0.01;//cm
+sigma_p=0.01;//(ohm-cm)^-1
+sigma_n=0.01;//(ohm-cm)^-1
+mu_p=500;//cm^2/V-s//For Ge
+mu_n=1300;//cm^2/V-s//For Si
+e=1.6*10^-19;//C/electron
+VT=0.026;///eV//at T=27 degree C
+b=mu_n/mu_p;//unitless
+ni=1.5*10^10;//m^-3
+sigma_i=(mu_n+mu_p)*ni*e;//(ohm-m)^-1
+I0=A*VT*b*sigma_i^2/(1+b)^2*(1/Lp/sigma_p+1/Ln/sigma_n)*10^12;//pA
+disp(I0,"Reverse saturation current(pA)");
|