diff options
Diffstat (limited to '2792/CH11/EX11.14/Ex11_14.sce')
-rwxr-xr-x | 2792/CH11/EX11.14/Ex11_14.sce | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/2792/CH11/EX11.14/Ex11_14.sce b/2792/CH11/EX11.14/Ex11_14.sce new file mode 100755 index 000000000..79ce7e4d3 --- /dev/null +++ b/2792/CH11/EX11.14/Ex11_14.sce @@ -0,0 +1,15 @@ +clc
+n = 1.1*10^18
+disp("n = "+string(n)+"cm^-3") //initializing value of number of electron or hole
+nth=1.32*10^18
+disp("nth = "+string(nth)+"cm^-3") //initializing value of theshold density
+e = 1.6*10^-19
+disp("e= "+string(e)+"C")//initializing value of charge of electron
+d = 2*10^-4
+disp("d= "+string(d)+"cm")//initializing value of active layer thickness
+Tr = 2.4*10^-9
+disp("Tr= "+string(Tr)+"J")//initializing value of radiatve recombination time
+Jth = (e*nth*d)/Tr
+disp("The current density is Jth = (e*nth*d)/Tr= "+string(Jth)+"A/cm^2")//calculation
+
+
|