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/CH8/EX8.12 | |
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/CH8/EX8.12')
-rwxr-xr-x | 1736/CH8/EX8.12/Ch08Ex12.sce | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/1736/CH8/EX8.12/Ch08Ex12.sce b/1736/CH8/EX8.12/Ch08Ex12.sce new file mode 100755 index 000000000..96a1528a4 --- /dev/null +++ b/1736/CH8/EX8.12/Ch08Ex12.sce @@ -0,0 +1,11 @@ +// Scilab code Ex8.12 Page:264 (2006)
+clc; clear;
+mu = 9.27e-024; // Bohr's magneton, J/T
+N_up = 5; // Number of electrons with spin up as per Hunds Rule
+N_down = 1; // Number of electrons with spin down as per Hunds Rule
+M = mu*(N_up-N_down); // Net magnetic moment associated with six electrons in the 3d shell, J/T
+
+printf("\nThe magnetic moment of 3d electrons of Fe using Hunds rule = %d Bohr magnetons", M/mu);
+
+// Result
+// The magnetic moment of 3d electrons of Fe using Hunds rule = 4 Bohr magnetons
|