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 /1736/CH5/EX5.10 | |
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 '1736/CH5/EX5.10')
-rwxr-xr-x | 1736/CH5/EX5.10/Ch05Ex10.sce | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/1736/CH5/EX5.10/Ch05Ex10.sce b/1736/CH5/EX5.10/Ch05Ex10.sce new file mode 100755 index 000000000..1db4e9115 --- /dev/null +++ b/1736/CH5/EX5.10/Ch05Ex10.sce @@ -0,0 +1,12 @@ +// Scilab Code Ex5.10: Page-181 (2006)
+clc; clear;
+N_Ef = 1.235; // Density of states at fermi energy, electrons/atom-eV
+N = 6.023e+23; // Avogadro's number
+k = 1.38e-23; // Boltzmann constant, J/mol/K
+e = 1.6e-019; // Charge on an electron, C
+gama = %pi^2*k^2/3*(N_Ef*N/e); // Electronic specific heat coefficient, J/g-atom-kelvin square
+
+printf("\nThe electronic specific heat coefficient of superconductor = %5.3f mJ/g-atom-kelvin square", gama/1e-03);
+
+// Result
+// The electronic specific heat coefficient of superconductor = 2.913 mJ/g-atom-kelvin square
|