summaryrefslogtreecommitdiff
path: root/3856/CH15/EX15.3/Ex15_3.sce
diff options
context:
space:
mode:
Diffstat (limited to '3856/CH15/EX15.3/Ex15_3.sce')
-rw-r--r--3856/CH15/EX15.3/Ex15_3.sce15
1 files changed, 15 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);