diff options
author | priyanka | 2015-06-24 15:03:17 +0530 |
---|---|---|
committer | priyanka | 2015-06-24 15:03:17 +0530 |
commit | b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch) | |
tree | ab291cffc65280e58ac82470ba63fbcca7805165 /2129/CH1/EX1.21.3/ex1_21_3.sce | |
download | Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.gz Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.bz2 Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.zip |
initial commit / add all books
Diffstat (limited to '2129/CH1/EX1.21.3/ex1_21_3.sce')
-rwxr-xr-x | 2129/CH1/EX1.21.3/ex1_21_3.sce | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/2129/CH1/EX1.21.3/ex1_21_3.sce b/2129/CH1/EX1.21.3/ex1_21_3.sce new file mode 100755 index 000000000..316f28b81 --- /dev/null +++ b/2129/CH1/EX1.21.3/ex1_21_3.sce @@ -0,0 +1,14 @@ +//Exa 1.21.3
+clc;
+clear;
+close;
+//Given data
+AvagadroNumber = 6.02 * 10^23;// in atoms/gm.mole
+at_Ge = 72.6;// atom weight of Ge
+e = 1.6 * 10^-19;// in C
+D_Ge = 5.32;// density of Ge in gm/c.c
+Mu = 3800;// in cm^2/v.s.
+C_Ge = (AvagadroNumber/at_Ge) * D_Ge;// concentration of Ge atoms in per cm^3
+n_d = C_Ge/10^8;// in per cc
+Sigma = n_d * Mu * e;// in mho/cm
+disp(Sigma,"The conductivity in mho/cm is");
|