summaryrefslogtreecommitdiff
path: root/635/CH5/EX5.4
diff options
context:
space:
mode:
authorpriyanka2015-06-24 15:03:17 +0530
committerpriyanka2015-06-24 15:03:17 +0530
commitb1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch)
treeab291cffc65280e58ac82470ba63fbcca7805165 /635/CH5/EX5.4
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 '635/CH5/EX5.4')
-rwxr-xr-x635/CH5/EX5.4/Ch05Ex4.sci15
1 files changed, 15 insertions, 0 deletions
diff --git a/635/CH5/EX5.4/Ch05Ex4.sci b/635/CH5/EX5.4/Ch05Ex4.sci
new file mode 100755
index 000000000..f184a5c61
--- /dev/null
+++ b/635/CH5/EX5.4/Ch05Ex4.sci
@@ -0,0 +1,15 @@
+// Scilab Code Ex5.4 Number of Schottky imperfections in NaCl crystal Page-160 (2010)
+N = 6.023D23; // Avogadro's number
+k = 8.614D-5; // Boltzmann's constant, eV/K
+T = 27+273; // Absolute room temperature, K
+Ep = 2; // Energy required to remove a pair of Na+ and Cl- ions, electron-volt
+// Now Concentration of imperfections in a crystal is given by
+// n/N = exp(-Ep/(2*k*T)), solving for n
+n = N*exp(-Ep/(2*k*T)); // No. of Schottky imperfections present in NaCl crystal
+printf("\nNo. of Schottky imperfections present in NaCl crystal is : %4.2e", n);
+V = 26.83; // Volume of one mole of the crystal, cm cube
+n = n/V; // Number per mole volume of the crystal, per cm cube
+printf("\nConcentration of Schottky imperfections present in NaCl crystal is : %4.2e per cm cube", n);
+//Result
+// No. of Schottky imperfections present in NaCl crystal is : 9.42e+006
+// Concentration of Schottky imperfections present in NaCl crystal is : 3.51e+005 per cm cube \ No newline at end of file