diff options
Diffstat (limited to '3636/CH4/EX4.6')
-rw-r--r-- | 3636/CH4/EX4.6/Ex4_6.sce | 14 | ||||
-rw-r--r-- | 3636/CH4/EX4.6/Ex4_6.txt | 4 |
2 files changed, 18 insertions, 0 deletions
diff --git a/3636/CH4/EX4.6/Ex4_6.sce b/3636/CH4/EX4.6/Ex4_6.sce new file mode 100644 index 000000000..986565b3c --- /dev/null +++ b/3636/CH4/EX4.6/Ex4_6.sce @@ -0,0 +1,14 @@ +clc;
+clear;
+l=1.8 //distance between plates in cm
+E=3/2 //in V
+t=0.6*10^-3 //time taken by the pulse in s
+del_t=236*10^-6 //pulse width in s
+
+//Calculation
+vd=l/t //in cm/s
+myu_p=vd/E
+Dp=(del_t*l)^2/(16*t^3)
+
+mprintf("1)\nHole mobility= %i cm^2/Vs\n",myu_p)
+mprintf("2)\nDiffusion coefficient= %2.2f cm^2/s",Dp)
diff --git a/3636/CH4/EX4.6/Ex4_6.txt b/3636/CH4/EX4.6/Ex4_6.txt new file mode 100644 index 000000000..2a9636e6e --- /dev/null +++ b/3636/CH4/EX4.6/Ex4_6.txt @@ -0,0 +1,4 @@ +1)
+Hole mobility= 2000 cm^2/Vs
+2)
+Diffusion coefficient= 52.22 cm^2/s
\ No newline at end of file |