diff options
Diffstat (limited to '3636/CH4/EX4.1/Ex4_1.sce')
-rw-r--r-- | 3636/CH4/EX4.1/Ex4_1.sce | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/3636/CH4/EX4.1/Ex4_1.sce b/3636/CH4/EX4.1/Ex4_1.sce new file mode 100644 index 000000000..cd601f62e --- /dev/null +++ b/3636/CH4/EX4.1/Ex4_1.sce @@ -0,0 +1,10 @@ +clc;
+clear;
+del_n0=10^16 //concentration of electrons in cm^-3
+tau_n0=5 //excess carrier lifetime in micro-s
+t=1 //time in micro-s
+
+//Calculation
+del_nt=del_n0*exp(-t/tau_n0)
+
+mprintf("excess electron concentration= %.3g cm^-3",del_nt)
|