diff options
author | prashantsinalkar | 2017-10-10 12:38:01 +0530 |
---|---|---|
committer | prashantsinalkar | 2017-10-10 12:38:01 +0530 |
commit | f35ea80659b6a49d1bb2ce1d7d002583f3f40947 (patch) | |
tree | eb72842d800ac1233e9d890e020eac5fd41b0b1b /3411/CH15/EX7.3.u2/Ex7_3_u2.sce | |
parent | 7f60ea012dd2524dae921a2a35adbf7ef21f2bb6 (diff) | |
download | Scilab-TBC-Uploads-f35ea80659b6a49d1bb2ce1d7d002583f3f40947.tar.gz Scilab-TBC-Uploads-f35ea80659b6a49d1bb2ce1d7d002583f3f40947.tar.bz2 Scilab-TBC-Uploads-f35ea80659b6a49d1bb2ce1d7d002583f3f40947.zip |
updated the code
Diffstat (limited to '3411/CH15/EX7.3.u2/Ex7_3_u2.sce')
-rw-r--r-- | 3411/CH15/EX7.3.u2/Ex7_3_u2.sce | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/3411/CH15/EX7.3.u2/Ex7_3_u2.sce b/3411/CH15/EX7.3.u2/Ex7_3_u2.sce index 13d6b26dd..f6ef6ccc5 100644 --- a/3411/CH15/EX7.3.u2/Ex7_3_u2.sce +++ b/3411/CH15/EX7.3.u2/Ex7_3_u2.sce @@ -3,9 +3,9 @@ clc(); clear;
//To find the drift velocity and diffusivity
vp=1/(100*10^-6) //units in cm/sec
-eapp=50
+eapp=50 //units in Volt cm^-1
up=vp/eapp //units in cm^-2 V^-1 s^-1
-k=0.0259
-dp=(k*up) //units in cm^2/s
+k=0.0259 //units in eV
+dp=(k*up) //units in cm^2 s^-1
printf("The drift velocity is Vp=%d cm/sec\n",vp)
printf("The diffusivity of minority carriers is Dp=%.2f cm^2/sec",dp)
|