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 /2342/CH7/EX7.3 | |
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 '2342/CH7/EX7.3')
-rwxr-xr-x | 2342/CH7/EX7.3/EX7_3.sce | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/2342/CH7/EX7.3/EX7_3.sce b/2342/CH7/EX7.3/EX7_3.sce new file mode 100755 index 000000000..256dd5100 --- /dev/null +++ b/2342/CH7/EX7.3/EX7_3.sce @@ -0,0 +1,19 @@ +// Exa 7.3
+format('v',6)
+clc;
+clear;
+close;
+// Given data
+Phi_o = 1*10^21;// in m^-2s^-1
+Alpha = 1*10^5;// in m^-1
+W = 25;// in µm
+W =W * 10^-6;// in m
+e = 1.6*10^-19;// in C
+// At the front edge of intrinsic region, the generation rate of EHP
+G_L1 = Alpha*Phi_o;// in m^-3s^-1
+// At the back edge of intrinsic region, the generation rate of EHP
+G_L2 = Alpha*Phi_o*%e^( (-Alpha*W) );// in m^-3s^-1
+// Photo current density,
+J_L = e*Phi_o*(1-%e^(-Alpha*W));// in A/m^2
+J_L = J_L * 10^-1;// in mA/cm^2
+disp(J_L,"Photo current density in mA/cm^2 is");
|