diff options
Diffstat (limited to '3717/CH9/EX9.10/Ex9_10.sce')
-rw-r--r-- | 3717/CH9/EX9.10/Ex9_10.sce | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/3717/CH9/EX9.10/Ex9_10.sce b/3717/CH9/EX9.10/Ex9_10.sce new file mode 100644 index 000000000..152878b01 --- /dev/null +++ b/3717/CH9/EX9.10/Ex9_10.sce @@ -0,0 +1,11 @@ +// Ex9_10 Page:198 (2014)
+clc;clear;
+h = 6.626e-034; // Planck's constant, Js
+B0 = 1.3; // External magnetic field, T
+mu_B = 9.27e-024; // Bohr's magneton, J/T
+nu = 35e+009; // Operating frequency, Hz
+g = h*nu/(mu_B*B0); // Electron g-factor
+printf("\nThe electron g-factor for the unpaired electron = %5.3f", g);
+
+// Result
+// The electron g-factor for the unpaired electron = 1.924
\ No newline at end of file |