summaryrefslogtreecommitdiff
path: root/2912/CH9/EX9.12/Ex9_12.sce
diff options
context:
space:
mode:
Diffstat (limited to '2912/CH9/EX9.12/Ex9_12.sce')
-rwxr-xr-x2912/CH9/EX9.12/Ex9_12.sce14
1 files changed, 14 insertions, 0 deletions
diff --git a/2912/CH9/EX9.12/Ex9_12.sce b/2912/CH9/EX9.12/Ex9_12.sce
new file mode 100755
index 000000000..c24919cb2
--- /dev/null
+++ b/2912/CH9/EX9.12/Ex9_12.sce
@@ -0,0 +1,14 @@
+// chapter 9
+// example 9.12
+// Find the diffusion co-efficient of electron in silicon
+// page 277
+clear;
+clc;
+//given
+ue=0.19; // in m^2/V-s (mobility of electron)
+T=300; // in K (temperature)
+k=1.38E-23; // in J/K (Boltzmann’s constant)
+e=1.6E-19; // in C(charge of electron)
+//calculate
+Dn=ue*k*T/e; // calculation of diffusion co-efficient
+printf('\nThe diffusion co-efficient of electron in silicon is \tDn=%1.1E m^2/s',Dn);