summaryrefslogtreecommitdiff
path: root/1736/CH6/EX6.13
diff options
context:
space:
mode:
authorpriyanka2015-06-24 15:03:17 +0530
committerpriyanka2015-06-24 15:03:17 +0530
commitb1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch)
treeab291cffc65280e58ac82470ba63fbcca7805165 /1736/CH6/EX6.13
downloadScilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.gz
Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.bz2
Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.zip
initial commit / add all books
Diffstat (limited to '1736/CH6/EX6.13')
-rwxr-xr-x1736/CH6/EX6.13/Ch06Ex13.sce14
1 files changed, 14 insertions, 0 deletions
diff --git a/1736/CH6/EX6.13/Ch06Ex13.sce b/1736/CH6/EX6.13/Ch06Ex13.sce
new file mode 100755
index 000000000..00ecd1a80
--- /dev/null
+++ b/1736/CH6/EX6.13/Ch06Ex13.sce
@@ -0,0 +1,14 @@
+// Scilab Code Ex6.13: Page-203 (2006)
+clc; clear;
+e = 1.6e-019; // Energy equivalent of 1 eV, J/eV
+epsilon = 15.8; // Dielectric constant of Ge
+m = 9.1e-031; // Mass of an electron, kg
+m_e = 0.2*m; // Effective masses of the electron in Ge, kg
+a_Ge = 5.65; // Lattice parameter of Ge, angstrom
+A_d = 0.53*epsilon*(m/m_e); // Radius of donor atom, angstrom
+printf("\nThe radius of the orbits of fifth valence electron of acceptor impurity = %2d angstrom", ceil(A_d));
+printf("\nThis radius is %d times the lattice constant of Ge", ceil(A_d/a_Ge));
+
+// Result
+// The radius of the orbits of fifth valence electron = 42 angstrom
+// This radius is 8 times the lattice constant of Ge