summaryrefslogtreecommitdiff
path: root/3856/CH15/EX15.3
diff options
context:
space:
mode:
Diffstat (limited to '3856/CH15/EX15.3')
-rw-r--r--3856/CH15/EX15.3/Ex15_3.sce15
-rw-r--r--3856/CH15/EX15.3/Ex15_3.txt1
2 files changed, 16 insertions, 0 deletions
diff --git a/3856/CH15/EX15.3/Ex15_3.sce b/3856/CH15/EX15.3/Ex15_3.sce
new file mode 100644
index 000000000..85ab42596
--- /dev/null
+++ b/3856/CH15/EX15.3/Ex15_3.sce
@@ -0,0 +1,15 @@
+//Calculate the Crystal Field Stabilization Energy (CFSE)
+
+//Example 15.3
+
+clc;
+
+clear;
+
+neg=0; //Number of electron in eg orbital
+
+nt2g=5; //Number of Electron in t2g orbital
+
+CFSE=neg*0.6-nt2g*0.4; //Crystal Field Stabilization Energy (CFSE) in delta (crystal-field spliting)
+
+printf("Crystal Field Stabilization Energy = %.1f delta",CFSE);
diff --git a/3856/CH15/EX15.3/Ex15_3.txt b/3856/CH15/EX15.3/Ex15_3.txt
new file mode 100644
index 000000000..f2ec64eb5
--- /dev/null
+++ b/3856/CH15/EX15.3/Ex15_3.txt
@@ -0,0 +1 @@
+ Crystal Field Stabilization Energy = -2.0 delta \ No newline at end of file