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 /3411/CH15/EX7.2.u2 | |
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 '3411/CH15/EX7.2.u2')
-rw-r--r-- | 3411/CH15/EX7.2.u2/Ex7_2_u2.sce | 10 | ||||
-rw-r--r-- | 3411/CH15/EX7.2.u2/Ex7_2_u2.txt | 1 |
2 files changed, 11 insertions, 0 deletions
diff --git a/3411/CH15/EX7.2.u2/Ex7_2_u2.sce b/3411/CH15/EX7.2.u2/Ex7_2_u2.sce new file mode 100644 index 000000000..2542b76ee --- /dev/null +++ b/3411/CH15/EX7.2.u2/Ex7_2_u2.sce @@ -0,0 +1,10 @@ +//Example 7_2_u2
+clc();
+clear;
+//To calculate the diffusion current density
+Dn=22.5
+e=1.6*10^-19 //units in eV
+dn=(1*10^18)-(7*10^17)
+dx=0.1
+Jndiff=e*Dn*(dn/dx) //units in A/cm^2
+printf("The diffusion current density is Jn,diff=%.1f A/cm^2",Jndiff)
diff --git a/3411/CH15/EX7.2.u2/Ex7_2_u2.txt b/3411/CH15/EX7.2.u2/Ex7_2_u2.txt new file mode 100644 index 000000000..1faf31805 --- /dev/null +++ b/3411/CH15/EX7.2.u2/Ex7_2_u2.txt @@ -0,0 +1 @@ +The diffusion current density is Jn,diff=10.8 A/cm^2
\ No newline at end of file |